|
@@ -58,6 +58,7 @@ import tk.mybatis.mapper.weekend.Weekend;
|
|
|
import tk.mybatis.mapper.weekend.WeekendCriteria;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.time.LocalDate;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.time.LocalTime;
|
|
@@ -461,6 +462,7 @@ public class CheckStandardServiceImpl extends BaseServiceImpl<CheckStandardMappe
|
|
|
info.setCheckUserId(sbInfo.getRepairUser());
|
|
|
info.setCheckUserType(2);
|
|
|
}
|
|
|
+ info.setIsGet(new BigDecimal(0));
|
|
|
String selectMaxNo = mapper.selectMaxNo();
|
|
|
if(StringUtils.isBlank(selectMaxNo)){
|
|
|
info.setNo("00001");
|
|
@@ -469,6 +471,7 @@ public class CheckStandardServiceImpl extends BaseServiceImpl<CheckStandardMappe
|
|
|
int count = Integer.valueOf(newStr) + 1;
|
|
|
String str1 = String.format("%05d", count);
|
|
|
info.setNo(str1);
|
|
|
+ info.setName("系统导入标准"+str1);
|
|
|
}
|
|
|
info.setId(IdGeneratorUtils.getObjectId());
|
|
|
checkStandardList.add(info);
|