|
@@ -86,7 +86,7 @@ public class MonthlyReconciliationController extends BaseController {
|
|
List<SysDictData> projectStatus = dictTypeService.selectDictDataByType(Constants.SYS_PROJECT_STATUS);
|
|
List<SysDictData> projectStatus = dictTypeService.selectDictDataByType(Constants.SYS_PROJECT_STATUS);
|
|
if (!ObjectUtils.isEmpty(projectStatus)) {
|
|
if (!ObjectUtils.isEmpty(projectStatus)) {
|
|
List<SysDictData> collect = projectStatus.stream()
|
|
List<SysDictData> collect = projectStatus.stream()
|
|
- .filter(d -> d.getDictValue().equals(dto.getProjectStatus())).collect(Collectors.toList());
|
|
|
|
|
|
+ .filter(d -> d.getDictValue().equals(dto.getProjectStatus().toString())).collect(Collectors.toList());
|
|
if (!ObjectUtils.isEmpty(collect)) {
|
|
if (!ObjectUtils.isEmpty(collect)) {
|
|
dto.setProjectStatusStr(collect.get(0).getDictLabel());
|
|
dto.setProjectStatusStr(collect.get(0).getDictLabel());
|
|
}
|
|
}
|