|
@@ -2139,7 +2139,8 @@ namespace OASystem.API.Controllers
|
|
|
string.IsNullOrEmpty(payInfo.OtherSideNo) ? "-" : payInfo.OtherSideNo);
|
|
|
|
|
|
|
|
|
- decimal _CNYSubTotalAmount = ((payInfo.DayRate * payInfo.PayMoney) / 100) * payInfo.PayPercentage;//此次付款金额
|
|
|
+ decimal _PaymentAmount = (payInfo.PayMoney / 100) * payInfo.PayPercentage;//此次付款金额
|
|
|
+ decimal _CNYSubTotalAmount = _PaymentAmount * payInfo.DayRate;//此次付款金额
|
|
|
_CNYSubTotalAmount = Convert.ToDecimal(_CNYSubTotalAmount.ToString("#0.00"));
|
|
|
var childInfo = new Group_DailyFeePaymentContentInfolView()
|
|
|
{
|
|
@@ -2154,7 +2155,7 @@ namespace OASystem.API.Controllers
|
|
|
PriceName = priName,
|
|
|
ModuleName = setDatas.Find(it => it.Id == payInfo.CTable)?.Name ?? "",
|
|
|
PayCurrCode = setDatas.Find(it => it.Id == payInfo.PaymentCurrency)?.Name ?? "",
|
|
|
- PaymentAmount = payInfo.PayMoney,
|
|
|
+ PaymentAmount = _PaymentAmount,
|
|
|
PayRate = payInfo.DayRate,
|
|
|
CNYSubTotalAmount = _CNYSubTotalAmount
|
|
|
};
|