Commit 3a7301b4 by 墨竹

fix:查询数量bug

parent e232cd42
......@@ -917,8 +917,10 @@ public class StaffApiServiceImpl implements StaffApiService {
return storeRoleDTO;
}
if (storeIds.contains("-1")) {
logger.info("该导购为超管");
int gicStoreCount = storeWidgetService.getClerkWidgetStore(clerkId);
storeRoleDTO.setStoreCount(gicStoreCount);
return storeRoleDTO;
}
int size = storeIds.size();
storeRoleDTO.setStoreCount(size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment