|
|
@@ -97,6 +97,9 @@ public class OrderController {
|
|
|
@GetMapping("/deliverListStatusNum")
|
|
|
@ApiOperation("后管端-快递订单列表-订单状态数量")
|
|
|
public R<Map<String, Integer>> deliverListStatusNum(BackendOrderParam orderParam) {
|
|
|
+ if (orderParam.getChannelIdList()==null||orderParam.getChannelIdList().isEmpty()){
|
|
|
+ return R.FAIL("请求参数-所属企业不允许为空");
|
|
|
+ }
|
|
|
if (orderParam.getChannelIdList().contains(0L)){
|
|
|
Long userId = SecurityUtils.getSysUser().getUserId();
|
|
|
List<Long> channelIdList = sysUserService.findByUserIdListId(userId);
|