|
|
|
@ -1037,6 +1037,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
//修改已卸车数据为确认状态
|
|
|
|
|
trunklineCarsLoadScanService.updateUnloadCheckByLoadIdAndWarehouseId(loadId, warehouseId); |
|
|
|
|
|
|
|
|
|
TrunklineCarsLoadLineEntity updateUnloadStatus = new TrunklineCarsLoadLineEntity(); |
|
|
|
|
WorkNodeEnums node = null; |
|
|
|
|
if (unloadType == 1) { |
|
|
|
|
node = WorkNodeEnums.TRANSFER_WAREHOUSE_UNLOADING; |
|
|
|
@ -1045,10 +1046,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
log.warn("#############unloadByLoadId: 当前节点为终点 loadId={} loadStatus={}", loadId, loadStatus); |
|
|
|
|
throw new CustomerException(400, "当前节点为终点"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
updateUnloadStatus.setId(currentCarsLoadLineEntity.getId()); |
|
|
|
|
updateUnloadStatus.setUnloadStatus("1"); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadStatus("1"); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadUserId(AuthUtil.getUserId()); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadUserName(AuthUtil.getUserName()); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadUserName(AuthUtil.getNickName()); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadDate(new Date()); |
|
|
|
|
trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity); |
|
|
|
|
|
|
|
|
@ -1067,10 +1069,11 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
log.warn("#############unloadByLoadId: 当前节点未到车 nowWarehouseId={} nodeStatus={}", nowWarehouseId, nodeStatus); |
|
|
|
|
throw new CustomerException(400, "当前节点未到车"); |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
updateUnloadStatus.setId(currentCarsLoadLineEntity.getId()); |
|
|
|
|
updateUnloadStatus.setUnloadStatus("1"); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadStatus("2"); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadUserId(AuthUtil.getUserId()); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadUserName(AuthUtil.getUserName()); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadUserName(AuthUtil.getNickName()); |
|
|
|
|
currentCarsLoadLineEntity.setUnloadDate(new Date()); |
|
|
|
|
trunklineCarsLoadLineService.updateById(currentCarsLoadLineEntity); |
|
|
|
|
carsLoadEntity.setLoadStatus("80"); |
|
|
|
@ -1237,6 +1240,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error("卸车确认推送工厂失败", e); |
|
|
|
|
} |
|
|
|
|
trunklineCarsLoadLineService.updateById(updateUnloadStatus); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3597,7 +3601,7 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
return R.fail(405,"托盘信息不存在"); |
|
|
|
|
} |
|
|
|
|
String palletName = basicdataTrayEntity.getPalletName(); |
|
|
|
|
|
|
|
|
|
String audio = null; |
|
|
|
|
String orders = null; |
|
|
|
|
if (0 == isZero) { |
|
|
|
|
unloadPackage(loadId, orderPackageCode, warehouseId, 1, "卸分一体 卸车", incomingType,palletName,trayCode); |
|
|
|
@ -3611,6 +3615,12 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
if (code != 200) { |
|
|
|
|
log.warn("##########findNextNodeList: 打托失败 trayCode={} orderPackageCode={} msg={}", trayCode, orderPackageCode, r.getMsg()); |
|
|
|
|
return R.fail(code, r.getMsg()); |
|
|
|
|
}else{ |
|
|
|
|
String data = (String) r.getData(); |
|
|
|
|
if(StringUtil.isNotBlank(data)){ |
|
|
|
|
JSONObject jsonObject = JSONObject.parseObject(data); |
|
|
|
|
audio = jsonObject.getString("audio"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
DistributionParcelListEntity parcelListEntity = distributionParcelListClient.findByPacketBarCodeAndWarehouseId(orderPackageCode, warehouseId); |
|
|
|
|
orders = parcelListEntity.getOrderCode(); |
|
|
|
@ -3634,8 +3644,14 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
orders = orderCode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("orders", orders); |
|
|
|
|
|
|
|
|
|
if(StringUtil.isNotBlank(audio)){ |
|
|
|
|
return Resp.scanData("串货", audio,map); |
|
|
|
|
} |
|
|
|
|
WarehouseTrayTypeEntity trayTypeEntity = trayTypeClient.findTrayTypeEntity(trayCode); |
|
|
|
|
if(!Objects.isNull(trayTypeEntity)){ |
|
|
|
|
Integer totalNum = trayTypeEntity.getTotalNum(); |
|
|
|
|