|
|
@@ -1,9 +1,9 @@
|
|
|
// 清单基数
|
|
|
const progression = [
|
|
|
- '施工场地建设费',
|
|
|
- '养护管理单位项目管理费',
|
|
|
- '项目信息化费',
|
|
|
- '工程监理费',
|
|
|
+ '施工场地建设费',
|
|
|
+ '养护管理单位项目管理费',
|
|
|
+ '项目信息化费',
|
|
|
+ '工程监理费',
|
|
|
'设计文件审查费(一阶段)',
|
|
|
'设计文件审查费(二阶段)',
|
|
|
'采用一阶段设计的工程设计费',
|
|
|
@@ -16,7 +16,7 @@ const progression = [
|
|
|
const deficiency = {
|
|
|
'设计文件审查费(一阶段)': 4000,
|
|
|
'设计文件审查费(二阶段)': 4000,
|
|
|
-};
|
|
|
+};
|
|
|
if (typeof baseFigureMap !== 'undefined') {
|
|
|
const { fixedFlag } = commonConstants;
|
|
|
const budgetMap = {
|
|
|
@@ -371,4 +371,69 @@ if (typeof baseFigureTemplate !== 'undefined') {
|
|
|
return projectObj.project.calcProgram.getTotalFee([oneToSeven], deductNodes, fullFeeField).toDecimal(decimalObj.bills.totalPrice);
|
|
|
}
|
|
|
};
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+function overwriteRationCalcBases() {
|
|
|
+ if (typeof rationCalcBases == 'undefined') return;
|
|
|
+ for (let key in rationCalcBases) delete rationCalcBases[key];
|
|
|
+
|
|
|
+ rationCalcBases['人工费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, [gljType.LABOUR], priceTypes.ptMarketPrice, isTender);
|
|
|
+ };
|
|
|
+ rationCalcBases['材料费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, baseMaterialTypes, priceTypes.ptMarketPrice, isTender);
|
|
|
+ };
|
|
|
+ rationCalcBases['施工机械使用费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, baseMachineTypes, priceTypes.ptMarketPrice, isTender);
|
|
|
+ };
|
|
|
+ rationCalcBases['设备购置费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, [gljType.EQUIPMENT], priceTypes.ptMarketPrice, isTender);
|
|
|
+ };
|
|
|
+
|
|
|
+ rationCalcBases['定额人工费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, [gljType.LABOUR], priceTypes.ptBasePrice, isTender);
|
|
|
+ };
|
|
|
+ rationCalcBases['定额材料费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, baseMaterialTypes, priceTypes.ptBasePrice, isTender);
|
|
|
+ };
|
|
|
+ rationCalcBases['定额施工机械使用费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, baseMachineTypes, priceTypes.ptBasePrice, isTender);
|
|
|
+ };
|
|
|
+ rationCalcBases['定额商品砼费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, [gljType.COMMERCIAL_CONCRETE, gljType.COMMERCIAL_MORTAR], priceTypes.ptBasePrice, isTender);
|
|
|
+ };
|
|
|
+ rationCalcBases['定额设备购置费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, [gljType.EQUIPMENT], priceTypes.ptBasePrice, isTender);
|
|
|
+ };
|
|
|
+ rationCalcBases['定额外购砼构件费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, [gljType.PURCHASE_COMPONENT], priceTypes.ptBasePrice, isTender);
|
|
|
+ };
|
|
|
+ rationCalcBases['定额绿化苗木费'] = function (node, isTender) {
|
|
|
+ return calcTools.rationBaseFee(node, [gljType.GREEN_SEEDLING], priceTypes.ptBasePrice, isTender);
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+(function overwriteFeeTypes() {
|
|
|
+ if (typeof cpFeeTypes == 'undefined') return;
|
|
|
+ cpFeeTypes = [
|
|
|
+ { type: 'marketDirect', name: '直接费' },
|
|
|
+ { type: 'marketLabour', name: '人工费' },
|
|
|
+ { type: 'marketMaterial', name: '材料费' },
|
|
|
+ { type: 'marketMachine', name: '施工机械使用费' },
|
|
|
+ { type: 'marketEquipment', name: '设备购置费' },
|
|
|
+
|
|
|
+ { type: 'labour', name: '定额人工费' },
|
|
|
+ { type: 'material', name: '定额材料费' },
|
|
|
+ { type: 'machine', name: '定额施工机械使用费' },
|
|
|
+ { type: 'equipment', name: '定额设备购置费' },
|
|
|
+ { type: 'direct', name: '定额直接费' },
|
|
|
+
|
|
|
+ { type: 'measure', name: '措施费' },
|
|
|
+ { type: 'manage', name: '企业管理费' },
|
|
|
+ { type: 'force', name: '规费' },
|
|
|
+ { type: 'profit', name: '利润' },
|
|
|
+ { type: 'tax', name: '税金' },
|
|
|
+ { type: 'common', name: '建安费' },
|
|
|
+ { type: 'rationCommon', name: '定额建安费' }
|
|
|
+ ];
|
|
|
+})();
|