fix薪资明细报表搜索

This commit is contained in:
钱涛 2024-11-12 15:34:51 +08:00
parent c88c8acf90
commit e42e950905
1 changed files with 2 additions and 1 deletions

View File

@ -237,6 +237,8 @@ public class SalaryStatisticsEmployeeWrapper extends Service {
*/
public Map<String, Object> salaryListSum(SalaryStatisticsEmployeeSalaryQueryParam queryParam) {
Map<String, Object> resultMap = Maps.newHashMap();
Map<String, Object> sumResultMap = Maps.newHashMap();
resultMap.put("sumRow", sumResultMap);
if (StringUtils.isBlank(queryParam.getStartDateStr()) || StringUtils.isBlank(queryParam.getEndDateStr())) {
return resultMap;
}
@ -248,7 +250,6 @@ public class SalaryStatisticsEmployeeWrapper extends Service {
return resultMap;
}
Map<String, Object> sumResultMap = Maps.newHashMap();
List<List<SalaryAcctEmployeePO>> empParts = Lists.partition(employeePOS, 500);