Merge branch 'local_20221104' into huacheng_test
| | |
| | | return communityService.pageGoodsCategory(pageConvenientGoodsCategoryDTO); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 商家后台经营数据统计-上 |
| | | * @param storeId |
| | | * @return |
| | | */ |
| | | @GetMapping("/merchant/selectSumOrderAndAmountByStoreId") |
| | | @ApiOperation(value = "经营数据统计-上") |
| | | public R selectSumOrderAndAmountByStoreId(@RequestParam("storeId") Long storeId){ |
| | | return communityService.selectSumOrderAndAmountByStoreId(storeId); |
| | | } |
| | | |
| | | /** |
| | | * 统计时间区域的订单量 15天 30天 一年 |
| | | * @param storeId |
| | | * @param type |
| | | * @return |
| | | */ |
| | | @GetMapping("/merchant/selectOrderLineChart") |
| | | @ApiOperation(value = "统计时间区域的订单量 15天 30天 一年") |
| | | public R selectOrderLineChart(@RequestParam("storeId") Long storeId,@RequestParam("type") Integer type){ |
| | | return communityService.selectOrderLineChart(storeId,type); |
| | | } |
| | | } |
| | |
| | | @PostMapping("/shopFlower/pageOrderByDeliveryNo") |
| | | R pageOrderByDeliveryNo(@RequestBody PageComFlowerOrderListDTO pageComFlowerOrderListDTO); |
| | | |
| | | /** |
| | | * 商家后台经营数据统计-上 |
| | | * @param storeId |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/selectSumOrderAndAmountByStoreId") |
| | | R selectSumOrderAndAmountByStoreId(@RequestParam("storeId") Long storeId); |
| | | |
| | | /** |
| | | * 统计时间区域的订单量 15天 30天 一年 |
| | | * @param storeId |
| | | * @param type |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/selectOrderLineChart") R selectOrderLineChart(@RequestParam("storeId") Long storeId,@RequestParam("type") Integer type); |
| | | } |
| | |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 商家后台经营数据统计-上 |
| | | * @param storeId |
| | | * @return |
| | | */ |
| | | @GetMapping("selectSumOrderAndAmountByStoreId") |
| | | @ApiOperation(value = "商家后台经营数据统计-上") |
| | | public R selectSumOrderAndAmountByStoreId(@RequestParam("storeId") Long storeId){ |
| | | return communityService.selectSumOrderAndAmountByStoreId(storeId); |
| | | } |
| | | |
| | | /** |
| | | * 统计时间区域的订单量 15天 30天 一年 |
| | | * @param storeId |
| | | * @param type |
| | | * @return |
| | | */ |
| | | @GetMapping("selectOrderLineChart") |
| | | @ApiOperation(value = "商家后台-统计时间区域的订单量 15天 30天 一年") |
| | | public R selectOrderLineChart(@RequestParam("storeId") Long storeId,@RequestParam("type") Integer type){ |
| | | return communityService.selectOrderLineChart(storeId,type); |
| | | } |
| | | |
| | | } |