|
|
|
@ -1074,25 +1074,27 @@ public class TrunklineCarsLoadServiceImpl extends BaseServiceImpl<TrunklineCarsL
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Long carsLoadLineId = carsLoadLineDTO.getId(); |
|
|
|
|
if(1 == updateType){ |
|
|
|
|
TrunklineCarsLoadLineEntity loadLineEntity = trunklineCarsLoadLineService.getById(carsLoadLineId); |
|
|
|
|
loadLineEntity.setSort(sort); |
|
|
|
|
trunklineCarsLoadLineService.updateById(loadLineEntity); |
|
|
|
|
}else if(2 == updateType){ |
|
|
|
|
TrunklineCarsLoadLineEntity carsLoadLineEntity = new TrunklineCarsLoadLineEntity(); |
|
|
|
|
BeanUtil.copy(carsLoadLineDTO,carsLoadLineEntity); |
|
|
|
|
carsLoadLineEntity.setId(null); |
|
|
|
|
carsLoadLineEntity.setLoadId(loadId); |
|
|
|
|
carsLoadLineEntity.setNodeStatus("0"); |
|
|
|
|
if(sort == 1){ |
|
|
|
|
carsLoadLineEntity.setNodeStatus("10"); |
|
|
|
|
if(!Objects.isNull(updateType)){ |
|
|
|
|
if(1 == updateType){ |
|
|
|
|
TrunklineCarsLoadLineEntity loadLineEntity = trunklineCarsLoadLineService.getById(carsLoadLineId); |
|
|
|
|
loadLineEntity.setSort(sort); |
|
|
|
|
trunklineCarsLoadLineService.updateById(loadLineEntity); |
|
|
|
|
}else if(2 == updateType){ |
|
|
|
|
TrunklineCarsLoadLineEntity carsLoadLineEntity = new TrunklineCarsLoadLineEntity(); |
|
|
|
|
BeanUtil.copy(carsLoadLineDTO,carsLoadLineEntity); |
|
|
|
|
carsLoadLineEntity.setId(null); |
|
|
|
|
carsLoadLineEntity.setLoadId(loadId); |
|
|
|
|
carsLoadLineEntity.setNodeStatus("0"); |
|
|
|
|
if(sort == 1){ |
|
|
|
|
carsLoadLineEntity.setNodeStatus("10"); |
|
|
|
|
} |
|
|
|
|
carsLoadLineEntity.setSignStatus("0"); |
|
|
|
|
carsLoadLineEntity.setUnloadStatus("0"); |
|
|
|
|
carsLoadLineEntity.setLoadingStatus("0"); |
|
|
|
|
carsLoadLineEntity.setIsTermination("0"); |
|
|
|
|
trunklineCarsLoadLineService.save(carsLoadLineEntity); |
|
|
|
|
carsLoadLineId = carsLoadLineEntity.getId(); |
|
|
|
|
} |
|
|
|
|
carsLoadLineEntity.setSignStatus("0"); |
|
|
|
|
carsLoadLineEntity.setUnloadStatus("0"); |
|
|
|
|
carsLoadLineEntity.setLoadingStatus("0"); |
|
|
|
|
carsLoadLineEntity.setIsTermination("0"); |
|
|
|
|
trunklineCarsLoadLineService.save(carsLoadLineEntity); |
|
|
|
|
carsLoadLineId = carsLoadLineEntity.getId(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<TrunklineCarsOrderDTO> addList = carsLoadLineDTO.getAddList(); |
|
|
|
|