|
|
@ -46,8 +46,6 @@ import com.logpm.distribution.vo.app.queryOrderVO; |
|
|
|
import com.logpm.distribution.wrapper.DistributionParcelListWrapper; |
|
|
|
import com.logpm.distribution.wrapper.DistributionParcelListWrapper; |
|
|
|
import com.logpm.distribution.wrapper.DistributionStockArticleNewWrapper; |
|
|
|
import com.logpm.distribution.wrapper.DistributionStockArticleNewWrapper; |
|
|
|
import com.logpm.distribution.wrapper.DistributionStockArticleWrapper; |
|
|
|
import com.logpm.distribution.wrapper.DistributionStockArticleWrapper; |
|
|
|
import com.logpm.warehouse.entity.WarehouseTrayGoodsEntity; |
|
|
|
|
|
|
|
import com.logpm.warehouse.entity.WarehouseUpdownGoodsEntity; |
|
|
|
|
|
|
|
import com.logpm.warehouse.feign.IWarehouseTrayGoodsClient; |
|
|
|
import com.logpm.warehouse.feign.IWarehouseTrayGoodsClient; |
|
|
|
import com.logpm.warehouse.feign.IWarehouseUpdownGoodsClient; |
|
|
|
import com.logpm.warehouse.feign.IWarehouseUpdownGoodsClient; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
@ -792,6 +790,17 @@ public class DistributionStockArticleServiceImpl extends BaseServiceImpl<Distrib |
|
|
|
|
|
|
|
|
|
|
|
orderPackgeCodeDataVO.setDataList(data); |
|
|
|
orderPackgeCodeDataVO.setDataList(data); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<String> moldList = new ArrayList<>(); |
|
|
|
|
|
|
|
data.forEach(map -> { |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
String popHtml = TemplateUtil.popTemplate("包件码", map, html); |
|
|
|
|
|
|
|
moldList.add(popHtml); |
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
|
|
|
throw new RuntimeException(e); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
orderPackgeCodeDataVO.setMoldList(moldList); |
|
|
|
|
|
|
|
|
|
|
|
return orderPackgeCodeDataVO; |
|
|
|
return orderPackgeCodeDataVO; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|