|
@@ -124,6 +124,16 @@ public class MonthlyReconciliationController extends BaseController {
|
|
|
SysDeptResponseVo sysDept = (SysDeptResponseVo) stringObjectMap.get("sysDept");
|
|
|
vo.setPurchaseDeptName(sysDept.getDeptName());
|
|
|
}
|
|
|
+
|
|
|
+ // 采购服务站名称
|
|
|
+ List<SysDictData> data = dictTypeService.selectDictDataByType("purchase_services");
|
|
|
+ if (!ObjectUtils.isEmpty(data)) {
|
|
|
+ List<SysDictData> collect = data.stream()
|
|
|
+ .filter(d -> d.getDictValue().equals(vo.getPurchaseServices())).collect(Collectors.toList());
|
|
|
+ if(!ObjectUtils.isEmpty(collect)){
|
|
|
+ vo.setPurchaseServicesName(collect.get(0).getDictLabel());
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
return success(vo);
|