diff --git a/CustomerOnlineV2/CustomerOnlineV2.Repository/Repository/TransactionRepository/TransactionRepository.cs b/CustomerOnlineV2/CustomerOnlineV2.Repository/Repository/TransactionRepository/TransactionRepository.cs index b16fe1b..cfd3a16 100644 --- a/CustomerOnlineV2/CustomerOnlineV2.Repository/Repository/TransactionRepository/TransactionRepository.cs +++ b/CustomerOnlineV2/CustomerOnlineV2.Repository/Repository/TransactionRepository/TransactionRepository.cs @@ -355,7 +355,7 @@ namespace CustomerOnlineV2.Repository.Repository.TransactionRepository //User = Convert.ToString(item["userId"]), TranId = Convert.ToString(item["tranId"]), ControlNo = Convert.ToString(item["controlNo"]), - CollAmt = Convert.ToString(item["collAmount"]), + CollAmt = Utilities.ShowDecimal(Convert.ToString(item["collAmount"])), PayoutAmt = Utilities.ShowDecimal(Convert.ToString(item["payoutAmt"])), PCurr = Convert.ToString(item["pCurr"]), CollCurr = Convert.ToString(item["collCurr"]), diff --git a/CustomerOnlineV2/CustomerOnlineV2/Views/Transaction/SendMoney.cshtml b/CustomerOnlineV2/CustomerOnlineV2/Views/Transaction/SendMoney.cshtml index 3ec4503..8a79d98 100644 --- a/CustomerOnlineV2/CustomerOnlineV2/Views/Transaction/SendMoney.cshtml +++ b/CustomerOnlineV2/CustomerOnlineV2/Views/Transaction/SendMoney.cshtml @@ -172,7 +172,7 @@ Total Sent Amount : - 0.00 GBP + 0.00 GBP @@ -390,7 +390,7 @@ $('#collAmount').text(NumberWithCommas(response.collAmt) + ' ' + response.collCurr); $('#exRate').text(response.exRateDisplay); $('#sCharge').text(NumberWithCommas(response.scCharge)); - $('#tAmt').text(NumberWithCommas(response.sAmt) + ' ' + response.collCurr); + $('#sAmt').text(NumberWithCommas(response.sAmt) + ' ' + response.collCurr); $('#pCurrency').text(response.pCurr); //set hiddend fields for send money diff --git a/CustomerOnlineV2/CustomerOnlineV2/Views/TransactionReport/TranReport.cshtml b/CustomerOnlineV2/CustomerOnlineV2/Views/TransactionReport/TranReport.cshtml index 8eca08a..f776006 100644 --- a/CustomerOnlineV2/CustomerOnlineV2/Views/TransactionReport/TranReport.cshtml +++ b/CustomerOnlineV2/CustomerOnlineV2/Views/TransactionReport/TranReport.cshtml @@ -46,7 +46,7 @@ - + @* Print *@
@@ -61,7 +61,7 @@
Collected Amount
Total Sent Amount
Delivery Method
-
Action
+
View Transaction
@*
Total Sent Amount
*@ @@ -80,7 +80,7 @@
-
+
@*
*@ @@ -219,7 +219,7 @@
${d.collAmt}
${d.payoutAmt}
${d.payoutMode}
-
+
`;