|
|
@@ -184,6 +184,7 @@ public class WorkerController {
|
|
|
WorkCycle workCycle = workCycleService.getById(restInfo.getCycleId());
|
|
|
if (workCycle != null) {
|
|
|
restInfo.setCarNumber(workCycle.getCarNumber());
|
|
|
+ restInfo.setTrailerNumber(workCycle.getTrailerNumber());
|
|
|
restInfo.setOrgId(workCycle.getOrgId());
|
|
|
restInfo.setOrgName(workCycle.getOrgName());
|
|
|
restInfo.setTruckId(workCycle.getTruckId());
|
|
|
@@ -217,6 +218,7 @@ public class WorkerController {
|
|
|
WorkCycle workCycle = workCycleService.getById(truckRepairInfo.getCycleId());
|
|
|
if (workCycle != null) {
|
|
|
truckRepairInfo.setCarNumber(workCycle.getCarNumber());
|
|
|
+ truckRepairInfo.setTrailerNumber(workCycle.getTrailerNumber());
|
|
|
truckRepairInfo.setOrgId(workCycle.getOrgId());
|
|
|
truckRepairInfo.setOrgName(workCycle.getOrgName());
|
|
|
truckRepairInfo.setTruckId(workCycle.getTruckId());
|
|
|
@@ -268,6 +270,7 @@ public class WorkerController {
|
|
|
truckCheckInfo.setOrgName(workCycle.getOrgName());
|
|
|
truckCheckInfo.setOrgShortName(workCycle.getOrgShortName());
|
|
|
truckCheckInfo.setCarNumber(workCycle.getCarNumber());
|
|
|
+ truckCheckInfo.setTrailerNumber(workCycle.getTrailerNumber());
|
|
|
truckCheckInfo.setCreater(userId);
|
|
|
truckCheckInfo.setCreaterName(utf8Name);
|
|
|
truckCheckInfo.setCreateDate(LocalDateTime.now());
|