| | |
| | | if (stockItems.isEmpty()) { |
| | | return; |
| | | } |
| | | Set<Long> stockIds = stockItems.stream().map(StockItem::getStockId).collect(Collectors.toSet()); |
| | | List<Stock> stocks = stockService.listByIds(stockIds); |
| | | //过滤拣货入库明细,避免上报 |
| | | List<Stock> stockList = stocks.stream().filter(stock -> stock.getType().equals(OrderType.ORDER_OUT.type)).collect(Collectors.toList()); |
| | | List<Long> list = stockList.stream().map(Stock::getId).collect(Collectors.toList()); |
| | | List<StockItem> stockItems1 = stockItemService.list(new LambdaQueryWrapper<StockItem>().in(StockItem::getStockId, list)); |
| | | String finalNickName = nickName; |
| | | stockItems.forEach(stockItem -> { |
| | | stockItems1.forEach(stockItem -> { |
| | | List<ReportDataParam> dataParams = new ArrayList<>(); |
| | | //获取索引内容 |
| | | Map<String, String> fields = FieldsUtils.getFields(stockItem.getFieldsIndex()); |