|
|
@@ -192,7 +192,11 @@ ProjectsDAO.prototype.updateUserProjects = async function (userId, compilationId
|
|
|
let assign = {
|
|
|
valuationType: data.updateData.property.valuationType === ValuationType.BUDGET ? '预算' : '工程量清单',
|
|
|
engineering: data.updateData.property.engineeringName,
|
|
|
- feeStandard: data.updateData.property.feeStandardName
|
|
|
+ feeStandard: data.updateData.property.feeStandardName,
|
|
|
+ // 新建分段文件时,默认将“工程特征”-“单项工程名称”、“编制范围”填写分段文件的名称
|
|
|
+ // 为了防止用户漏填,导出电子招标文件时,有数据
|
|
|
+ compilationScope: data.updateData.name,
|
|
|
+ singleProjName: data.updateData.name,
|
|
|
};
|
|
|
data.updateData.property.projectFeature = await pmFacade.getProjectFeature(data.updateData.property.featureLibID, assign);
|
|
|
}
|