|
|
|
@ -249,6 +249,9 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
@Autowired |
|
|
|
|
private IUserClient userClient; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private IBasicdataDriverArteryClient arteryClient; |
|
|
|
|
|
|
|
|
|
// private final IWarehouseRetentionScanClient warehouseRetentionScanClient;
|
|
|
|
|
|
|
|
|
|
// @Lazy
|
|
|
|
@ -7235,6 +7238,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Transactional |
|
|
|
|
public void mallClientSignfor(String trainNumber, Long warehouseId, String orderPackageCode) { |
|
|
|
|
//查询包件是否合法
|
|
|
|
|
DistributionParcelListEntity packageObj = distributionParcelListService.getOne(Wrappers.<DistributionParcelListEntity>query().lambda() |
|
|
|
@ -7265,7 +7269,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
log.error("仓库查询错误"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleService.getById(packageObj.getId()); |
|
|
|
|
DistributionStockArticleEntity stockArticleEntity = distributionStockArticleService.getById(packageObj.getStockArticleId()); |
|
|
|
|
if (Func.isEmpty(stockArticleEntity)) { |
|
|
|
|
//订单查询错误
|
|
|
|
|
log.error("订单查询错误"); |
|
|
|
@ -7315,7 +7319,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
.eq(DistributionLoadscanEntity::getSignforState, LoadScanSigningStatusConstant.weiqianshou.getValue()) |
|
|
|
|
.ne(DistributionLoadscanEntity::getScanStatus, LoadingStatusConstant.quxiao.getValue()) |
|
|
|
|
); |
|
|
|
|
if (Func.isEmpty(loadscanEntity)) { |
|
|
|
|
if (!Func.isEmpty(loadscanEntity)) { |
|
|
|
|
//存在装车数据
|
|
|
|
|
loadscanEntity.setSigningTime(simpleDateFormat.format(new Date())); |
|
|
|
|
loadscanEntity.setSignforState(2); |
|
|
|
@ -7389,7 +7393,7 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
Integer m = distributionSignforMapper.updateSignUser(distributionLoadscanEntity.getDeliveryId(), distributionLoadscanEntity.getReservationId(), user); |
|
|
|
|
//包件解托下架
|
|
|
|
|
warehouseUpdownTypeClient.downPackageOrDelTray(packageObj.getOrderPackageCode(), warehouseId, "签收下架解托"); |
|
|
|
|
content = "包件在" + entityWarehouseId.getName() + "由" + loadscanEntity.getSigningUser() + "扫描签收,签收方式:司机未进行装车,由商家端进行签收,配送车次号:" + deliveryListEntity.getTrainNumber() + "预约任务号:" + reservationEntity.getReservationCode(); |
|
|
|
|
content = "包件在" + entityWarehouseId.getName() + "由" + distributionLoadscanEntity.getSigningUser() + "扫描签收,签收方式:司机未进行装车,由商家端进行签收,配送车次号:" + deliveryListEntity.getTrainNumber() + "预约任务号:" + reservationEntity.getReservationCode(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
@ -7521,7 +7525,6 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
packageObj.setOrderPackageStatus(OrderPackageStatusConstant.yiqianshou.getValue()); |
|
|
|
|
distributionParcelListService.updateById(packageObj); |
|
|
|
|
//下架解托
|
|
|
|
|
Map<String, Object> info = new HashMap<>(); |
|
|
|
|
warehouseUpdownTypeClient.downPackageAndDelTrayAndIsUpdate(packageObj.getOrderPackageCode(), entityWarehouseId.getId(), "扫描装车进行下架、解托", false); |
|
|
|
|
//维护订单
|
|
|
|
|
distributionStockArticleService.maintenanceOrderInfo(stockArticleEntity.getOrderCode(),warehouseId); |
|
|
|
@ -7674,23 +7677,27 @@ public class DistributionDeliveryListServiceImpl extends BaseServiceImpl<Distrib
|
|
|
|
|
private List<JSONObject> handleMallLogJSONObject(BasicdataWarehouseEntity warehouse, Long userId, String orderPackageCode, String content, Integer node) { |
|
|
|
|
List<JSONObject> trunklinePackageTrackLog = new ArrayList<>(); |
|
|
|
|
JSONObject js = new JSONObject(); |
|
|
|
|
R<User> userR = userClient.userInfoById(userId); |
|
|
|
|
User user = userR.getData(); |
|
|
|
|
js.put("tenantId", user.getTenantId()); |
|
|
|
|
js.put("createTime", new Date()); |
|
|
|
|
js.put("createUser", user.getId()); |
|
|
|
|
js.put("updateUser", user.getId()); |
|
|
|
|
js.put("updateTime", new Date()); |
|
|
|
|
js.put("isDeleted", 0); |
|
|
|
|
js.put("status", 1); |
|
|
|
|
js.put("createDept", warehouse.getDepartment()); |
|
|
|
|
js.put("orderPackageCode", orderPackageCode); |
|
|
|
|
js.put("warehouseId", warehouse.getId()); |
|
|
|
|
js.put("warehouseName", warehouse.getName()); |
|
|
|
|
js.put("workNode", node); |
|
|
|
|
js.put("content", content); |
|
|
|
|
js.put("operator", user.getName()); |
|
|
|
|
trunklinePackageTrackLog.add(js); |
|
|
|
|
//查询司机用户
|
|
|
|
|
BasicdataDriverArteryEntity driverArtery = arteryClient.getDriverArteryById(userId); |
|
|
|
|
if (!Func.isEmpty(driverArtery)){ |
|
|
|
|
R<User> userR = userClient.userInfoById(driverArtery.getUserId()); |
|
|
|
|
User user = userR.getData(); |
|
|
|
|
js.put("tenantId", user.getTenantId()); |
|
|
|
|
js.put("createTime", new Date()); |
|
|
|
|
js.put("createUser", user.getId()); |
|
|
|
|
js.put("updateUser", user.getId()); |
|
|
|
|
js.put("updateTime", new Date()); |
|
|
|
|
js.put("isDeleted", 0); |
|
|
|
|
js.put("status", 1); |
|
|
|
|
js.put("createDept", warehouse.getDepartment()); |
|
|
|
|
js.put("orderPackageCode", orderPackageCode); |
|
|
|
|
js.put("warehouseId", warehouse.getId()); |
|
|
|
|
js.put("warehouseName", warehouse.getName()); |
|
|
|
|
js.put("workNode", node); |
|
|
|
|
js.put("content", content); |
|
|
|
|
js.put("operator", user.getName()); |
|
|
|
|
trunklinePackageTrackLog.add(js); |
|
|
|
|
} |
|
|
|
|
return trunklinePackageTrackLog; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|