商品列表问题

This commit is contained in:
2025-12-19 17:56:40 +08:00
parent 30b3da513b
commit 6084bf847b
4 changed files with 9 additions and 7 deletions

View File

@@ -58,7 +58,7 @@ public class GbWareController {
if (param.getShopId() == null) {
param.setShopId(StpKit.USER.getShopId());
}
return CzgResult.success(wareService.getGbWarePage(param, param.getShopId()));
return CzgResult.success(wareService.getGbWarePage(param, param.getShopId(), true));
}
@PostMapping("/addGbWare")

View File

@@ -52,7 +52,7 @@ public class UGbOrderController {
param.setOnlineStatus(1);
param.setWareName(wareName);
param.setGroupPeopleNum(groupPeopleNum);
Page<GbWare> data = wareService.getGbWarePage(param, shopId);
Page<GbWare> data = wareService.getGbWarePage(param, shopId, false);
return CzgResult.success(data);
}