|
|
@@ -242,6 +242,17 @@ if (typeof baseFigureTemplate !== 'undefined') {
|
|
|
}
|
|
|
|
|
|
|
|
|
+if (typeof feeRateObject !== 'undefined') {
|
|
|
+ feeRateObject.feeRateSpecialHandle = function (subRate, value) {
|
|
|
+ let result = {};
|
|
|
+ if (subRate.name == "工地转移(km)" && value && value < 50) {//工地转移50km以内按不计算
|
|
|
+ result.valueKey = "不计";
|
|
|
+ result.value = scMathUtil.roundForObj(value, getDecimal("feeRate"));//设置显示的节点值
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
if (typeof module !== 'undefined') {
|
|
|
const defaultDecimal = {
|