|
|
@@ -532,10 +532,8 @@ public class KwtWaybillOrderV1Service {
|
|
|
List<String> loadName = loadAddresses.stream().map(KwtWaybillOrderAddress::getCityName).toList();
|
|
|
//装货地点
|
|
|
List<String> loadAddress = loadAddresses.stream().map(KwtWaybillOrderAddress::getDetailAddress).toList();
|
|
|
- List<Date> loadTime = loadAddresses.stream().map(KwtWaybillOrderAddress::getPlanTime).toList();
|
|
|
//卸货地点点名称
|
|
|
List<String> unloadName = unloadAddresses.stream().map(KwtWaybillOrderAddress::getCityName).toList();
|
|
|
- List<Date> unloadTime = unloadAddresses.stream().map(KwtWaybillOrderAddress::getPlanTime).toList();
|
|
|
//卸货地点
|
|
|
List<String> unloadAddress = unloadAddresses.stream().map(KwtWaybillOrderAddress::getDetailAddress).toList();
|
|
|
|
|
|
@@ -574,10 +572,8 @@ public class KwtWaybillOrderV1Service {
|
|
|
waybillOrder.setUnloadTime(unloadDate.get().getOperateTime());
|
|
|
waybillOrder.setLoadName(loadName);
|
|
|
waybillOrder.setLoadAddress(loadAddress);
|
|
|
- waybillOrder.setLoadTime(loadTime);
|
|
|
waybillOrder.setUnloadName(unloadName);
|
|
|
waybillOrder.setUnloadAddress(unloadAddress);
|
|
|
- waybillOrder.setUnloadTime(unloadTime);
|
|
|
}
|
|
|
|
|
|
/**
|