Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
2d50db41d0
@ -253,7 +253,11 @@ public class ShopOrderReturnServiceImpl extends BaseServiceImpl<ShopOrderReturnM
|
|||||||
public List<Map<String, Object>> statisticCount(Date end, int days) {
|
public List<Map<String, Object>> statisticCount(Date end, int days) {
|
||||||
Integer store_id = Convert.toInt(getCurrentUser().getStore_id());
|
Integer store_id = Convert.toInt(getCurrentUser().getStore_id());
|
||||||
if (ObjectUtil.isNotNull(store_id)) {
|
if (ObjectUtil.isNotNull(store_id)) {
|
||||||
return shopOrderReturnMapper.statisticCountSeller(end, days, store_id);
|
List<Map<String, Object>> mapList= shopOrderReturnMapper.statisticCountSeller(end, days, store_id);
|
||||||
|
if(null==mapList){
|
||||||
|
mapList=new ArrayList<>();
|
||||||
|
}
|
||||||
|
return mapList;
|
||||||
}
|
}
|
||||||
return shopOrderReturnMapper.statisticCount(end, days);
|
return shopOrderReturnMapper.statisticCount(end, days);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -540,6 +540,7 @@ public class ShopPageAppController extends BaseControllerImpl {
|
|||||||
editShopPageApp.setApp_market_images(shopPageApp.getApp_market_images());
|
editShopPageApp.setApp_market_images(shopPageApp.getApp_market_images());
|
||||||
editShopPageApp.setTpl_image(shopPageApp.getTpl_image());
|
editShopPageApp.setTpl_image(shopPageApp.getTpl_image());
|
||||||
editShopPageApp.setApp_industry(shopPageApp.getApp_industry());
|
editShopPageApp.setApp_industry(shopPageApp.getApp_industry());
|
||||||
|
editShopPageApp.setApp_is_use(0);
|
||||||
shopPageAppService.edit(editShopPageApp);
|
shopPageAppService.edit(editShopPageApp);
|
||||||
return CommonResult.success();
|
return CommonResult.success();
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user