Browse Source

#nwe fixes

Ime-london-webcore
Leeza Baidar 10 months ago
parent
commit
1d3cd9d560
  1. 2
      Swift.web/Remit/Transaction/Reports/TransactionNew/TranReport.aspx.cs
  2. 3
      Swift.web/Remit/Transaction/VerifyMobileTransaction/VerifyMobileTransaction.aspx.cs

2
Swift.web/Remit/Transaction/Reports/TransactionNew/TranReport.aspx.cs

@ -90,7 +90,7 @@ namespace Swift.web.Remit.Transaction.Reports.TransactionNew
str.Append("<td align=\"left\"><b>Total</b></td>");
for (int i = 0; i < cols; i++)
for (int i = 1; i < cols; i++)
{
if (totalAmountIndexes.Contains(i))
{

3
Swift.web/Remit/Transaction/VerifyMobileTransaction/VerifyMobileTransaction.aspx.cs

@ -190,7 +190,8 @@ namespace Swift.web.Remit.Transaction.VerifyMobileTransaction
sb.Append("<td style=\"font-weight: bold; font-style: italic; text-align: right;\">");
sb.Append(GetStatic.FormatData(dr["amt"].ToString(), "M"));
sb.Append("<td>" + CreateRadioGroup(dr["collMode"].ToString(), dr["id"].ToString(), dr["customerId"].ToString(), dr["cAmt"].ToString(), dr["REFERRAL_DETAIL"].ToString()) + "</td>");
sb.Append("<td>" + dr["depositType"].ToString() + "</td>");
//sb.Append("<td>" + CreateRadioGroup(dr["collMode"].ToString(), dr["id"].ToString(), dr["customerId"].ToString(), dr["cAmt"].ToString(), dr["REFERRAL_DETAIL"].ToString()) + "</td>");
sb.Append("<td>" + GetStatic.FormatData(dr["txnDate"].ToString(), "D") + "</td>");
sb.Append("<td>" + dr["depositType"].ToString() + "</td>");
//sb.Append("<td>" + dr["mappedDetail"].ToString() + "</td>");

Loading…
Cancel
Save