|
@@ -123,8 +123,8 @@ public class MonthlyInventoryReportServiceImpl extends ServiceImpl<MonthlyInvent
|
|
|
String tenantId = entry.getKey();
|
|
|
List<Stock> stockList = entry.getValue();
|
|
|
if (ObjectUtil.isEmpty(stockList)) {
|
|
|
- //如果当前租户的信息为空直接跳过
|
|
|
- return;
|
|
|
+ //如果租户库存的信息为空直接跳过这个租户
|
|
|
+ continue;
|
|
|
}
|
|
|
|
|
|
List<MonthlyInventoryReportVo> olDmonthlyInventoryReportList = olDmonthlyInventoryReportMap.getOrDefault(tenantId, new ArrayList<>());
|