|
@@ -156,7 +156,7 @@ public class SupplementWorkServiceImpl implements SupplementWorkService {
|
|
|
workScheduleAttendance.setSupplementWorkPersonId(supplementWorkPerson.getId());
|
|
|
workScheduleAttendanceService.update(workScheduleAttendance);
|
|
|
|
|
|
- if (draft == "1") {
|
|
|
+ if ("1".equals(draft)) {
|
|
|
//创建审核流程id
|
|
|
String procinstId = procinstService.addProcinst(supplementWork.getId(), null, "补卡", formId, personPopedom, null);
|
|
|
|
|
@@ -256,7 +256,7 @@ public class SupplementWorkServiceImpl implements SupplementWorkService {
|
|
|
insert(supplementWork);
|
|
|
}
|
|
|
|
|
|
- if (draft == "1") {
|
|
|
+ if ("1".equals(draft)) {
|
|
|
//创建审核流程id
|
|
|
String procinstId = procinstService.addProcinst(supplementWork.getId(), null, "补卡", formId, personPopedom, null);
|
|
|
|