Commit 34eb2edf720440e66703062fdda0467f1bf056b9

Authored by 房远帅
1 parent d260aa74

楚江ERP:补货单-生成订货单时添加包装费和单价

@@ -327,6 +327,8 @@ public class ReplenishmentOrderServiceImpl extends BaseMpServiceImpl<Replenishme @@ -327,6 +327,8 @@ public class ReplenishmentOrderServiceImpl extends BaseMpServiceImpl<Replenishme
327 createPurchaseOrderLineVo.setQuantity(replenishmentOrderLine.getSupplementaryQuantity()); 327 createPurchaseOrderLineVo.setQuantity(replenishmentOrderLine.getSupplementaryQuantity());
328 createPurchaseOrderLineVo.setDeliveryDate(replenishmentOrderLine.getConfirmedDeliveryDate()); 328 createPurchaseOrderLineVo.setDeliveryDate(replenishmentOrderLine.getConfirmedDeliveryDate());
329 createPurchaseOrderLineVo.setShowOrder(replenishmentOrderLine.getShowOrder()); 329 createPurchaseOrderLineVo.setShowOrder(replenishmentOrderLine.getShowOrder());
  330 + createPurchaseOrderLineVo.setSalesPrice(replenishmentOrderLine.getSalesPrice());
  331 + createPurchaseOrderLineVo.setPackagingFee(replenishmentOrderLine.getPackagingFee());
330 lineVoList.add(createPurchaseOrderLineVo); 332 lineVoList.add(createPurchaseOrderLineVo);
331 333
332 totalQuantity = totalQuantity.add(replenishmentOrderLine.getSupplementaryQuantity()); 334 totalQuantity = totalQuantity.add(replenishmentOrderLine.getSupplementaryQuantity());