Commit ccdfedf7 authored by 赵啸非's avatar 赵啸非

考勤异常添加绩效考核

parent bbf1b434
...@@ -147,12 +147,14 @@ public class AttendanceRecordErrorController extends BaseCRUDJsonBodyMappingCont ...@@ -147,12 +147,14 @@ public class AttendanceRecordErrorController extends BaseCRUDJsonBodyMappingCont
updateEntity.setGoOffDateTime(recordErrorEntity.getGoOffDateTime()); updateEntity.setGoOffDateTime(recordErrorEntity.getGoOffDateTime());
updateEntity.setProcessStatus(entity.getProcessStatus()); updateEntity.setProcessStatus(entity.getProcessStatus());
updateEntity.setProcessResult(entity.getProcessResult()); updateEntity.setProcessResult(entity.getProcessResult());
updateEntity.setStaffId(recordErrorEntity.getStaffId());
updateEntity.setErrorStatus(entity.getErrorStatus()); updateEntity.setErrorStatus(entity.getErrorStatus());
updateEntity.setOpertor(context.getUser().getRealName()); updateEntity.setOpertor(context.getUser().getRealName());
updateEntity.setOperDateTime(new Date()); updateEntity.setOperDateTime(new Date());
updateEntity.setRemark(entity.getRemark()); updateEntity.setRemark(entity.getRemark());
updateEntity.setUpdateTime(new Date()); updateEntity.setUpdateTime(new Date());
updateEntity.setUpdateUserId(this.getContextUserId(getContext())); updateEntity.setUpdateUserId(this.getContextUserId(getContext()));
updateEntity.setDuration(entity.getDuration());
this.service.update(updateEntity, getContext()); this.service.update(updateEntity, getContext());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment