|
|
@@ -222,10 +222,11 @@ module.exports = {
|
|
|
}
|
|
|
projInfo.engineeringInfo = engineeringInfo;
|
|
|
}
|
|
|
- //读取建设项目的基本信息
|
|
|
- let basicInfo = await ProjectsData.getBasicInfo(projectID);
|
|
|
- if(basicInfo !== null){
|
|
|
- projInfo.property.basicInformation = basicInfo;
|
|
|
+ // 获取建设项目相关信息
|
|
|
+ const constructionProject = await pm_facade.getConstructionProject(projectID);
|
|
|
+ if (constructionProject) {
|
|
|
+ projInfo.property.basicInformation = constructionProject.property && constructionProject.property.basicInformation || null;
|
|
|
+ projInfo.property.projectValuationType = constructionProject.property && constructionProject.property.valuationType || null;
|
|
|
}
|
|
|
//获取单位工程完整目录结构
|
|
|
let fullPath = await pm_facade.getFullPath(projectID);
|