|
|
|
@ -266,7 +266,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
waybillEntity.setDestinationWarehouseName(openOrderDTO.getDestinationWarehouseName()); |
|
|
|
|
waybillEntity.setDocumentMakingTime(CommonUtil.StringToDate(openOrderDTO.getOpenOrderDate())); |
|
|
|
|
waybillEntity.setReceiptNum(openOrderDTO.getReceiptNum()); |
|
|
|
|
waybillEntity.setCustomerTrain(openOrderDTO.getCustomerTrain()); |
|
|
|
|
waybillEntity.setCustomerTrain(openOrderDTO.getTrainNumber()); |
|
|
|
|
Long shipperId = openOrderDTO.getShipperId(); |
|
|
|
|
if(Objects.isNull(shipperId)){ |
|
|
|
|
//如果发货单位没有id值,则把发货单位信息自动添加到client中
|
|
|
|
@ -290,6 +290,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
waybillEntity.setConsigneeAddress(openOrderDTO.getConsigneeAddress()); |
|
|
|
|
|
|
|
|
|
waybillEntity.setDestination(openOrderDTO.getDestination()); |
|
|
|
|
waybillEntity.setDestinationCode(openOrderDTO.getDestinationCode()); |
|
|
|
|
waybillEntity.setGoodsName(openOrderDTO.getGoodsName()); |
|
|
|
|
waybillEntity.setTotalCount(openOrderDTO.getTotalCount()); |
|
|
|
|
waybillEntity.setTotalVolume(openOrderDTO.getTotalVolume()); |
|
|
|
@ -321,6 +322,12 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
waybillEntity.setThirdOperationFee(openOrderDTO.getThirdOperationFee()); |
|
|
|
|
|
|
|
|
|
waybillEntity.setDeliveryWay(openOrderDTO.getDeliveryWay()); |
|
|
|
|
String transportType = openOrderDTO.getTransportType(); |
|
|
|
|
if(StringUtil.isBlank(transportType)){ |
|
|
|
|
waybillEntity.setTransportType("1"); |
|
|
|
|
}else{ |
|
|
|
|
waybillEntity.setTransportType(transportType); |
|
|
|
|
} |
|
|
|
|
waybillEntity.setUrgency(openOrderDTO.getUrgency()); |
|
|
|
|
waybillEntity.setReceipt(openOrderDTO.getReceipt()); |
|
|
|
|
waybillEntity.setRemark(openOrderDTO.getRemark()); |
|
|
|
@ -518,7 +525,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
waybillEntity.setDepartureWarehouseName(openOrderDTO.getDepartureWarehouseName()); |
|
|
|
|
waybillEntity.setDestinationWarehouseId(openOrderDTO.getDestinationWarehouseId()); |
|
|
|
|
waybillEntity.setDestinationWarehouseName(openOrderDTO.getDestinationWarehouseName()); |
|
|
|
|
waybillEntity.setCustomerTrain(openOrderDTO.getCustomerTrain()); |
|
|
|
|
waybillEntity.setCustomerTrain(openOrderDTO.getTrainNumber()); |
|
|
|
|
waybillEntity.setDocumentMakingTime(CommonUtil.StringToDate(openOrderDTO.getOpenOrderDate())); |
|
|
|
|
waybillEntity.setReceiptNum(openOrderDTO.getReceiptNum()); |
|
|
|
|
waybillEntity.setRebate(openOrderDTO.getRebate()); |
|
|
|
@ -546,6 +553,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
waybillEntity.setConsigneeAddress(openOrderDTO.getConsigneeAddress()); |
|
|
|
|
|
|
|
|
|
waybillEntity.setDestination(openOrderDTO.getDestination()); |
|
|
|
|
waybillEntity.setDestinationCode(openOrderDTO.getDestinationCode()); |
|
|
|
|
waybillEntity.setGoodsName(openOrderDTO.getGoodsName()); |
|
|
|
|
waybillEntity.setTotalCount(openOrderDTO.getTotalCount()); |
|
|
|
|
waybillEntity.setTotalVolume(openOrderDTO.getTotalVolume()); |
|
|
|
@ -574,6 +582,12 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
waybillEntity.setHPay(openOrderDTO.getHuiPay()); |
|
|
|
|
waybillEntity.setThirdOperationFee(openOrderDTO.getThirdOperationFee()); |
|
|
|
|
|
|
|
|
|
String transportType = openOrderDTO.getTransportType(); |
|
|
|
|
if(StringUtil.isBlank(transportType)){ |
|
|
|
|
waybillEntity.setTransportType("1"); |
|
|
|
|
}else{ |
|
|
|
|
waybillEntity.setTransportType(transportType); |
|
|
|
|
} |
|
|
|
|
waybillEntity.setDeliveryWay(openOrderDTO.getDeliveryWay()); |
|
|
|
|
waybillEntity.setUrgency(openOrderDTO.getUrgency()); |
|
|
|
|
waybillEntity.setReceipt(openOrderDTO.getReceipt()); |
|
|
|
@ -934,6 +948,13 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
advanceEntity.setSenderName(pacakgeDetailExcelDTO.getSenderName()); |
|
|
|
|
advanceEntity.setSenderPhone(pacakgeDetailExcelDTO.getSenderPhone()); |
|
|
|
|
advanceEntity.setSenderAddress(pacakgeDetailExcelDTO.getSenderAddress()); |
|
|
|
|
advanceEntity.setSenderFactory(pacakgeDetailExcelDTO.getSenderUnit()); |
|
|
|
|
advanceEntity.setSiteName(pacakgeDetailExcelDTO.getSiteName()); |
|
|
|
|
String isGcp = pacakgeDetailExcelDTO.getIsGcp(); |
|
|
|
|
advanceEntity.setIsGcp(0); |
|
|
|
|
if("是".equals(isGcp)){ |
|
|
|
|
advanceEntity.setIsGcp(1); |
|
|
|
|
} |
|
|
|
|
advanceEntity.setWaybillStatus("0"); |
|
|
|
|
advanceEntity.setFreezeStatus("0"); |
|
|
|
|
advanceEntity.setLegacyStatus("0"); |
|
|
|
@ -1186,6 +1207,34 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
for (ImportStandardOuPaiDTO standardOuPaiDTO : paiDTOList) { |
|
|
|
|
String orderPackageCode = standardOuPaiDTO.getOrderPackageCode(); |
|
|
|
|
if(orderPackageCodes.contains(orderPackageCode)){ |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceDetailEntity advanceDetailEntity = advanceDetailService.findEntityByOrderPackageCode(orderPackageCode); |
|
|
|
|
String materialCode = standardOuPaiDTO.getMaterialCode(); |
|
|
|
|
String materialName = standardOuPaiDTO.getMaterialName(); |
|
|
|
|
String num = standardOuPaiDTO.getNum(); |
|
|
|
|
|
|
|
|
|
if(StringUtil.isNotBlank(materialCode) && StringUtil.isNotBlank(materialName)){ |
|
|
|
|
BasicMaterialEntity basicMaterialEntity = basicMaterialClient.findEntityByCodeAndName(materialCode, materialName); |
|
|
|
|
if(Objects.isNull(basicMaterialEntity)){ |
|
|
|
|
basicMaterialEntity = new BasicMaterialEntity(); |
|
|
|
|
basicMaterialEntity.setProductCode(materialCode); |
|
|
|
|
basicMaterialEntity.setName(materialName); |
|
|
|
|
basicMaterialEntity.setBrandId("1713382405517201409"); |
|
|
|
|
basicMaterialEntity.setProperty("家配"); |
|
|
|
|
basicMaterialEntity.setSpecification("件"); |
|
|
|
|
basicMaterialEntity.setPackingSpecification(num+"件/箱"); |
|
|
|
|
basicMaterialEntity.setLogpmUnit("箱"); |
|
|
|
|
basicMaterialEntity.setSku(materialCode); |
|
|
|
|
basicMaterialEntity.setPackageNum(num); |
|
|
|
|
basicMaterialEntity.setHide(1); |
|
|
|
|
Long aLong = basicMaterialClient.addMaterial(basicMaterialEntity); |
|
|
|
|
basicMaterialEntity.setId(aLong); |
|
|
|
|
} |
|
|
|
|
advanceDetailEntity.setMaterialId(basicMaterialEntity.getId()); |
|
|
|
|
advanceDetailEntity.setMaterialCode(basicMaterialEntity.getProductCode()); |
|
|
|
|
advanceDetailEntity.setMaterialName(basicMaterialEntity.getName()); |
|
|
|
|
} |
|
|
|
|
advanceDetailService.updateById(advanceDetailEntity); |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
TrunklineAdvanceDetailEntity advanceDetailModel = new TrunklineAdvanceDetailEntity(); |
|
|
|
@ -1193,6 +1242,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
advanceDetailModel.setWarehouseName(warehouseName); |
|
|
|
|
advanceDetailModel.setAdvanceId(trunklineAdvanceEntity.getId()); |
|
|
|
|
advanceDetailModel.setOrderPackageCode(orderPackageCode); |
|
|
|
|
advanceDetailModel.setTrainNumber(importStandardOuPaiDTO.getTrainNumber()); |
|
|
|
|
advanceDetailModel.setOrderCode(orderCode); |
|
|
|
|
advanceDetailModel.setBrand("欧派"); |
|
|
|
|
advanceDetailModel.setSystemType("线上"); |
|
|
|
@ -1567,7 +1617,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
String shipperAddress = waybillEntity.getShipperAddress(); |
|
|
|
|
shipperAddress = StringUtil.isBlank(shipperAddress)?"":shipperAddress; |
|
|
|
|
if(!shipperAddress.equals(newShipperAddress)){ |
|
|
|
|
stringBuilder.append("发货人电话:").append(shipperAddress).append("-->").append(newShipperAddress).append(";"); |
|
|
|
|
stringBuilder.append("发货人地址:").append(shipperAddress).append("-->").append(newShipperAddress).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Long newConsigneeId = openOrderDTO.getConsigneeId(); |
|
|
|
@ -1641,7 +1691,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
} |
|
|
|
|
Integer newNum = waybillDetailDTO.getNum(); |
|
|
|
|
Integer num = warehouseWayBillDetail.getNum(); |
|
|
|
|
if(num != newNum){ |
|
|
|
|
if(!num.equals(newNum)){ |
|
|
|
|
stringBuilder.append("明细更新:").append(warehouseWayBillDetail.getProductName()).append(" 数量修改").append(num).append("-->").append(newNum).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1653,7 +1703,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
|
|
|
|
|
Integer newChargeType = waybillDetailDTO.getChargeType(); |
|
|
|
|
Integer chargeType = warehouseWayBillDetail.getChargeType(); |
|
|
|
|
if(chargeType != newChargeType){ |
|
|
|
|
if(!chargeType.equals(newChargeType)){ |
|
|
|
|
stringBuilder.append("明细更新:").append(warehouseWayBillDetail.getProductName()).append(" 计价方式修改").append(chargeType).append("-->").append(newChargeType).append(";"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -1667,55 +1717,61 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
|
|
|
|
|
BigDecimal newTotalFreight = openOrderDTO.getTotalFreight(); |
|
|
|
|
BigDecimal totalFreight = waybillEntity.getTotalFreight(); |
|
|
|
|
if(!totalFreight.equals(newTotalFreight)){ |
|
|
|
|
if(totalFreight.compareTo(newTotalFreight) != 0){ |
|
|
|
|
stringBuilder.append("运费:").append(totalFreight).append("-->").append(newTotalFreight).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newDeliveryFee = openOrderDTO.getDeliveryFee(); |
|
|
|
|
BigDecimal deliveryFee = waybillEntity.getDeliveryFee(); |
|
|
|
|
if(!deliveryFee.equals(newDeliveryFee)){ |
|
|
|
|
if(deliveryFee.compareTo(newDeliveryFee) != 0){ |
|
|
|
|
stringBuilder.append("送货费:").append(deliveryFee).append("-->").append(newDeliveryFee).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newPickupFee = openOrderDTO.getPickupFee(); |
|
|
|
|
BigDecimal pickupFee = waybillEntity.getPickupFee(); |
|
|
|
|
if(!pickupFee.equals(newPickupFee)){ |
|
|
|
|
if(pickupFee.compareTo(newPickupFee) != 0){ |
|
|
|
|
stringBuilder.append("提货费:").append(pickupFee).append("-->").append(newPickupFee).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newWarehouseManagementFee = openOrderDTO.getWarehouseManagementFee(); |
|
|
|
|
BigDecimal warehouseManagementFee = waybillEntity.getWarehouseManagementFee(); |
|
|
|
|
if(!warehouseManagementFee.equals(newWarehouseManagementFee)){ |
|
|
|
|
if(warehouseManagementFee.compareTo(newWarehouseManagementFee) != 0){ |
|
|
|
|
stringBuilder.append("仓库管理费:").append(warehouseManagementFee).append("-->").append(newWarehouseManagementFee).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newStorageFee = openOrderDTO.getStorageFee(); |
|
|
|
|
BigDecimal storageFee = waybillEntity.getStorageFee(); |
|
|
|
|
if(!storageFee.equals(newStorageFee)){ |
|
|
|
|
if(storageFee.compareTo(newStorageFee) != 0){ |
|
|
|
|
stringBuilder.append("仓储费:").append(storageFee).append("-->").append(newStorageFee).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newHandlingFee = openOrderDTO.getHandlingFee(); |
|
|
|
|
BigDecimal handlingFee = waybillEntity.getHandlingFee(); |
|
|
|
|
if(!handlingFee.equals(newHandlingFee)){ |
|
|
|
|
if(handlingFee.compareTo(newHandlingFee) != 0){ |
|
|
|
|
stringBuilder.append("装卸费:").append(handlingFee).append("-->").append(newHandlingFee).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newInstallFee = openOrderDTO.getInstallFee(); |
|
|
|
|
BigDecimal installFee = waybillEntity.getInstallFee(); |
|
|
|
|
if(installFee.compareTo(newInstallFee) != 0){ |
|
|
|
|
stringBuilder.append("安装费:").append(installFee).append("-->").append(newInstallFee).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newOtherFee = openOrderDTO.getOtherFee(); |
|
|
|
|
BigDecimal otherFee = waybillEntity.getOtherFee(); |
|
|
|
|
if(!otherFee.equals(newOtherFee)){ |
|
|
|
|
if(otherFee.compareTo(newOtherFee) != 0){ |
|
|
|
|
stringBuilder.append("其他费:").append(otherFee).append("-->").append(newOtherFee).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newInsuranceFee = openOrderDTO.getInsuranceFee(); |
|
|
|
|
BigDecimal insuranceFee = waybillEntity.getInsuranceFee(); |
|
|
|
|
if(!insuranceFee.equals(newInsuranceFee)){ |
|
|
|
|
if(insuranceFee.compareTo(newInsuranceFee) != 0){ |
|
|
|
|
stringBuilder.append("保价费:").append(insuranceFee).append("-->").append(newInsuranceFee).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newClaimingValue = openOrderDTO.getClaimingValue(); |
|
|
|
|
BigDecimal claimingValue = waybillEntity.getClaimingValue(); |
|
|
|
|
if(!claimingValue.equals(newClaimingValue)){ |
|
|
|
|
if(claimingValue.compareTo(newClaimingValue) != 0){ |
|
|
|
|
stringBuilder.append("申明价值:").append(claimingValue).append("-->").append(newClaimingValue).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1733,31 +1789,31 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
|
|
|
|
|
BigDecimal xianPay = openOrderDTO.getXianPay(); |
|
|
|
|
BigDecimal xPay = waybillEntity.getXPay(); |
|
|
|
|
if(!xPay.equals(xianPay)){ |
|
|
|
|
if(xPay.compareTo(xianPay) != 0){ |
|
|
|
|
stringBuilder.append("现付:").append(xPay).append("-->").append(xianPay).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal daoPay = openOrderDTO.getDaoPay(); |
|
|
|
|
BigDecimal dPay = waybillEntity.getDPay(); |
|
|
|
|
if(!dPay.equals(daoPay)){ |
|
|
|
|
if(dPay.compareTo(daoPay) != 0){ |
|
|
|
|
stringBuilder.append("到付:").append(dPay).append("-->").append(daoPay).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal yuePay = openOrderDTO.getYuePay(); |
|
|
|
|
BigDecimal yPay = waybillEntity.getYPay(); |
|
|
|
|
if(!yPay.equals(yuePay)){ |
|
|
|
|
if(yPay.compareTo(yuePay) != 0){ |
|
|
|
|
stringBuilder.append("月结:").append(yPay).append("-->").append(yuePay).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal huiPay = openOrderDTO.getHuiPay(); |
|
|
|
|
BigDecimal hPay = waybillEntity.getHPay(); |
|
|
|
|
if(!hPay.equals(huiPay)){ |
|
|
|
|
if(hPay.compareTo(huiPay) != 0){ |
|
|
|
|
stringBuilder.append("月结:").append(hPay).append("-->").append(huiPay).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newthirdOperationFee = openOrderDTO.getThirdOperationFee(); |
|
|
|
|
BigDecimal thirdOperationFee = waybillEntity.getThirdOperationFee(); |
|
|
|
|
if(!thirdOperationFee.equals(newthirdOperationFee)){ |
|
|
|
|
if(thirdOperationFee.compareTo(newthirdOperationFee) != 0){ |
|
|
|
|
stringBuilder.append("三方操作费:").append(thirdOperationFee).append("-->").append(newthirdOperationFee).append(";"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1793,9 +1849,23 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
|
|
|
|
|
BigDecimal newrebate = openOrderDTO.getRebate(); |
|
|
|
|
BigDecimal rebate = waybillEntity.getRebate(); |
|
|
|
|
if(!rebate.equals(newrebate)){ |
|
|
|
|
if(!Objects.isNull(rebate)){ |
|
|
|
|
if(rebate.compareTo(newrebate) != 0){ |
|
|
|
|
stringBuilder.append("回扣:").append(rebate).append("-->").append(newrebate).append(";"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String newRemark = openOrderDTO.getRemark(); |
|
|
|
|
String remark = waybillEntity.getRemark(); |
|
|
|
|
if(!StringUtil.isBlank(remark)){ |
|
|
|
|
if(!remark.equals(newRemark)){ |
|
|
|
|
stringBuilder.append("备注:").append(remark).append("-->").append(newRemark).append(";"); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
if(!StringUtil.isBlank(newRemark)){ |
|
|
|
|
stringBuilder.append("备注:").append(remark).append("-->").append(newRemark).append(";"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return stringBuilder.toString(); |
|
|
|
|
|
|
|
|
@ -1810,6 +1880,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
if(!destination.equals(newDestination)){ |
|
|
|
|
stringBuilder.append("到站:").append(destination).append("-->").append(newDestination).append(";"); |
|
|
|
|
waybillEntity.setDestination(newDestination); |
|
|
|
|
waybillEntity.setDestinationCode(openOrderDTO.getDestinationCode()); |
|
|
|
|
} |
|
|
|
|
Long newDestinationWarehouseId = openOrderDTO.getDestinationWarehouseId(); |
|
|
|
|
String newDestinationWarehouseName = openOrderDTO.getDestinationWarehouseName(); |
|
|
|
@ -1849,7 +1920,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
String shipperAddress = waybillEntity.getShipperAddress(); |
|
|
|
|
shipperAddress = StringUtil.isBlank(shipperAddress)?"":shipperAddress; |
|
|
|
|
if(!shipperAddress.equals(newShipperAddress)){ |
|
|
|
|
stringBuilder.append("发货人电话:").append(shipperAddress).append("-->").append(newShipperAddress).append(";"); |
|
|
|
|
stringBuilder.append("发货人地址:").append(shipperAddress).append("-->").append(newShipperAddress).append(";"); |
|
|
|
|
waybillEntity.setShipperAddress(newShipperAddress); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1883,7 +1954,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
String consigneeAddress = waybillEntity.getConsigneeAddress(); |
|
|
|
|
consigneeAddress = StringUtil.isBlank(consigneeAddress)?"":consigneeAddress; |
|
|
|
|
if(!shipperAddress.equals(newShipperAddress)){ |
|
|
|
|
stringBuilder.append("发货人地址:").append(consigneeAddress).append("-->").append(newConsigneeAddress).append(";"); |
|
|
|
|
stringBuilder.append("收货人地址:").append(consigneeAddress).append("-->").append(newConsigneeAddress).append(";"); |
|
|
|
|
waybillEntity.setConsigneeAddress(newConsigneeAddress); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -1942,7 +2013,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
} |
|
|
|
|
Integer newNum = waybillDetailDTO.getNum(); |
|
|
|
|
Integer num = warehouseWayBillDetail.getNum(); |
|
|
|
|
if(num != newNum){ |
|
|
|
|
if(!num.equals(newNum)){ |
|
|
|
|
stringBuilder.append("明细更新:").append(warehouseWayBillDetail.getProductName()).append(" 数量修改").append(num).append("-->").append(newNum).append(";"); |
|
|
|
|
warehouseWayBillDetail.setNum(newNum); |
|
|
|
|
} |
|
|
|
@ -1956,7 +2027,7 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
|
|
|
|
|
Integer newChargeType = waybillDetailDTO.getChargeType(); |
|
|
|
|
Integer chargeType = warehouseWayBillDetail.getChargeType(); |
|
|
|
|
if(chargeType != newChargeType){ |
|
|
|
|
if(!chargeType.equals(newChargeType)){ |
|
|
|
|
stringBuilder.append("明细更新:").append(warehouseWayBillDetail.getProductName()).append(" 计价方式修改").append(chargeType).append("-->").append(newChargeType).append(";"); |
|
|
|
|
warehouseWayBillDetail.setChargeType(newChargeType); |
|
|
|
|
} |
|
|
|
@ -1973,67 +2044,74 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
|
|
|
|
|
BigDecimal newTotalFreight = openOrderDTO.getTotalFreight(); |
|
|
|
|
BigDecimal totalFreight = waybillEntity.getTotalFreight(); |
|
|
|
|
if(!totalFreight.equals(newTotalFreight)){ |
|
|
|
|
if(totalFreight.compareTo(newTotalFreight) != 0){ |
|
|
|
|
stringBuilder.append("运费:").append(totalFreight).append("-->").append(newTotalFreight).append(";"); |
|
|
|
|
waybillEntity.setTotalFreight(newTotalFreight); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newDeliveryFee = openOrderDTO.getDeliveryFee(); |
|
|
|
|
BigDecimal deliveryFee = waybillEntity.getDeliveryFee(); |
|
|
|
|
if(!deliveryFee.equals(newDeliveryFee)){ |
|
|
|
|
if(deliveryFee.compareTo(newDeliveryFee) != 0){ |
|
|
|
|
stringBuilder.append("送货费:").append(deliveryFee).append("-->").append(newDeliveryFee).append(";"); |
|
|
|
|
waybillEntity.setDeliveryFee(newDeliveryFee); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newPickupFee = openOrderDTO.getPickupFee(); |
|
|
|
|
BigDecimal pickupFee = waybillEntity.getPickupFee(); |
|
|
|
|
if(!pickupFee.equals(newPickupFee)){ |
|
|
|
|
if(pickupFee.compareTo(newPickupFee) != 0){ |
|
|
|
|
stringBuilder.append("提货费:").append(pickupFee).append("-->").append(newPickupFee).append(";"); |
|
|
|
|
waybillEntity.setPickupFee(newPickupFee); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newWarehouseManagementFee = openOrderDTO.getWarehouseManagementFee(); |
|
|
|
|
BigDecimal warehouseManagementFee = waybillEntity.getWarehouseManagementFee(); |
|
|
|
|
if(!warehouseManagementFee.equals(newWarehouseManagementFee)){ |
|
|
|
|
if(warehouseManagementFee.compareTo(newWarehouseManagementFee) != 0){ |
|
|
|
|
stringBuilder.append("仓库管理费:").append(warehouseManagementFee).append("-->").append(newWarehouseManagementFee).append(";"); |
|
|
|
|
waybillEntity.setWarehouseManagementFee(newWarehouseManagementFee); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newStorageFee = openOrderDTO.getStorageFee(); |
|
|
|
|
BigDecimal storageFee = waybillEntity.getStorageFee(); |
|
|
|
|
if(!storageFee.equals(newStorageFee)){ |
|
|
|
|
if(storageFee.compareTo(newStorageFee) != 0){ |
|
|
|
|
stringBuilder.append("仓储费:").append(storageFee).append("-->").append(newStorageFee).append(";"); |
|
|
|
|
waybillEntity.setStorageFee(newStorageFee); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newHandlingFee = openOrderDTO.getHandlingFee(); |
|
|
|
|
BigDecimal handlingFee = waybillEntity.getHandlingFee(); |
|
|
|
|
if(!handlingFee.equals(newHandlingFee)){ |
|
|
|
|
if(handlingFee.compareTo(newHandlingFee) != 0){ |
|
|
|
|
stringBuilder.append("装卸费:").append(handlingFee).append("-->").append(newHandlingFee).append(";"); |
|
|
|
|
waybillEntity.setHandlingFee(newHandlingFee); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newOtherFee = openOrderDTO.getOtherFee(); |
|
|
|
|
BigDecimal otherFee = waybillEntity.getOtherFee(); |
|
|
|
|
if(!otherFee.equals(newOtherFee)){ |
|
|
|
|
if(otherFee.compareTo(newOtherFee) != 0){ |
|
|
|
|
stringBuilder.append("其他费:").append(otherFee).append("-->").append(newOtherFee).append(";"); |
|
|
|
|
waybillEntity.setOtherFee(newOtherFee); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newInsuranceFee = openOrderDTO.getInsuranceFee(); |
|
|
|
|
BigDecimal insuranceFee = waybillEntity.getInsuranceFee(); |
|
|
|
|
if(!insuranceFee.equals(newInsuranceFee)){ |
|
|
|
|
if(insuranceFee.compareTo(newInsuranceFee) != 0){ |
|
|
|
|
stringBuilder.append("保价费:").append(insuranceFee).append("-->").append(newInsuranceFee).append(";"); |
|
|
|
|
waybillEntity.setInsuranceFee(newInsuranceFee); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newClaimingValue = openOrderDTO.getClaimingValue(); |
|
|
|
|
BigDecimal claimingValue = waybillEntity.getClaimingValue(); |
|
|
|
|
if(!claimingValue.equals(newClaimingValue)){ |
|
|
|
|
if(claimingValue.compareTo(newClaimingValue) != 0){ |
|
|
|
|
stringBuilder.append("申明价值:").append(claimingValue).append("-->").append(newClaimingValue).append(";"); |
|
|
|
|
waybillEntity.setClaimingValue(newClaimingValue); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newInstallFee = openOrderDTO.getInstallFee(); |
|
|
|
|
BigDecimal installFee = waybillEntity.getInstallFee(); |
|
|
|
|
if(installFee.compareTo(newInstallFee) != 0){ |
|
|
|
|
stringBuilder.append("安装费:").append(installFee).append("-->").append(newInstallFee).append(";"); |
|
|
|
|
waybillEntity.setInstallFee(newInstallFee); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String newPayType = openOrderDTO.getPayType(); |
|
|
|
|
String payType = waybillEntity.getPayType(); |
|
|
|
|
if(!payType.equals(newPayType)){ |
|
|
|
@ -2050,35 +2128,35 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
|
|
|
|
|
BigDecimal xianPay = openOrderDTO.getXianPay(); |
|
|
|
|
BigDecimal xPay = waybillEntity.getXPay(); |
|
|
|
|
if(!xPay.equals(xianPay)){ |
|
|
|
|
if(xPay.compareTo(xianPay) != 0){ |
|
|
|
|
stringBuilder.append("现付:").append(xPay).append("-->").append(xianPay).append(";"); |
|
|
|
|
waybillEntity.setXPay(xianPay); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal daoPay = openOrderDTO.getDaoPay(); |
|
|
|
|
BigDecimal dPay = waybillEntity.getDPay(); |
|
|
|
|
if(!dPay.equals(daoPay)){ |
|
|
|
|
if(dPay.compareTo(daoPay) != 0){ |
|
|
|
|
stringBuilder.append("到付:").append(dPay).append("-->").append(daoPay).append(";"); |
|
|
|
|
waybillEntity.setDPay(daoPay); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal yuePay = openOrderDTO.getYuePay(); |
|
|
|
|
BigDecimal yPay = waybillEntity.getYPay(); |
|
|
|
|
if(!yPay.equals(yuePay)){ |
|
|
|
|
if(yPay.compareTo(yuePay) != 0){ |
|
|
|
|
stringBuilder.append("月结:").append(yPay).append("-->").append(yuePay).append(";"); |
|
|
|
|
waybillEntity.setYPay(yuePay); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal huiPay = openOrderDTO.getHuiPay(); |
|
|
|
|
BigDecimal hPay = waybillEntity.getHPay(); |
|
|
|
|
if(!hPay.equals(huiPay)){ |
|
|
|
|
if(hPay.compareTo(huiPay) != 0){ |
|
|
|
|
stringBuilder.append("月结:").append(hPay).append("-->").append(huiPay).append(";"); |
|
|
|
|
waybillEntity.setHPay(huiPay); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BigDecimal newthirdOperationFee = openOrderDTO.getThirdOperationFee(); |
|
|
|
|
BigDecimal thirdOperationFee = waybillEntity.getThirdOperationFee(); |
|
|
|
|
if(!thirdOperationFee.equals(newthirdOperationFee)){ |
|
|
|
|
if(thirdOperationFee.compareTo(newthirdOperationFee) != 0){ |
|
|
|
|
stringBuilder.append("三方操作费:").append(thirdOperationFee).append("-->").append(newthirdOperationFee).append(";"); |
|
|
|
|
waybillEntity.setThirdOperationFee(newthirdOperationFee); |
|
|
|
|
} |
|
|
|
@ -2120,10 +2198,25 @@ public class OpenOrderServiceImpl implements IOpenOrderService {
|
|
|
|
|
|
|
|
|
|
BigDecimal newrebate = openOrderDTO.getRebate(); |
|
|
|
|
BigDecimal rebate = waybillEntity.getRebate(); |
|
|
|
|
if(!rebate.equals(newrebate)){ |
|
|
|
|
if(!Objects.isNull(rebate)){ |
|
|
|
|
if(rebate.compareTo(newrebate) != 0){ |
|
|
|
|
stringBuilder.append("回扣:").append(rebate).append("-->").append(newrebate).append(";"); |
|
|
|
|
waybillEntity.setRebate(newrebate); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String newRemark = openOrderDTO.getRemark(); |
|
|
|
|
String remark = waybillEntity.getRemark(); |
|
|
|
|
if(!StringUtil.isBlank(remark)){ |
|
|
|
|
if(!remark.equals(newRemark)){ |
|
|
|
|
stringBuilder.append("备注:").append(remark).append("-->").append(newRemark).append(";"); |
|
|
|
|
waybillEntity.setRemark(newRemark); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
if(!StringUtil.isBlank(newRemark)){ |
|
|
|
|
stringBuilder.append("备注:").append(remark).append("-->").append(newRemark).append(";"); |
|
|
|
|
waybillEntity.setRemark(newRemark); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return stringBuilder.toString(); |
|
|
|
|
|
|
|
|
|