|
@@ -178,7 +178,7 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
{
|
|
|
var countryData = visaCountryDatas.Find(it => it.Id == item.CountryVisaFeeId);
|
|
|
|
|
|
- decimal visaFeeTotal = countryData?.VisaPrice ?? 0.00M + item.AgencyFee + item.OtherFee;
|
|
|
+ decimal visaFeeTotal = Convert.ToDecimal( countryData?.VisaPrice ?? 0.00M) + item.AgencyFee + item.OtherFee;
|
|
|
remark += $@"{countryData?.VisaCountry ?? ""}:签证总费用:{visaFeeTotal}元/人 其中(";
|
|
|
if (countryData?.VisaPrice > 0) remark += $@"签证费用:{countryData?.VisaPrice.ToString("#0.00")}元、";
|
|
|
if (item.AgencyFee > 0) remark += $@"代办费:{item.AgencyFee.ToString("#0.00")}元、";
|