|
@@ -3,7 +3,6 @@
|
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
let isAH2019 = true;
|
|
let isAH2019 = true;
|
|
|
-const { fixedFlag } = commonConstants;
|
|
|
|
|
function overwriteRationCalcBases() {
|
|
function overwriteRationCalcBases() {
|
|
|
if (typeof rationCalcBases == 'undefined') return;
|
|
if (typeof rationCalcBases == 'undefined') return;
|
|
|
for (let key in rationCalcBases) delete rationCalcBases[key];
|
|
for (let key in rationCalcBases) delete rationCalcBases[key];
|
|
@@ -75,8 +74,8 @@ function overwriteRationCalcBases() {
|
|
|
})();
|
|
})();
|
|
|
|
|
|
|
|
// 清单基数
|
|
// 清单基数
|
|
|
-const progression = [];
|
|
|
|
|
-const deficiency = {};
|
|
|
|
|
|
|
+const progression = ['施工场地建设费', '养护单位管理费', '养护项目信息化费', '工程监理费', '设计文件审查费', '前期工作费'];
|
|
|
|
|
+const deficiency = { '养护项目信息化费': 20000, '工程监理费': 20000, '前期工作费': 30000 };
|
|
|
if (typeof baseFigureMap !== 'undefined') {
|
|
if (typeof baseFigureMap !== 'undefined') {
|
|
|
const { fixedFlag } = commonConstants;
|
|
const { fixedFlag } = commonConstants;
|
|
|
const budgetMap = {
|
|
const budgetMap = {
|
|
@@ -222,15 +221,6 @@ if (typeof baseFigureMap !== 'undefined') {
|
|
|
pick: true
|
|
pick: true
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
- for (const name in budgetMap) {
|
|
|
|
|
- const item = budgetMap[name];
|
|
|
|
|
- if (item.isProgressive) {
|
|
|
|
|
- progression.push(item.progressiveName || name);
|
|
|
|
|
- }
|
|
|
|
|
- if (item.deficiency) {
|
|
|
|
|
- deficiency[item.progressiveName || name] = item.deficiency;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
baseFigureMap.budget = budgetMap;
|
|
baseFigureMap.budget = budgetMap;
|
|
|
baseFigureMap.boq = boqMap;
|
|
baseFigureMap.boq = boqMap;
|
|
|
}
|
|
}
|