|
@ -754,6 +754,7 @@ namespace EasyBL.WEBAPP.SYS |
|
|
|
|
|
|
|
|
FileMaintain_QryService fm_qry = new FileMaintain_QryService(); |
|
|
FileMaintain_QryService fm_qry = new FileMaintain_QryService(); |
|
|
var ImageDic = fm_qry.FindAllImageURLAsDic(""); |
|
|
var ImageDic = fm_qry.FindAllImageURLAsDic(""); |
|
|
|
|
|
var AllFileDic = fm_qry.FindAllByIDsAsDictionary(""); |
|
|
|
|
|
|
|
|
PaymentMaintain_QryService pm_qry = new PaymentMaintain_QryService(); |
|
|
PaymentMaintain_QryService pm_qry = new PaymentMaintain_QryService(); |
|
|
var PaymentDic = pm_qry.FindAllByIDsAsDictionary("", sBookingID); |
|
|
var PaymentDic = pm_qry.FindAllByIDsAsDictionary("", sBookingID); |
|
@ -891,10 +892,13 @@ namespace EasyBL.WEBAPP.SYS |
|
|
if (ImageDic.ContainsKey(Payment.Remittance)) |
|
|
if (ImageDic.ContainsKey(Payment.Remittance)) |
|
|
{ |
|
|
{ |
|
|
rsPayment.Remittance = ImageDic[Payment.Remittance]; |
|
|
rsPayment.Remittance = ImageDic[Payment.Remittance]; |
|
|
|
|
|
rsPayment.RemittanceFileName = AllFileDic.Values.Where(w => w.ParentID == Payment.Remittance).Select(s => s.FileName).FirstOrDefault(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(Payment.CurrencyID)) { |
|
|
if (!string.IsNullOrEmpty(Payment.CurrencyID)) { |
|
|
CurrencyDTO PaymentCurrency = new CurrencyDTO(); |
|
|
CurrencyDTO PaymentCurrency = new CurrencyDTO(); |
|
|
|
|
|
|
|
|