diff --git a/IRaCIS.Core.Application/Financial/FinancialService.cs b/IRaCIS.Core.Application/Financial/FinancialService.cs index f9a6e2d..62d4933 100644 --- a/IRaCIS.Core.Application/Financial/FinancialService.cs +++ b/IRaCIS.Core.Application/Financial/FinancialService.cs @@ -1286,9 +1286,9 @@ namespace IRaCIS.Application.Services NextYearMonth = DateTime.Parse(item.YearMonth + "-01").AddMonths(1).ToString("yyyy-MM"), PaymentCNY = item.PaymentCNY, TaxCNY = item.PaymentCNY*(decimal)0.1, - ActuallyPaidCNY = item.ActuallyPaidCNY* (decimal)0.9, - BankTransferCNY = item.BankTransferCNY * (decimal)0.9, - PlatformFee= item.ActuallyPaidCNY * (decimal)0.9*(decimal)0.065, + ActuallyPaidCNY = item.PaymentCNY * (decimal)0.9, + BankTransferCNY = item.PaymentCNY * (decimal)0.9, + PlatformFee= item.PaymentCNY * (decimal)0.9*(decimal)0.065, Bank = item.Bank, AccountNumber = item.AccountNumber, Phone = item.Phone,