|
@@ -68,6 +68,7 @@ public class TmsshipUnloadShipResultServiceImpl implements ITmsshipUnloadShipRes
|
|
|
Map<String,Object> mapVal = (Map<String, Object>) map.get("mapVal");
|
|
|
Map<String,Object> unloadMap = (Map<String, Object>) map.get("unloadMap");
|
|
|
BigDecimal downSwimPortId= DataChange.dataToBigDecimal(unloadMap.get("downSwimPortId"));
|
|
|
+ BigDecimal portId= DataChange.dataToBigDecimal(unloadMap.get("portId"));
|
|
|
TmsshipUnloadShipResult tmsshipUnloadShipResult = new TmsshipUnloadShipResult();
|
|
|
BigDecimal resultId = selectMaxId();
|
|
|
BigDecimal orderId = new BigDecimal((Integer) unloadMap.get("orderId"));
|
|
@@ -108,7 +109,7 @@ public class TmsshipUnloadShipResultServiceImpl implements ITmsshipUnloadShipRes
|
|
|
Map<String,Object> tmsshipLoadShipResult = tmsshipLoadShipResults.get(0);
|
|
|
Map<String,Object> mapValue = new HashMap<>();
|
|
|
mapValue.put("batchId",tmsshipLoadShipResult.get("batchId"));
|
|
|
- mapValue.put("portId",downSwimPortId);
|
|
|
+ mapValue.put("portId",portId);
|
|
|
mapValue.put("resultMaterialNumber",tmsshipLoadShipResult.get("resultMaterialNumber"));
|
|
|
wmshboundFeign.addWarehousingResult(mapValue);
|
|
|
|