|
|
@@ -583,6 +583,12 @@ let gljUtil = {
|
|
|
quantity = scMathUtil.roundForObj(quantity + i.quantity,decimal.process);
|
|
|
}
|
|
|
data.quantity = gljUtil.calUnitWidthCoe(quantity,false,engineerFeatures,_,scMathUtil);
|
|
|
+ //主要工程量指标另外加了一个系数
|
|
|
+ let f = _.find(engineerFeatures,{index:true});
|
|
|
+ if(f){
|
|
|
+ let quantityCoe = gljUtil.isDef(f.quantityCoe)?quantityCoe:1;
|
|
|
+ data.quantity = scMathUtil.roundForObj(data.quantity*quantityCoe,3);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
return datas;
|