|
@@ -397,7 +397,14 @@ public class SyShippingDetailsItem {
|
|
|
this.orderRemainingQuantity = orderDataVo.getQuantity();
|
|
|
this.shipmentQuantity = orderDataVo.getQuantity();
|
|
|
this.salesTypeText = orderDataVo.getSalesTypeText();
|
|
|
- this.customerAbbreviation = orderDataVo.getCustomerAbbreviation();
|
|
|
+
|
|
|
+ //客户简称字段用最终客户字段替代 只针对成衣
|
|
|
+ if(orderDataVo.getInventoryCcode().substring(0,2).equals("19")){
|
|
|
+ this.customerAbbreviation = orderDataVo.getEndCustomer();
|
|
|
+ }else{
|
|
|
+ this.customerAbbreviation = orderDataVo.getCustomerAbbreviation();
|
|
|
+ }
|
|
|
+
|
|
|
this.customerName = orderDataVo.getCustomerName();
|
|
|
this.exchangeRate = orderDataVo.getExchangeRate();
|
|
|
this.salesDepartment = orderDataVo.getSalesDepartment();
|