|
@@ -7,28 +7,36 @@ module.exports=function(app) { |
|
@@ -7,28 +7,36 @@ module.exports=function(app) { |
7
|
|
7
|
|
8
|
app.vue("/report/businessOverview", "report.BusinessOverview");
|
8
|
app.vue("/report/businessOverview", "report.BusinessOverview");
|
9
|
|
9
|
|
|
|
10
|
+ //获取店铺的经营指标:一个自然日内有效订单商品件数、有效订单商品金额
|
10
|
app.post("/report/getShopBusinessOverview", "report_getShopBusinessOverview");
|
11
|
app.post("/report/getShopBusinessOverview", "report_getShopBusinessOverview");
|
11
|
|
12
|
|
|
|
13
|
+ //获取店铺的品牌排名,当前等级、排名、上升名词
|
12
|
app.post("/report/getShopBrandRank", "report_getShopBrandRank");
|
14
|
app.post("/report/getShopBrandRank", "report_getShopBrandRank");
|
13
|
|
15
|
|
|
|
16
|
+ //对账结算
|
|
|
17
|
+ app.post("/report/getOrdersGoodsAccountRptList", "report_getOrdersGoodsAccountRptList");
|
14
|
|
18
|
|
15
|
/*************************************商品销售报表*************************************/
|
19
|
/*************************************商品销售报表*************************************/
|
16
|
|
20
|
|
17
|
app.vue("/report/businessSale", "report.BusinessSale");
|
21
|
app.vue("/report/businessSale", "report.BusinessSale");
|
18
|
|
22
|
|
|
|
23
|
+ app.post("/report/getOrdersGoodsRptList", "report_getOrdersGoodsRptList"); //销售统计
|
|
|
24
|
+
|
|
|
25
|
+ app.post("/report/getReturnGoodsRptList", "report_getReturnGoodsRptList"); //退货统计
|
|
|
26
|
+
|
19
|
/*************************************出入库报表*************************************/
|
27
|
/*************************************出入库报表*************************************/
|
20
|
|
28
|
|
21
|
app.vue("/report/importExportStock", "report.ImportExportStock");
|
29
|
app.vue("/report/importExportStock", "report.ImportExportStock");
|
22
|
|
30
|
|
23
|
- app.post("/report/getStorageInRptList", "report_getStorageInRptList");
|
31
|
+ app.post("/report/getStorageInRptList", "report_getStorageInRptList"); //发货入库统计
|
24
|
|
32
|
|
25
|
- app.post("/report/getStorageOutRptList", "report_getStorageOutRptList");
|
33
|
+ app.post("/report/getStorageOutRptList", "report_getStorageOutRptList"); //请退出库统计
|
26
|
|
34
|
|
27
|
/*************************************库存报表*************************************/
|
35
|
/*************************************库存报表*************************************/
|
28
|
|
36
|
|
29
|
app.vue("/report/stock", "report.Stock");
|
37
|
app.vue("/report/stock", "report.Stock");
|
30
|
|
38
|
|
31
|
- app.post("/bigdata/getStorageStatisticsList", "report_getStorageStatisticsList");
|
39
|
+ app.post("/bigdata/getStorageStatisticsList", "report_getStorageStatisticsList"); //查询库存列表
|
32
|
|
40
|
|
33
|
/*************************************会员画像*************************************/
|
41
|
/*************************************会员画像*************************************/
|
34
|
|
42
|
|