去除发放状态中文转换

This commit is contained in:
钱涛 2023-06-07 09:43:54 +08:00
parent d4c8a66fcf
commit 37d9c04a30
1 changed files with 1 additions and 7 deletions

View File

@ -308,13 +308,7 @@ public class SalarySendWrapper extends Service implements SalarySendWrapperProxy
}
PageInfo<SalarySendInfoListDTO> pageInfo = getSalarySendService(user).salarySendInfoListPage(queryParam);
List<SalarySendInfoListDTO> list = pageInfo.getList();
list.forEach(e -> {
// 发放状态
int sendStatus = Integer.parseInt(e.getSendStatus());
e.setSendStatus(SalarySendStatusEnum.getDefaultLabelByValue(sendStatus));
// e.setOperation(SalarySendStatusEnum.getNameByValue(sendStatus));
});
return pageInfo;
}