|
@@ -758,12 +758,16 @@ $('#property_ok').click(function () {
|
|
|
}
|
|
|
//小数位数
|
|
|
let updateDecimal = m_getDecimalData($('input', '#poj-settings-decimal'));
|
|
|
- if(toUpdateDecimal(decimalObj, updateDecimal)){
|
|
|
+ if(toUpdateDecimal(decimalObj, updateDecimal)) {
|
|
|
+ let frChanged = decimalObj.feeRate != updateDecimal.feeRate;
|
|
|
setDecimal(decimalObj, updateDecimal);
|
|
|
+ if (frChanged) {
|
|
|
+ project.calcProgram.compileAllTemps()
|
|
|
+ }
|
|
|
reCalcRations = true;
|
|
|
reCalcBills = true;
|
|
|
properties['property.decimal'] = updateDecimal;
|
|
|
- };
|
|
|
+ }
|
|
|
// 呈现选项
|
|
|
projDisplayView.updateChecking(projectID, properties);
|
|
|
|