diff --git a/IRaCIS.Core.API/wwwroot/Template/Payment Summary.xlsx b/IRaCIS.Core.API/wwwroot/Template/Payment Summary.xlsx index 453243d..821b38d 100644 Binary files a/IRaCIS.Core.API/wwwroot/Template/Payment Summary.xlsx and b/IRaCIS.Core.API/wwwroot/Template/Payment Summary.xlsx differ diff --git a/IRaCIS.Core.Application.Contracts/Financial/DTO/PaymentViewModel.cs b/IRaCIS.Core.Application.Contracts/Financial/DTO/PaymentViewModel.cs index 59ea2ef..21f34e9 100644 --- a/IRaCIS.Core.Application.Contracts/Financial/DTO/PaymentViewModel.cs +++ b/IRaCIS.Core.Application.Contracts/Financial/DTO/PaymentViewModel.cs @@ -64,6 +64,14 @@ namespace IRaCIS.Application.ViewModels public decimal TotalPaymentUSD { get; set; } public PaymentMethod PaymentMethod { get; set; } + + public string Paymethod + { + get + { + return PaymentMethod == PaymentMethod.CloudPayment ? "云账户" : "Direct"; + } + } } public class PaymentCommand