Merge branch 'release/2.15.2.2409.01' into feature/权限
This commit is contained in:
commit
2ada09f16c
|
|
@ -63,9 +63,9 @@ public class SalaryAcctEmployeeBO {
|
|||
.employeeName(simpleEmployee.getUsername())
|
||||
.taxAgentId(e.getTaxAgentId())
|
||||
.taxAgentName(taxAgentNameMap.getOrDefault(e.getTaxAgentId(), StringUtils.EMPTY))
|
||||
.departmentId(simpleEmployee.getDepartmentId())
|
||||
.departmentName(simpleEmployee.getDepartmentName())
|
||||
.status(UserStatusEnum.getDefaultLabelByValue(NumberUtils.toInt(simpleEmployee.getStatus())))
|
||||
.departmentId(e.getDepartmentId())
|
||||
.departmentName(e.getDepartmentName())
|
||||
.status(UserStatusEnum.getDefaultLabelByValue(NumberUtils.toInt(e.getStatus())))
|
||||
.mobile(simpleEmployee.getMobile())
|
||||
.jobNum(simpleEmployee.getWorkcode())
|
||||
.hireDate(simpleEmployee.getCompanystartdate())
|
||||
|
|
|
|||
|
|
@ -611,7 +611,7 @@ public class SalaryStatisticsReportServiceImpl extends Service implements Salary
|
|||
DataCollectionEmployee emp = employeeMap.get(se.getEmployeeId());
|
||||
resultMap.put("id", se.getId().toString());
|
||||
resultMap.put("userName", emp == null ? "" : emp.getUsername());
|
||||
resultMap.put("departmentName", emp == null ? "" : emp.getDepartmentName());
|
||||
resultMap.put("departmentName", se.getDepartmentName());
|
||||
resultMap.put("salaryMonth", SalaryDateUtil.getFormatYearMonth(se.getSalaryMonth()));
|
||||
resultMap.put("taxAgent", taxAgentMap.get(se.getTaxAgentId()));
|
||||
resultMap.put("salarySob", SalarySobMap.get(se.getSalarySobId()));
|
||||
|
|
|
|||
|
|
@ -18,7 +18,8 @@ public enum OrderRuleEnum implements BaseEnum<String> {
|
|||
LASTNAME("e.lastName", "人员名称", 1),
|
||||
DEPTNAME("d.departmentname", "部门名称", 1),
|
||||
SUBCOMNAME("c.subcompanyname", "分部名称", 1),
|
||||
SHOWORDEROFDEPTTREE("d.showOrderOfTree", "组织", 1);
|
||||
SHOWORDEROFDEPTTREE("d.showOrderOfTree", "组织", 1),
|
||||
WORKCODE("e.workcode", "工号", 1);
|
||||
|
||||
private String value;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue