|
|
@@ -778,6 +778,15 @@ public class CommonController extends BaseController<Map<String, Object>> {
|
|
|
public ResponseResultVO<PageList<Map<String, Object>>> getGoodsForIntoByPage(@RequestBody Map<String, Object> param) {
|
|
|
return commonService.getGoodsForIntoByPage(param);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(
|
|
|
+ value = " 销售分析-我的 门店助手的 销售金额 收款金额 库存成本",
|
|
|
+ notes = " 销售分析-我的 门店助手的 销售金额 收款金额 库存成本"
|
|
|
+ )
|
|
|
+ @PostMapping("get_home_order_rec_cost")
|
|
|
+ public ResponseResultVO<Map<String, Object>> getHomeOrderRecCost(@RequestBody Map<String, Object> param) {
|
|
|
+ return commonService.getHomeOrderRecCost(param);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|