|
|
|
@ -475,6 +475,8 @@ public class DistributionStockArticleEntity extends TenantEntity {
|
|
|
|
|
String consigneePerson = distributionStockArticleEntity.getConsigneePerson(); |
|
|
|
|
String consigneeMobile = distributionStockArticleEntity.getConsigneeMobile(); |
|
|
|
|
String consigneeAddress = distributionStockArticleEntity.getConsigneeAddress(); |
|
|
|
|
String consigneeUnit = distributionStockArticleEntity.getConsigneeUnit(); |
|
|
|
|
String mallName = distributionStockArticleEntity.getMallName(); |
|
|
|
|
|
|
|
|
|
StringBuilder stringBuilder = new StringBuilder(); |
|
|
|
|
boolean nameFlag = ObjectUtil.equals(this.customerName, customerName); |
|
|
|
@ -501,6 +503,14 @@ public class DistributionStockArticleEntity extends TenantEntity {
|
|
|
|
|
if(!consigneeAddressFlag){ |
|
|
|
|
stringBuilder.append("运单收货地址:["+this.consigneeAddress+"]修改为["+consigneeAddress+"];"); |
|
|
|
|
} |
|
|
|
|
boolean consigneeUnitFlag = ObjectUtil.equals(this.consigneeUnit, consigneeUnit); |
|
|
|
|
if(!consigneeUnitFlag){ |
|
|
|
|
stringBuilder.append("运单收货单位:["+this.consigneeUnit+"]修改为["+consigneeUnit+"];"); |
|
|
|
|
} |
|
|
|
|
boolean mallNameFlag = ObjectUtil.equals(this.mallName, mallName); |
|
|
|
|
if(!mallNameFlag){ |
|
|
|
|
stringBuilder.append("运单收货单位:["+this.mallName+"]修改为["+mallName+"];"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return stringBuilder.toString(); |
|
|
|
|
} |
|
|
|
|