1 год назад
Родитель
Сommit
6993f2872b

+ 1 - 1
platform-service/src/main/java/com/platform/service/check/impl/CheckJobServiceImpl.java

@@ -1404,7 +1404,7 @@ public class CheckJobServiceImpl extends BaseServiceImpl<CheckJobMapper, CheckJo
             nextCheckJob.setCreatedTime(LocalDateTime.now());
             nextCheckJob.setSbId(checkStandard.getSbId());
             nextCheckJob.setReceiveOvertime(false);
-            nextCheckJob.setCheckUserId(checkJob.getCheckUserId());
+            nextCheckJob.setCheckUserId(checkStandard.getCheckUserId());
             nextCheckJob.setPartId(checkStandard.getPart());
             nextCheckJob.setStandardId(checkStandard.getId());
             nextCheckJob.setType(checkStandard.getType());

+ 1 - 0
platform-service/src/main/java/com/platform/service/repair/impl/RepairApplicationFormServiceImpl.java

@@ -695,6 +695,7 @@ public class RepairApplicationFormServiceImpl extends BaseServiceImpl<RepairAppl
         applicationForm.setUpdateTime(LocalDateTime.now());
         //applicationForm.setContent(dto.getContent());
         applicationForm.setOutType(dto.getOutType());
+        applicationForm.setCategory(dto.getCategory());
 
         this.saveRepairFile(dto);
         super.modModelByPrimaryKey(applicationForm);