调薪说明
This commit is contained in:
parent
5f9a7af0fa
commit
41c56b1bd4
|
|
@ -854,7 +854,7 @@ public class SalaryArchiveExcelBO extends Service {
|
|||
.adjustReason(StringUtils.isEmpty(salaryItemAdjustReason) ? SalaryArchiveItemAdjustReasonEnum.INIT.getValue() : salaryItemAdjustReason)
|
||||
.salaryItemId(salaryItemId)
|
||||
.itemValue(cellVal)
|
||||
.description("")
|
||||
.description(importHandleParam.getDescription())
|
||||
.operator(importHandleParam.getCurrentEmployeeId())
|
||||
.operateTime(importHandleParam.getNowTime())
|
||||
.createTime(importHandleParam.getNowTime())
|
||||
|
|
|
|||
|
|
@ -62,6 +62,11 @@ public class SalaryArchiveImportHandleParam {
|
|||
*/
|
||||
boolean isProcess;
|
||||
|
||||
/**
|
||||
* 说明
|
||||
*/
|
||||
String description;
|
||||
|
||||
//*****************************************************************/
|
||||
|
||||
Long currentEmployeeId;
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ public class SalaryArchiveActionAPI {
|
|||
}
|
||||
|
||||
@POST
|
||||
@Path("/salaryArchiveId")
|
||||
@Path("/salaryArchiveInfo")
|
||||
@Produces(MediaType.APPLICATION_JSON)
|
||||
public String adjustmentSalaryArchive(@Context HttpServletRequest request, @Context HttpServletResponse response, @RequestBody SalaryArchiveQueryParam param) {
|
||||
User user = HrmUserVarify.getUser(request, response);
|
||||
|
|
|
|||
|
|
@ -704,6 +704,7 @@ public class SalaryArchiveExcelServiceImpl extends Service implements SalaryArch
|
|||
|
||||
return SalaryArchiveImportHandleParam.builder()
|
||||
.isProcess(param.isProcess())
|
||||
.description(param.getDescription())
|
||||
.listType(listType)
|
||||
.importType(importType)
|
||||
.currentEmployeeId((long) user.getUID())
|
||||
|
|
|
|||
Loading…
Reference in New Issue