master
parent
4d426ef94a
commit
32ce9f938f
|
@ -1319,10 +1319,10 @@ namespace IRaCIS.Application.Services
|
||||||
YearMonth = item.YearMonth,
|
YearMonth = item.YearMonth,
|
||||||
NextYearMonth = DateTime.Parse(item.YearMonth + "-01").AddMonths(1).ToString("yyyy-MM"),
|
NextYearMonth = DateTime.Parse(item.YearMonth + "-01").AddMonths(1).ToString("yyyy-MM"),
|
||||||
PaymentCNY = item.PaymentCNY,
|
PaymentCNY = item.PaymentCNY,
|
||||||
TaxCNY = item.PaymentCNY*(decimal)0.1,
|
TaxCNY = decimal.Round(item.PaymentCNY*(decimal)0.1,2),
|
||||||
ActuallyPaidCNY = item.PaymentCNY * (decimal)0.9,
|
ActuallyPaidCNY = item.PaymentCNY - decimal.Round((item.PaymentCNY * (decimal)0.1),2) ,
|
||||||
BankTransferCNY = item.PaymentCNY * (decimal)0.9,
|
BankTransferCNY = item.PaymentCNY - decimal.Round((item.PaymentCNY * (decimal)0.1),2),
|
||||||
PlatformFee= item.PaymentCNY * (decimal)0.9*(decimal)0.065,
|
PlatformFee= (item.PaymentCNY - decimal.Round(item.PaymentCNY * (decimal)0.1,2)) *(decimal)0.065,
|
||||||
Bank = item.Bank,
|
Bank = item.Bank,
|
||||||
AccountNumber = item.AccountNumber,
|
AccountNumber = item.AccountNumber,
|
||||||
Phone = item.Phone,
|
Phone = item.Phone,
|
||||||
|
|
Loading…
Reference in New Issue