| | |
| | | @GetMapping("selectSumOrderAndAmountByStoreId") |
| | | @ApiOperation(value = "商家后台经营数据统计-上") |
| | | public R selectSumOrderAndAmountByStoreId(@RequestParam("storeId") Long storeId){ |
| | | return communityService.selectSumOrderAndAmountByStoreId(this.getLoginUserInfo().getStoreIdId()); |
| | | return communityService.selectSumOrderAndAmountByStoreId(storeId); |
| | | } |
| | | |
| | | /** |
| | |
| | | @ApiImplicitParam(name = "type", value = "类型 1.近15天 2.近30天 3.今年"), |
| | | @ApiImplicitParam(name = "tab", value = "tab 1.订单量 2.营业收入")}) |
| | | public R selectOrderLineChart(@RequestParam("storeId") Long storeId,@RequestParam("type") Integer type,@RequestParam("tab") Integer tab){ |
| | | return communityService.selectOrderLineChart(this.getLoginUserInfo().getStoreIdId(),type,tab); |
| | | return communityService.selectOrderLineChart(storeId,type,tab); |
| | | } |
| | | |
| | | /** |