Browse Source

预约库存品调整

training
kilo 1 year ago
parent
commit
9544af90fd
  1. 8
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionReservationServiceImpl.java

8
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionReservationServiceImpl.java

@ -2177,14 +2177,14 @@ public class DistributionReservationServiceImpl extends BaseServiceImpl<Distribu
// WarehouseWaybillEntity byWaybillNo = warehouseWaybillClient.findByWaybillNo(); // WarehouseWaybillEntity byWaybillNo = warehouseWaybillClient.findByWaybillNo();
// String consigneeMobile = byWaybillNo.getConsigneeMobile(); // String consigneeMobile = byWaybillNo.getConsigneeMobile();
WayBillEntity wayBillEntity = wayBillClient.getByWaybillNo(s.getWaybillNumber()); WayBillEntity wayBillEntity = wayBillClient.getByWaybillNo(s.getWaybillNumber());
if (Func.isNotEmpty(wayBillEntity)) { if (Func.isNotEmpty(wayBillEntity)) {
waybillId.add(wayBillEntity.getId().toString()); waybillId.add(wayBillEntity.getId().toString());
if (Func.isNotEmpty(wayBillEntity.getTakePhone())){
marketPhone.add(wayBillEntity.getTakePhone());
}
} }
if (Func.isNotEmpty(wayBillEntity.getTakePhone())){
marketPhone.add(wayBillEntity.getTakePhone());
}
// storeName.add(s.getStoreName()); // storeName.add(s.getStoreName());
// mallName.add(s.getMallName()); // mallName.add(s.getMallName());
// warehouseNames.add(s.getWarehouse()); // warehouseNames.add(s.getWarehouse());

Loading…
Cancel
Save