mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
优化欠费缴费 4舍五入问题
This commit is contained in:
parent
e40ba27388
commit
5cf073a395
@ -71,7 +71,9 @@
|
|||||||
$that.owePayFeeOrderInfo.selectPayFeeIds = [];
|
$that.owePayFeeOrderInfo.selectPayFeeIds = [];
|
||||||
$that.owePayFeeOrderInfo.toFixedSign = _fees[0].val;
|
$that.owePayFeeOrderInfo.toFixedSign = _fees[0].val;
|
||||||
$that.owePayFeeOrderInfo.oweFees.forEach(item => {
|
$that.owePayFeeOrderInfo.oweFees.forEach(item => {
|
||||||
item.feePrice = $that._getFixedNum(item.feePrice);
|
//item.feePrice = $that._getFixedNum(item.feePrice);
|
||||||
|
item.receivableAmount = item.feePrice;
|
||||||
|
item.feePrice = item.feeTotalPrice;
|
||||||
$that.owePayFeeOrderInfo.selectPayFeeIds.push(item.feeId);
|
$that.owePayFeeOrderInfo.selectPayFeeIds.push(item.feeId);
|
||||||
|
|
||||||
});
|
});
|
||||||
@ -151,6 +153,7 @@
|
|||||||
feeId: _item,
|
feeId: _item,
|
||||||
startTime: _oweFeeItem.endTime,
|
startTime: _oweFeeItem.endTime,
|
||||||
endTime: _oweFeeItem.deadlineTime,
|
endTime: _oweFeeItem.deadlineTime,
|
||||||
|
receivableAmount: _oweFeeItem.receivableAmount,
|
||||||
receivedAmount: _oweFeeItem.feePrice,
|
receivedAmount: _oweFeeItem.feePrice,
|
||||||
primeRate: $that.owePayFeeOrderInfo.primeRate
|
primeRate: $that.owePayFeeOrderInfo.primeRate
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user