| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**
- * Created by CSL on 2019/09/11. 江西计算程序、基数 等覆盖。
- */
- let isZJ2005 = true;
- // 一般计税取不含税市场价、不含税定额价。简易计税取含税市场价、含税定额价。打开项目时,4个价格根据计税类型只载入其二,所以这里可不作区分。
- function overwriteRationCalcBases (taxType){
- if (typeof rationCalcBases == 'undefined') return;
- for (let key in rationCalcBases) delete rationCalcBases[key];
- // let isJY = taxType == '2';
- 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);
- };
- };
- (function overwriteFeeTypes() {
- if (typeof cpFeeTypes == 'undefined') return;
- cpFeeTypes = [
- {type: 'directWork', name: '直接工程费'},
- {type: 'direct', name: '直接费'},
- {type: 'marketLabour', name: '人工费'},
- {type: 'marketMaterial', name: '材料费'},
- {type: 'marketMachine', name: '施工机械使用费'},
- {type: 'otherDirect', name: '其他直接费'},
- {type: 'local', name: '现场经费'},
- {type: 'indirect', name: '间接费'},
- {type: 'profit', name: '计划利润'},
- {type: 'tax', name: '税金'},
- {type: 'composite', name: '年度经费综合费'},
- {type: 'common', name: '养护工程费'}
- ];
- })();
|