|
@@ -1714,8 +1714,9 @@ class CalcProgram {
|
|
|
treeNode.data.programID = null;
|
|
|
treeNode.changed = true;
|
|
|
}
|
|
|
-
|
|
|
- let f = treeNode.data.feeRate ? treeNode.data.feeRate : 100;
|
|
|
+ let f = 100;
|
|
|
+ if (treeNode.data.feeRate || treeNode.data.feeRate == 0)
|
|
|
+ f = treeNode.data.feeRate;
|
|
|
let b = treeNode.data.calcBaseValue ? treeNode.data.calcBaseValue : 0;
|
|
|
let tb = treeNode.data.tenderCalcBaseValue ? treeNode.data.tenderCalcBaseValue : 0;
|
|
|
let q = nQ ? nQ : 1;
|