Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | import categoriesStatistics from "./categoriesStatistics.js"
import getYearStatisticsDocument from "./getYearStatisticsDocument.js"
import monthlyCategoriesStatistics from "./monthlyCategoriesStatistics.js"
import monthlySalesStatistics from "./monthlySalesStatistics.js"
import salesGrowth from "./salesGrowth.js"
import mostPopularSeries from "./mostPopularSeries.js"
import ordersStatistics from "./ordersStatistics.js"
import productsStatistics from "./productsStatistics.js"
import topProducts from "./topProducts.js"
import topCustomers from "./topCustomers.js"
import getLatestOrders from "../orders-controllers/getLatestOrders.js"
import usersOverview from "../users-controllers/usersOverview.js"
import usersStatistics from "./usersStatistics.js"
import registerOrderStatistics from "./registerOrderStatistics.js"
import registerCategoriesStatistics from "./registerCategoriesStatistics.js"
import registerProductsStatistics from "./registerProductsStatistics.js"
import setMonthTarget from "./setMonthTarget.js"
class StatisticsController {
constructor() { }
}
export default Object.assign(StatisticsController.prototype, {
categoriesStatistics,
getYearStatisticsDocument,
monthlyCategoriesStatistics,
monthlySalesStatistics,
salesGrowth,
mostPopularSeries,
ordersStatistics,
productsStatistics,
topProducts,
topCustomers,
getLatestOrders,
usersOverview,
usersStatistics,
registerOrderStatistics,
registerCategoriesStatistics,
registerProductsStatistics,
setMonthTarget
})
|