Browse Source

reprint n reports

Prod
shakun 10 months ago
parent
commit
0e3e1a5401
  1. 3
      Swift.DAL/Remittance/Transaction/TranAgentReportDao.cs
  2. 7
      Swift.DAL/Remittance/Transaction/TranReportDao.cs
  3. 10
      Swift.web/Admin/Default.aspx
  4. 6
      Swift.web/AgentNew/SendTxn/SendIntlReceipt.aspx.cs
  5. 9
      Swift.web/AgentNew/SendTxn/SendV2.aspx
  6. 4
      Swift.web/Payment/trans_payment_success.aspx.cs
  7. 247
      Swift.web/Remit/Transaction/Reports/DailySendingReportAgent/DailySendingReportAgent.aspx
  8. 12
      Swift.web/Remit/Transaction/Reports/DailySendingReportAgent/DailySendingReportAgent.aspx.cs
  9. 37
      Swift.web/Remit/Transaction/Reports/DailySendingReportAgent/DailySendingReportAgent.aspx.designer.cs
  10. 192
      Swift.web/Remit/Transaction/Reports/TransactionNew/TranReport.aspx.cs
  11. 480
      Swift.web/Remit/Transaction/ReprintVoucher/SendIntlReceipt.aspx
  12. 11
      Swift.web/Remit/Transaction/ReprintVoucher/SendIntlReceipt.aspx.cs
  13. 214
      Swift.web/Remit/Transaction/ReprintVoucher/SendIntlReceipt.aspx.designer.cs
  14. 23
      Swift.web/RemittanceSystem/RemittanceReports/RejectTransactionReport/Mange.aspx
  15. 13
      Swift.web/RemittanceSystem/RemittanceReports/Reports.aspx.cs

3
Swift.DAL/Remittance/Transaction/TranAgentReportDao.cs

@ -342,7 +342,7 @@ namespace Swift.DAL.BL.Remit.Transaction
return ParseReportResult(sql);
}
public ReportResult GetRejectedReport(string user, string flag, string fromDate, string toDate, string agentId, string branchId, string withAgent, string tranType)
public ReportResult GetRejectedReport(string user, string flag, string fromDate, string toDate, string agentId, string branchId, string withAgent, string tranType, string isOnlineTxn)
{
var sql = "PROC_REGISTRATION_REPORT ";
sql += "@flag =" + FilterString(flag); ;
@ -353,6 +353,7 @@ namespace Swift.DAL.BL.Remit.Transaction
sql += ",@branchId=" + FilterString(branchId);
sql += ",@withAgent=" + FilterString(withAgent);
sql += ",@tranType=" + FilterString(tranType);
sql += ",@isOnlineTxn=" + FilterString(isOnlineTxn);
return ParseReportResult(sql);
}
public ReportResult GetNewRegistrationReport(string user, string flag, string fromDate, string toDate, string agentId, string branchId, string withAgent)

7
Swift.DAL/Remittance/Transaction/TranReportDao.cs

@ -2545,15 +2545,14 @@ namespace Swift.DAL.BL.Remit.Transaction
return ParseReportResult(sql);
}
public ReportResult DailySendingReport(string user, string startDate, string endDate, string sAgentId, string payoutPartnerName, string payoutPartnerId)
public ReportResult DailySendingReport(string user, string startDate, string endDate, string verificationType)
{
string sql = "EXEC PROC_DAILYPAID_AND_SENDING @flag = 'SEND'";
sql += ",@user = " + FilterString(user);
sql += ",@startDate = " + FilterString(startDate);
sql += ",@endDate = " + FilterString(endDate);
sql += ",@sAgentId = " + FilterString(sAgentId);
sql += ",@payoutPartnerId = " + FilterString(payoutPartnerId);
sql += ",@payoutPartnerName = " + FilterString(payoutPartnerName);
sql += ",@verificationType = " + FilterString(verificationType);
return ParseReportResult(sql);
}

10
Swift.web/Admin/Default.aspx

@ -87,22 +87,22 @@
<script src="/ui/js/jquery.min.js" type="text/javascript"></script>
<script src="/ui/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="/js/functions.js" type="text/javascript"></script>
<script src="Bootstrap/js/jquery.backstretch.min.js" type="text/javascript"></script>
<%-- <script src="Bootstrap/js/jquery.backstretch.min.js" type="text/javascript"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-form-validator/2.2.8/jquery.form-validator.min.js" type="text/javascript"></script>
<%-- <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-form-validator/2.2.8/jquery.form-validator.min.js" type="text/javascript"></script>--%>
<script type="text/javascript">
<%--<script type="text/javascript">
$(".login-bg").backstretch([
"../images/1b.png",
], { duration: 4000, fade: 750 });
</script>
</script>--%>
<script type="text/javascript">
ipt> function checkSubmit(e) {
function checkSubmit(e) {
if (e && e.keyCode == 13) {
// document.forms[0].submit();
document.getElementById("<%=btnLogin.ClientID%>").click();

6
Swift.web/AgentNew/SendTxn/SendIntlReceipt.aspx.cs

@ -155,16 +155,16 @@ namespace Swift.web.AgentNew.SendTxn
string controlNo = sRow["controlNo"].ToString();
string sms = "";
if (sRow["paymentMethod"].ToString().ToLower() == "bank deposit")
if (sRow["paymentMethod"].ToString().ToLower() == "bank deposit" || sRow["paymentMethod"].ToString().ToLower() == "Mobile Wallet")
{
FullName _bankName = GetStatic.ParseName(sRow["pBankName"].ToString());
sms += "Dear " + _fullNameS.FirstName + ", Your TXN with Reference Number " + controlNo + " has been completed. Your Receiver account will be credited within 1 Working Hour.";
sms += "Dear " + _fullNameS.FirstName + ", Your TXN with Reference Number " + controlNo + " has been completed. If you have already deposited the amount to us your Receiver account will be credited within 1 Working Hour.";
sms += "\nThank you!";
}
else
{
sms += "Dear " + _fullNameS.FirstName + ", Your TXN with Reference Number " + controlNo + " has been completed. Your Receiver can now collect the transaction within 10 minutes from any IME London Agent.";
sms += "Dear " + _fullNameS.FirstName + ", Your TXN with Reference Number " + controlNo + " has been completed.If you have already deposited the amount to us your Receiver can collect the transaction from any payout location within 1 hour.";
sms += "\nThank you!";
}

9
Swift.web/AgentNew/SendTxn/SendV2.aspx

@ -1903,6 +1903,15 @@
}
});
$('#<%=txtRewardAmt.ClientID %>').on('keyup', function () {
debugger
var enteredAmount = parseFloat($(this).val());
var availablePoints = parseFloat($('#<%=lblRemainingQuota.ClientID %>').text().replace('Reward Amount: ', ''));
if (enteredAmount > availablePoints) {
alert('Entered amount exceeds available points!');
$(this).val('');
}
});
$("#" + mId + "sourceOfFund").on("change", function () {
if ($("#" + mId + "sourceOfFund").val() == "11417") {

4
Swift.web/Payment/trans_payment_success.aspx.cs

@ -22,9 +22,9 @@ namespace Swift.web.Payment
" @orderreference = " + sl.FilterString(lblorderreference.Text) + ", @requestreference = " + sl.FilterString(requestreference)+ ", @transactionreference = " + sl.FilterString(transactionreference) + "";
DataSet ds = _remit.ExecuteDataset(sql);
Utility.LogRequest(lblorderreference.Text, "TRUSTPAY", "trust_payment_success", requestreference, sql, transactionreference);
Utility.LogRequest(transactionreference, "TRUSTPAY", "trust_payment_success", requestreference, sql, lblorderreference.Text);
//Utility.LogRequest(lblorderreference.Text, "TRUSTPAY", "trust_payment_success", requestreference, sql, transactionreference);
if (ds.Tables == null || ds.Tables.Count <= 0)
{

247
Swift.web/Remit/Transaction/Reports/DailySendingReportAgent/DailySendingReportAgent.aspx

@ -4,84 +4,87 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="/ui/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<link href="/ui/css/style.css" rel="stylesheet" />
<link href="/ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<script src="/ui/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/ui/js/jquery.min.js"></script>
<link href="/js/jQuery/jquery-ui.css" rel="stylesheet" type="text/css" />
<link href="/ui/css/datepicker-custom.css" rel="stylesheet" />
<script src="/ui/js/bootstrap-datepicker.js"></script>
<script src="/ui/js/pickers-init.js"></script>
<script src="/ui/js/jquery-ui.min.js"></script>
<link href="/ui/css/style.css" rel="stylesheet" />
<script src="/js/functions.js" type="text/javascript"></script>
<script src="/js/swift_calendar.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.15/jquery.mask.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function () {
ShowCalFromToUpToToday("#fromDate", "#toDate");
$('#fromDate').mask('0000-00-00');
$('#toDate').mask('0000-00-00');
});
function DailySendingAgent() {
var agent = document.getElementById("payoutPartner").value;
var branch = document.getElementById("sAgent").value;
var payoutPartner = $('#payoutPartner option:selected').text();
var payoutPartnerId = $('#payoutPartner').val();
var sAgent = GetValue("<% =sAgent.ClientID %>");
var from = GetValue("<% =fromDate.ClientID %>");
var to = GetValue("<% =toDate.ClientID %>");
var url = url = "/RemittanceSystem/RemittanceReports/Reports.aspx?reportName=dailySendingReport" +
"&payoutPartner=" + payoutPartner +
"&payoutPartnerId=" + payoutPartnerId +
"&sAgent=" + sAgent +
"&fromDate=" + from +
"&toDate=" + to;
OpenInNewWindow(url);
return false;
}
</script>
<title></title>
<link href="/ui/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<link href="/ui/css/style.css" rel="stylesheet" />
<link href="/ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<script src="/ui/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/ui/js/jquery.min.js"></script>
<link href="/js/jQuery/jquery-ui.css" rel="stylesheet" type="text/css" />
<link href="/ui/css/datepicker-custom.css" rel="stylesheet" />
<script src="/ui/js/bootstrap-datepicker.js"></script>
<script src="/ui/js/pickers-init.js"></script>
<script src="/ui/js/jquery-ui.min.js"></script>
<link href="/ui/css/style.css" rel="stylesheet" />
<script src="/js/functions.js" type="text/javascript"></script>
<script src="/js/swift_calendar.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.15/jquery.mask.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function () {
ShowCalFromToUpToToday("#fromDate", "#toDate");
$('#fromDate').mask('0000-00-00');
$('#toDate').mask('0000-00-00');
});
function DailySendingAgent() {
//var agent = document.getElementById("payoutPartner").value;
//var branch = document.getElementById("sAgent").value;
var verificationType = document.getElementById("ddlVerifType").value;
<%-- var payoutPartner = $('#payoutPartner option:selected').text();
var payoutPartnerId = $('#payoutPartner').val();
var sAgent = GetValue("<% =sAgent.ClientID %>");--%>
var from = GetValue("<% =fromDate.ClientID %>");
var to = GetValue("<% =toDate.ClientID %>");
var url = url = "/RemittanceSystem/RemittanceReports/Reports.aspx?reportName=dailySendingReport" +
//"&payoutPartner=" + payoutPartner +
//"&payoutPartnerId=" + payoutPartnerId +
//"&sAgent=" + sAgent +
"&verificationType=" + verificationType +
"&fromDate=" + from +
"&toDate=" + to;
OpenInNewWindow(url);
return false;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManger1" runat="server"></asp:ScriptManager>
<div class="page-wrapper">
<div class="row">
<div class="col-sm-12">
<div class="page-title">
<ol class="breadcrumb">
<li><a href="../../../../Front.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
<li><a href="#" onclick="return LoadModule('remittance')">Remittance</a></li>
<li><a href="#" onclick="return LoadModule('report')">Reports-Master </a></li>
<li class="active"><a href="DailySendingReportAgent.aspx">Daily Sending Report Agent</a></li>
</ol>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default ">
<div class="panel-heading">
<h4 class="panel-title">Daily Sending Report Agent</h4>
<div class="panel-actions">
<a href="#" class="panel-action panel-action-toggle" data-panel-toggle></a>
</div>
</div>
<div class="panel-body">
<asp:UpdatePanel ID="upnl1" runat="server">
<ContentTemplate>
<div class="form-group">
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManger1" runat="server"></asp:ScriptManager>
<div class="page-wrapper">
<div class="row">
<div class="col-sm-12">
<div class="page-title">
<ol class="breadcrumb">
<li><a href="../../../../Front.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
<li><a href="#" onclick="return LoadModule('remittance')">Remittance</a></li>
<li><a href="#" onclick="return LoadModule('report')">Reports-Master </a></li>
<li class="active"><a href="DailySendingReportAgent.aspx">Daily Sending Report Agent</a></li>
</ol>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default ">
<div class="panel-heading">
<h4 class="panel-title">Daily Sending Report Agent</h4>
<div class="panel-actions">
<a href="#" class="panel-action panel-action-toggle" data-panel-toggle></a>
</div>
</div>
<div class="panel-body">
<asp:UpdatePanel ID="upnl1" runat="server">
<ContentTemplate>
<%--<div class="form-group">
<label class="control-label col-md-4">Payout Partner :</label>
<div class="col-md-8">
<asp:DropDownList ID="payoutPartner" runat="server" CssClass="form-control" AutoPostBack="true"></asp:DropDownList>
@ -92,46 +95,56 @@
<div class="col-md-8">
<asp:DropDownList ID="sAgent" runat="server" CssClass="form-control"></asp:DropDownList>
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
<div class="form-group">
<label class="control-label col-md-4">From Date : </label>
<div class="col-md-8">
<div class="input-group m-b">
<span class="input-group-addon">
<i class="fa fa-calendar" aria-hidden="true"></i>
</span>
<asp:TextBox ID="fromDate" onchange="return DateValidation('from','t','to')" MaxLength="10" runat="server" CssClass="form-control form-control-inline input-medium"></asp:TextBox>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4">To Date : </label>
<div class="col-md-8">
<div class="input-group m-b">
<span class="input-group-addon">
<i class="fa fa-calendar" aria-hidden="true"></i>
</span>
<asp:TextBox ID="toDate" runat="server" onchange="return DateValidation('from','t','to')" MaxLength="10" CssClass="form-control form-control-inline input-medium"></asp:TextBox>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4"></label>
<div class="col-md-8">
<asp:Button runat="server" ID="btnDailySendingReportAgent" Text="Daily Sending Report" class="btn btn-primary m-t-25" OnClientClick="return DailySendingAgent();" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>--%>
<div class="form-group">
<label class="control-label col-md-4">Verification Type :</label>
<div class="col-md-8">
<asp:DropDownList ID="ddlVerifType" runat="server" CssClass="form-control">
<asp:ListItem Value="" Selected="True">All</asp:ListItem>
<asp:ListItem Value="verified">Verified Txn</asp:ListItem>
<asp:ListItem Value="unverified">Unverified Txn</asp:ListItem>
</asp:DropDownList>
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>
<div class="form-group">
<label class="control-label col-md-4">From Date : </label>
<div class="col-md-8">
<div class="input-group m-b">
<span class="input-group-addon">
<i class="fa fa-calendar" aria-hidden="true"></i>
</span>
<asp:TextBox ID="fromDate" onchange="return DateValidation('from','t','to')" MaxLength="10" runat="server" CssClass="form-control form-control-inline input-medium"></asp:TextBox>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4">To Date : </label>
<div class="col-md-8">
<div class="input-group m-b">
<span class="input-group-addon">
<i class="fa fa-calendar" aria-hidden="true"></i>
</span>
<asp:TextBox ID="toDate" runat="server" onchange="return DateValidation('from','t','to')" MaxLength="10" CssClass="form-control form-control-inline input-medium"></asp:TextBox>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4"></label>
<div class="col-md-8">
<asp:Button runat="server" ID="btnDailySendingReportAgent" Text="Daily Sending Report" class="btn btn-primary m-t-25" OnClientClick="return DailySendingAgent();" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</body>
</html>

12
Swift.web/Remit/Transaction/Reports/DailySendingReportAgent/DailySendingReportAgent.aspx.cs

@ -18,7 +18,7 @@ namespace Swift.web.Remit.Transaction.Reports.DailySendingReportAgent
Authenticate();
if (!IsPostBack)
{
PopulateDdl();
//PopulateDdl();
fromDate.Text = DateTime.Now.ToString("yyyy-MM-dd");
toDate.Text = DateTime.Now.ToString("yyyy-MM-dd");
}
@ -27,10 +27,10 @@ namespace Swift.web.Remit.Transaction.Reports.DailySendingReportAgent
{
_sl.CheckAuthentication(ViewFunctionId);
}
private void PopulateDdl()
{
_sl.SetDDL(ref payoutPartner, "EXEC PROC_API_ROUTE_PARTNERS @flag='partner'", "agentId", "agentName", "", "All");
_sdd.SetDDL(ref sAgent, "EXEC proc_sendPageLoadData @flag='S-AGENT-BEHALF',@user='" + GetStatic.GetUser() + "'", "agentId", "agentName", "", "All");
}
//private void PopulateDdl()
//{
// _sl.SetDDL(ref payoutPartner, "EXEC PROC_API_ROUTE_PARTNERS @flag='partner'", "agentId", "agentName", "", "All");
// _sdd.SetDDL(ref sAgent, "EXEC proc_sendPageLoadData @flag='S-AGENT-BEHALF',@user='" + GetStatic.GetUser() + "'", "agentId", "agentName", "", "All");
//}
}
}

37
Swift.web/Remit/Transaction/Reports/DailySendingReportAgent/DailySendingReportAgent.aspx.designer.cs

@ -7,11 +7,13 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace Swift.web.Remit.Transaction.Reports.DailySendingReportAgent {
public partial class DailySendingReportAgent {
namespace Swift.web.Remit.Transaction.Reports.DailySendingReportAgent
{
public partial class DailySendingReportAgent
{
/// <summary>
/// form1 control.
/// </summary>
@ -20,7 +22,7 @@ namespace Swift.web.Remit.Transaction.Reports.DailySendingReportAgent {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// ScriptManger1 control.
/// </summary>
@ -29,7 +31,7 @@ namespace Swift.web.Remit.Transaction.Reports.DailySendingReportAgent {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.ScriptManager ScriptManger1;
/// <summary>
/// upnl1 control.
/// </summary>
@ -38,25 +40,16 @@ namespace Swift.web.Remit.Transaction.Reports.DailySendingReportAgent {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.UpdatePanel upnl1;
/// <summary>
/// payoutPartner control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.DropDownList payoutPartner;
/// <summary>
/// sAgent control.
/// ddlVerifType control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.DropDownList sAgent;
protected global::System.Web.UI.WebControls.DropDownList ddlVerifType;
/// <summary>
/// fromDate control.
/// </summary>
@ -65,7 +58,7 @@ namespace Swift.web.Remit.Transaction.Reports.DailySendingReportAgent {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox fromDate;
/// <summary>
/// toDate control.
/// </summary>
@ -74,7 +67,7 @@ namespace Swift.web.Remit.Transaction.Reports.DailySendingReportAgent {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.TextBox toDate;
/// <summary>
/// btnDailySendingReportAgent control.
/// </summary>

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

@ -16,9 +16,7 @@ namespace Swift.web.Remit.Transaction.Reports.TransactionNew
public partial class TranReport : System.Web.UI.Page
{
private const string GridName = "grid_list";
private const string ViewFunctionId = "";
private const string ApproveFunctionId = "";
//private const string DeleteFunctionId = "30480030";
private const string ViewFunctionId = "20163500";
private readonly SwiftGrid _grid = new SwiftGrid();
private readonly RemittanceLibrary swiftLibrary = new RemittanceLibrary();
private readonly TranAgentReportDao _obj = new TranAgentReportDao();
@ -27,11 +25,15 @@ namespace Swift.web.Remit.Transaction.Reports.TransactionNew
var methodName = Request.Form["MethodName"];
if (!IsPostBack)
{
//Authenticate();
Authenticate();
LoadGrid();
}
}
private void Authenticate()
{
swiftLibrary.CheckAuthentication(ViewFunctionId);
}
public void LoadGrid()
{
@ -67,90 +69,87 @@ namespace Swift.web.Remit.Transaction.Reports.TransactionNew
if (dt.Rows.Count == 0)
{
str.Append("<tr><td colspan='12' style='color:red' align='center'><b>No Records Found!</td></b></tr>");
rpt_grid.InnerHtml = "<tr><td colspan='12' style='color:red' align='center'><b>No Records Found!</td></b></tr>";
return;
}
else
Dictionary<string, DataTable> payoutPartnerData = new Dictionary<string, DataTable>();
foreach (DataRow dr in dt.Rows)
{
string currentPayoutPartner = string.Empty;
bool isFirstRow = true;
int[] totalAmountIndexes = { 13, 15, 16,17, 19, 21};
string payoutPartner = dr["PAYOUT_PARTNER"].ToString().Trim();
decimal[] totalAmounts = new decimal[cols];
Array.Clear(totalAmounts, 0, totalAmounts.Length);
foreach (DataRow dr in dt.Rows)
if (!payoutPartnerData.ContainsKey(payoutPartner))
{
string payoutPartner = dr["PAYOUT_PARTNER"].ToString();
DataTable partnerDataTable = dt.Clone();
partnerDataTable.TableName = payoutPartner;
payoutPartnerData[payoutPartner] = partnerDataTable;
}
if (payoutPartner != currentPayoutPartner)
{
if (!isFirstRow)
{
str.Append("<tr>");
str.Append("<td align=\"left\"><b>Total</b></td>");
for (int i = 1; i < cols; i++)
{
if (totalAmountIndexes.Contains(i))
{
str.Append("<td align=\"left\">" + totalAmounts[i] + "</td>");
totalAmounts[i] = 0; // Reset totalAmount for the new partner
}
else
{
str.Append("<td align=\"left\"></td>");
}
}
str.Append("</tr>");
}
str.Append("<h3><b>Payout Partner: " + payoutPartner + "</b></h3>");
str.Append("<table class='table table-responsive table-bordered'>");
for (int i = 0; i < cols; i++)
{
str.Append("<th><div align=\"left\">" + dt.Columns[i].ColumnName + "</div></th>");
}
currentPayoutPartner = payoutPartner;
isFirstRow = false;
}
str.AppendLine("<tr class=\"" + GetPayStatus(dr["PAYSTATUS"].ToString()) + "\">");
payoutPartnerData[payoutPartner].ImportRow(dr);
}
StringBuilder combinedTables = new StringBuilder();
foreach (var partnerData in payoutPartnerData)
{
string payoutPartner = partnerData.Key;
DataTable partnerTable = partnerData.Value;
StringBuilder strTable = new StringBuilder();
strTable.Append("<h3><b>Payout Partner: " + payoutPartner + "</b></h3>");
strTable.Append("<table class='table table-responsive table-bordered'>");
strTable.Append("<tr>");
foreach (DataColumn col in partnerTable.Columns)
{
strTable.Append("<th><div align=\"left\">" + col.ColumnName + "</div></th>");
}
strTable.Append("</tr>");
foreach (DataRow row in partnerTable.Rows)
{
string payStatusClass = GetPayStatus(row["PAYSTATUS"].ToString());
strTable.Append("<tr class=\"" + payStatusClass + "\">");
for (int i = 0; i < cols; i++)
foreach (var item in row.ItemArray)
{
str.Append("<td align=\"left\">" + dr[i] + "</td>");
if (totalAmountIndexes.Contains(i))
{
decimal currentAmount;
if (decimal.TryParse(dr[i].ToString(), out currentAmount))
{
totalAmounts[i] += currentAmount; // Accumulate total amount for each specific column index
}
}
strTable.Append("<td align=\"left\">" + item.ToString() + "</td>");
}
str.Append("</tr>");
strTable.Append("</tr>");
}
if (!isFirstRow)
combinedTables.Append(strTable.ToString());
combinedTables.Append("<tr>");
combinedTables.Append("<td align=\"left\"><b>Total</b></td>");
for (int i = 1; i < partnerTable.Columns.Count; i++)
{
str.Append("<tr>");
str.Append("<td align=\"left\"><b>Total</b></td>");
for (int i = 1; i < cols; i++)
if (i == 13 || i == 15 || i == 16 || i == 17 || i == 21)
{
decimal total = partnerTable.AsEnumerable()
.Sum(row => decimal.TryParse(row[i].ToString(), out decimal val) ? val : 0);
combinedTables.Append("<td align=\"left\">" + total + "</td>");
}
else
{
if (totalAmountIndexes.Contains(i))
{
str.Append("<td align=\"left\">" + totalAmounts[i] + "</td>");
}
else
{
str.Append("<td align=\"left\"></td>");
}
combinedTables.Append("<td align=\"left\"></td>");
}
str.Append("</tr>");
}
combinedTables.Append("</tr>");
combinedTables.Append("</table>");
}
str.Append("</table>");
if(mode == "download")
rpt_grid.InnerHtml = combinedTables.ToString();
if (mode == "download")
{
ExportToExcel(dt, "txnReport");
}
rpt_grid.InnerHtml = str.ToString();
ExportToExcel(combinedTables.ToString(), "txnReport");
}
}
private string GetPayStatus(string paystatus)
@ -168,48 +167,33 @@ namespace Swift.web.Remit.Transaction.Reports.TransactionNew
}
}
protected void ExportToExcel(DataTable table, string fileName)
protected void ExportToExcel(string htmlContent, string fileName)
{
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.ClearContent();
HttpContext.Current.Response.ClearHeaders();
HttpContext.Current.Response.Buffer = true;
HttpContext.Current.Response.ContentType = "application/ms-excel";
HttpContext.Current.Response.Write(@"<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.0 Transitional//EN"">");
HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName + ".xls");
HttpContext.Current.Response.Charset = "utf-8";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("windows-1250");
HttpContext.Current.Response.Write("<font style='font-size:10.0pt; font-family:Calibri;'>");
HttpContext.Current.Response.Write("<br/><br/><br/>");
HttpContext.Current.Response.Write("<table border='1' bgColor='#ffffff' " +
"borderColor='#000000' cellSpacing='0' cellPadding='0' " +
"style='font-size:10.0pt; font-family:Calibri; background:white;'> <tr>");
int columnscount = table.Columns.Count;
for (int j = 0; j < columnscount; j++)
{
HttpContext.Current.Response.Write("<td>");
HttpContext.Current.Response.Write("<strong>");
HttpContext.Current.Response.Write(table.Columns[j].ColumnName.ToString());
HttpContext.Current.Response.Write("</strong>");
HttpContext.Current.Response.Write("</td>");
}
HttpContext.Current.Response.Write("</tr>");
foreach (DataRow row in table.Rows)
{
HttpContext.Current.Response.Write("<tr>");
for (int i = 0; i < table.Columns.Count; i++)
{
HttpContext.Current.Response.Write("<td style='textmode'>");
HttpContext.Current.Response.Write(row[i].ToString());
HttpContext.Current.Response.Write("</td>");
}
HttpContext.Current.Response.Write("</tr>");
}
HttpContext.Current.Response.Write("</table>");
HttpContext.Current.Response.Write("</font>");
HttpContext.Current.Response.Write("<html xmlns:o='urn:schemas-microsoft-com:office:office' xmlns:x='urn:schemas-microsoft-com:office:excel' xmlns='http://www.w3.org/TR/REC-html40'>");
HttpContext.Current.Response.Write("<head>");
HttpContext.Current.Response.Write("<style>");
HttpContext.Current.Response.Write("@page { margin: 1in 0.75in 1in 0.75in; }");
HttpContext.Current.Response.Write("table { border-collapse: collapse; width: 100%; }");
HttpContext.Current.Response.Write("th, td { border: 1px solid black; padding: 8px; }");
HttpContext.Current.Response.Write("</style>");
HttpContext.Current.Response.Write("</head>");
HttpContext.Current.Response.Write("<body>");
HttpContext.Current.Response.Write(htmlContent);
HttpContext.Current.Response.Write("</body>");
HttpContext.Current.Response.Write("</html>");
HttpContext.Current.Response.Flush();
HttpContext.Current.Response.End();
}

480
Swift.web/Remit/Transaction/ReprintVoucher/SendIntlReceipt.aspx

@ -103,10 +103,12 @@
.receipt {
font-family: 'Noto Sans JP', sans-serif;
font-size: 14px !important;
}
.receipt p {
font-family: 'Noto Sans JP', sans-serif;
font-size: 14px !important;
}
</style>
<script type="text/javascript">
@ -162,45 +164,35 @@
<tr>
<td style="width: 5%;">
<div class="logo">
<img src="/images/jme.png" />
<img src="../../../Images/ime-london-logo.png" style="padding-bottom: 30px; height: 85px; width: 205px;" />
</div>
<p style="font-size: 8px;">Fund Transfer Services Registration No.00006 Kanto Local Finance Bureau</p>
<p style="font-size: 8px;">
資金移動業関東財務局長第00006号
</p>
</td>
<td style="width: 90%;" colspan="2">
<td style="width: 45%;" colspan="2">
<table style="width: 100%;">
<tr>
<td style="padding: 0 10px; width: 45%;">
<h3 style="font-size: 12px;">Japan Money Express Co. Ltd. (JME)</h3>
<p style="font-size: 9px;">
Room AB, Omori Building 4F, 1-10-7 Hyakunin-cho,<br />
Shinjuku-ku, Tokyo, 169-0073, Japan
<h3 style="font-size: 14px;">IME London (Subhida UK Ltd. Company)</h3>
<p style="font-size: 12px; margin-bottom: 2px;">
Registration No.: 6432399, FCA Registration No.: 576127
</p>
<p style="font-size: 9px;">
Tel: 03-5475-3913, Fax: 03-5475-3914<br />
https://www.japanremit.com
<p style="font-size: 12px; margin-bottom: 2px;">
HMRC Registration No.: 12663526
</p>
</td>
<td style="padding: 0 10px; width: 55%;">
<h3 style="font-size: 12px;">ジャパンマネーエクスプレス株式会社</h3>
<p style="font-size: 9px;">
〒169-0073 東京都新宿区百人町一丁目10番7号<br />
大森ビル4階AB号室
<p style="font-size: 12px; margin-bottom: 2px;">
Registered Address : Pentax House South Hill Avenue, South Harrow, London, HA2 0DU
</p>
<p style="font-size: 9px;">
Tel: 03-5475-3913, Fax: 03-5475-3914<br />
https://www.japanremit.com
<p style="font-size: 12px; margin-bottom: 2px;">
Tel: +4402088660307, +4407984713677<br />
</p>
<p style="font-size: 12px; margin-bottom: 2px;">
Email:info@imelondon.co.uk
</p>
</td>
</tr>
<tr>
<td colspan="2">
<h3 style="font-size: 25px; margin-left: 10%;"><span style="text-decoration: underline; font-size: 23px;">Remittance Statement 送金明細書
</span>&nbsp;&nbsp;&nbsp;&nbsp;<span style="text-decoration: underline; color: #ff0000; font-size: 17px; float: right; margin-top: 10px;">Office Copy</span></h3>
<%--<p style="text-decoration: underline; color: #ff0000; font-size: 18px; text-align: end;">Office Copy</p>--%>
<h3 style="font-size: 25px; text-align: center;"><span style="text-decoration: underline; font-size: 23px;">Remittance Statement
</span>&nbsp;&nbsp;&nbsp;&nbsp;<span style="text-decoration: underline; color: #ff0000; font-size: 17px; float: right; margin-top: 10px; margin-right: 10px;">Office Copy</span></h3>
</td>
</tr>
</table>
@ -216,57 +208,56 @@
<!--sender information-->
<tr>
<td>
<table width="100%;" style="border: 1px solid #ccc; padding: 0 5px; border-bottom: none;" class="tbl-sender-rec-info">
<tr>
<td colspan="4 " class="details" style="padding: 0 5px;">
<h4>送金依頼人 SENDER INFORMATION</h4>
<table width="100%;" style="border: 1px solid #ccc; padding: 5px; border-bottom: none;" class="tbl-sender-rec-info">
<tr style="border-bottom: 1px solid #ccc;">
<td colspan="4 " class="details">
<h4>SENDER INFORMATION</h4>
</td>
</tr>
<tr>
<td width="25% " valign="top" style="padding: 0 5px;">
<label>依頼人名 Sender Name</label>
<tr style="border-bottom: 1px solid #ccc;">
<td width="25% " valign="top">
<label>Sender Name</label>
</td>
<td width="30% " valign="top">
<td width="30% " valign="top" style="border-right: 1px solid #ccc;">
<span class="sender-value ">
<asp:Label ID="senderName" runat="server"></asp:Label></span>
</td>
<td width="25% " valign="top">
<label>会員番号 Membership ID</label>
<td width="23% " valign="top">
<label>Membership ID</label>
</td>
<td width="22% ">
<td width="22%">
<span class="sender-value ">
<asp:Label ID="sMemId" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>住所 Address</label>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>Address</label>
</td>
<td colspan="3 ">
<td colspan="3">
<span class="sender-value ">
<asp:Label ID="sAddress" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>国籍 Nationality</label>
</td>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>Nationality</label>
</td>
<td style="border-right: 1px solid #ccc;">
<span class="sender-value ">
<asp:Label ID="sNativeCountry" runat="server"></asp:Label></span>
</td>
<td>
<label>職業 Occupation</label>
<label>Occupation</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="lblOccupation" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>電話番号 Telephone No.</label>
<label>Telephone No.</label>
</td>
<td>
<span class="sender-value ">
@ -274,14 +265,14 @@
</td>
</tr>
<tr style="display: none;">
<td style="padding: 0 5px;">
<td>
<label>Date of birth</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="sDob" runat="server"></asp:Label></span>
</td>
<td style="padding: 0 5px;">
<td>
<label>Visa Status</label>
</td>
<td>
@ -295,76 +286,84 @@
<!--Receiver information-->
<tr style="">
<td>
<table width="100%;" style="border: 1px solid #ccc; padding: 5px; border-bottom: none;" class="tbl-sender-rec-info">
<tr>
<td colspan="4" class="details" style="padding: 0 5px;">
<h4>送金受取人 BENEFICIARY INFORMATION</h4>
<table width="100%;" style="border: 1px solid #ccc; padding: 5px; border-collapse: collapse;" class="tbl-sender-rec-info">
<tr style="border-bottom: 1px solid #ccc;">
<td colspan="4" class="details">
<h4>BENEFICIARY INFORMATION</h4>
</td>
</tr>
<tr>
<td style="padding: 0 5px; width: 25%">
<label>受取国 Payout Country</label>
<tr style="border-bottom: 1px solid #ccc;">
<td style="width: 25%">
<label>Payout Country</label>
</td>
<td style="padding: 0 5px; width: 30%">
<td style="width: 30%; border-right: 1px solid #ccc;">
<span class="sender-value">
<asp:Label ID="pAgentCountry" runat="server"></asp:Label></span>
</td>
<td style="width: 25%">
<label>目的 Purpose</label>
<td style="width: 23%;">
<label>Purpose</label>
</td>
<td style="width: 22%">
<td style="width: 22%;">
<span class="sender-value ">
<asp:Label ID="purpose" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td valign="top" style="padding: 0 5px;">
<label>受取人名 Beneficiary Name</label>
</td>
<tr style="border-bottom: 1px solid #ccc;">
<td valign="top">
<label>Beneficiary Name</label>
</td>
<td valign="top" style="border-right: 1px solid #ccc;">
<span class="sender-value">
<asp:Label ID="receiverName" runat="server"></asp:Label></span>
</td>
<td>
<label>受取方法 Mode of Receipt</label>
<label>Mode of Receipt</label>
</td>
<td><span class="sender-value">
<span class="sender-value">
<asp:Label ID="paymentMode" runat="server"></asp:Label></span>
<asp:Label ID="paymentMode" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>電話番号 Telephone No.</label>
<tr style="border-bottom: 1px solid #ccc;">
<td class="space-20">
<label>Telephone No.</label>
</td>
<td>
<td >
<span class="sender-value">
<asp:Label ID="rContactNo" runat="server"></asp:Label></span>
</td>
<td class="space-20">
<label id="bankLabel" runat="server">Bank Name</label>
</td>
<td class="space-20">
<span class="sender-value">
<asp:Label ID="pBankName" runat="server"></asp:Label></span>
</td>
</tr>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label id="bankLabel" runat="server">銀行名 Bank Name</label>
<label>Deposit Type: </label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="pBankName" runat="server"></asp:Label></span>
<asp:Label ID="senderDepositType" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>受取人との関係 Relation with Beneficiary</label>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>
Relation with Beneficiary</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="relationShip" runat="server"></asp:Label></span>
</td>
<td id="bank7" runat="server">
<label>支店名 Branch Name</label>
<label>Branch Name</label>
</td>
<td id="bank8" runat="server">
<span class="sender-value">
<asp:Label ID="pBranchName" runat="server"></asp:Label></span>
</td>
<td style="display: none;">
<label>Address</label>
</td>
@ -372,13 +371,12 @@
<span class="sender-value">
<asp:Label ID="rAddress" runat="server"></asp:Label></span>
</td>
</tr>
<tr id="bankAccNo" runat="server">
<tr style="border-bottom: 1px solid #ccc;" id="bankAccNo" runat="server">
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>
<label>口座番号Account No.</label>
<label>Account No.</label>
</td>
<td>
<span class="sender-value">
@ -413,33 +411,33 @@
</td>
<td width="20%" class="amount-info">
<table width="100%;" border="1" cellspacing="0 " cellpadding="0 ">
<table width="100%;" border="1" cellspacing="2 " cellpadding="2">
<tr>
<td style="padding: 0 5px;">
<h2>JME NO:<span><asp:Label ID="controlNo" runat="server"></asp:Label></span></h2>
<td style="font-weight: bold;">
<h2>Reference NO:<span><asp:Label ID="controlNo" runat="server"></asp:Label></span></h2>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">
<asp:Label ID="createdBy" runat="server"></asp:Label>
</p>
<p>
<span>
<span style="padding: 3px;">
<asp:Label ID="approvedDate" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Collect Amount</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Collect Amount</p>
<h3><span>
<asp:Label ID="cAmt" runat="server"></asp:Label></span></h3>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Service Charge</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Service Charge</p>
<p>
<span>
<asp:Label ID="serviceCharge" runat="server"></asp:Label></span>
@ -447,8 +445,8 @@
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Transfer Amount</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Transfer Amount</p>
<p>
<span>
<asp:Label ID="tAmt" runat="server"></asp:Label></span>
@ -456,8 +454,8 @@
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Exchange Rate</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Exchange Rate</p>
<p>
<span>
<asp:Label ID="exRate" runat="server"></asp:Label></span>
@ -465,22 +463,22 @@
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Payout Amount</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Payout Amount</p>
<h3><span>
<asp:Label ID="pAmt" runat="server"></asp:Label></span></h3>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<td style="padding: 5px;">
<p>
Serial:<span>
<asp:Label ID="serial1" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<tr style="display: none;">
<td style="padding: 5px;">
<p>Deposit Type</p>
<p>
<span>
@ -492,7 +490,7 @@
</td>
</tr>
<!--information section-->
<tr valign="top">
<%--<tr valign="top">
<td colspan="2">
<table width="100%;" style="border: 1px solid #ccc; padding: 5px;">
<tr>
@ -511,14 +509,7 @@
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- I have no relation to Anti-Social Forces;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- I do not engage in any illegal activities.<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- This beneficiary is not Politically Exposed Person (PEPs).<br />
<%-- 私は、本依頼書に記載されているジャパンマネーエクスプレス株式会社の「海外送金利用規約」の内容に同意します。<br />
私の依頼する送金は、北朝鮮及びイランとは関係無い取引であり、反社会勢力と一切の関りはありません。<br />
私は「外内国の重要な公的な地位にある者」ではありません。<br />
また申込書に表示された内容について間違いが無い事を確認した上で、JME送金サービスの利用を依頼します。<br />
I understand and agree to the ”Terms and Conditions for Overseas Remittance” of Japan Money Express Co., Ltd. (JME).<br />
I confirm that this remittance has nothing to do with North Korea or Iran. I have no relation to any Anti-Social Forces or engagement in any illegal activities.<br />
I am not Politically Exposed Persons(PEPs).<br />
I confirm the information shown in this application to avail the remittance service is true and correct.--%>
</p>
</td>
<td colspan="2">
@ -532,15 +523,8 @@
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;一切関わりがないこと。<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- 私は反社会的勢力とは何ら関わりがないこと。<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- 私は一切違法行為を行っていないこと。<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- 本受取人は外国の政府等において重要な地位を占める者 (PEPs)ではありません <br />
<%-- 私は、本依頼書に記載されているジャパンマネーエクスプレス株式会社の「海外送金利用規約」の内容に同意します。<br />
私の依頼する送金は、北朝鮮及びイランとは関係無い取引であり、反社会勢力と一切の関りはありません。<br />
私は「外内国の重要な公的な地位にある者」ではありません。<br />
また申込書に表示された内容について間違いが無い事を確認した上で、JME送金サービスの利用を依頼します。<br />
I understand and agree to the ”Terms and Conditions for Overseas Remittance” of Japan Money Express Co., Ltd. (JME).<br />
I confirm that this remittance has nothing to do with North Korea or Iran. I have no relation to any Anti-Social Forces or engagement in any illegal activities.<br />
I am not Politically Exposed Persons(PEPs).<br />
I confirm the information shown in this application to avail the remittance service is true and correct.--%>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- 本受取人は外国の政府等において重要な地位を占める者 (PEPs)ではありません
<br />
</p>
</td>
</tr>
@ -564,6 +548,33 @@
</tr>
</table>
</td>
</tr>--%>
<tr valign="top">
<td colspan="2">
<table width="100%;" style="border: 1px solid #ccc; padding: 5px;">
<tr>
<td colspan="4" style="font-weight: 600; padding-top: 5px; padding-left: 5px; padding-bottom: 5px;">Signature and Declaration</td>
</tr>
<tr>
<td style="padding-top: 5px; padding-left: 5px; padding-bottom: 5px;">This is the digital copy generated from the system hence no signature is required. Please do contact IME London for further information.</td>
</tr>
<tr>
<%--<td style="padding: 5px;">
<label>Signature or Stamp</label>
</td>--%>
<td style="padding: 5px; text-align: right;" class="logo">
<img src="../../../Images/ime-london-logo-receipt.png" style="padding-bottom: 5px; padding-right: 15px; height: 125px; width: 145px;" />
</td>
</tr>
<tr>
<td style="padding: 5px; text-align: right;" class="logo">
<label style="text-align: center;">Signature or Stamp</label>
</td>
</tr>
</table>
</td>
</tr>
</table>
@ -584,44 +595,35 @@
<tr>
<td style="width: 5%;">
<div class="logo">
<img src="/images/jme.png" />
<img src="../../../Images/ime-london-logo.png" style="padding-bottom: 30px; height: 85px; width: 205px;" />
</div>
<p style="font-size: 8px;">Fund Transfer Services Registration No.00006 Kanto Local Finance Bureau</p>
<p style="font-size: 8px;">
資金移動業関東財務局長第00006号
</p>
</td>
<td style="width: 90%;" colspan="2">
<td style="width: 45%;" colspan="2">
<table style="width: 100%;">
<tr>
<td style="padding: 0 10px; width: 45%;">
<h3 style="font-size: 12px;">Japan Money Express Co. Ltd. (JME)</h3>
<p style="font-size: 9px;">
Room AB, Omori Building 4F, 1-10-7 Hyakunin-cho,<br />
Shinjuku-ku, Tokyo, 169-0073, Japan
<h3 style="font-size: 12px;">IME London (Subhida UK Ltd. Company)</h3>
<p style="font-size: 9px; margin-bottom: 2px;">
Registration No.: 6432399, FCA Registration No.: 576127
</p>
<p style="font-size: 9px;">
Tel: 03-5475-3913, Fax: 03-5475-3914<br />
https://www.japanremit.com
<p style="font-size: 9px; margin-bottom: 2px;">
HMRC Registration No.: 12663526
</p>
</td>
<td style="padding: 0 10px; width: 55%;">
<h3 style="font-size: 12px;">ジャパンマネーエクスプレス株式会社</h3>
<p style="font-size: 9px;">
〒169-0073 東京都新宿区百人町一丁目10番7号<br />
大森ビル4階AB号室
<p style="font-size: 9px; margin-bottom: 2px;">
Registered Address : Pentax House South Hill Avenue, South Harrow, London, HA2 0DU
</p>
<p style="font-size: 9px;">
Tel: 03-5475-3913, Fax: 03-5475-3914<br />
https://www.japanremit.com
<p style="font-size: 9px; margin-bottom: 2px;">
Tel: +4402088660307, +4407984713677<br />
</p>
<p style="font-size: 9px; margin-bottom: 2px;">
Email:info@imelondon.co.uk
</p>
</td>
</tr>
<tr>
<td colspan="2">
<h3 style="font-size: 24px; margin-left: 10%;"><span style="text-decoration: underline; font-size: 23px;">Remittance Statement 送金明細書</span>&nbsp;&nbsp;&nbsp;&nbsp;<span style="text-decoration: underline; color: #ff0000; font-size: 17px; float: right; margin-top: 10px;">Customer Copy</span></h3>
<%--<p style="text-decoration: underline; color: #ff0000; font-size: 18px; text-align: end;">Office Copy</p>--%>
<h3 style="font-size: 25px; text-align: center;"><span style="text-decoration: underline; font-size: 23px;">Remittance Statement
</span>&nbsp;&nbsp;&nbsp;&nbsp;<span style="text-decoration: underline; color: #ff0000; font-size: 17px; float: right; margin-top: 10px; margin-right: 10px;">Office Copy</span></h3>
</td>
</tr>
</table>
@ -638,56 +640,55 @@
<tr>
<td>
<table width="100%;" style="border: 1px solid #ccc; padding: 5px; border-bottom: none;" class="tbl-sender-rec-info">
<tr>
<td colspan="4" class="details" style="padding: 0 5px;">
<h4>送金依頼人 SENDER INFORMATION</h4>
<tr style="border-bottom: 1px solid #ccc;">
<td colspan="4 " class="details">
<h4>SENDER INFORMATION</h4>
</td>
</tr>
<tr>
<td width="25% " valign="top" style="padding: 0 5px;">
<label>依頼人名 Sender Name</label>
<tr style="border-bottom: 1px solid #ccc;">
<td width="25%" valign="top">
<label>Sender Name</label>
</td>
<td width="30% " valign="top">
<td width="30%" valign="top" style="border-right: 1px solid #ccc;">
<span class="sender-value ">
<asp:Label ID="senderName1" runat="server"></asp:Label></span>
</td>
<td width="25% " valign="top">
<label>会員番号 Membership ID</label>
<td width="23%" valign="top">
<label>Membership ID</label>
</td>
<td width="22% ">
<td width="22%">
<span class="sender-value ">
<asp:Label ID="sMemId1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>住所 Address</label>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>Address</label>
</td>
<td colspan="3 ">
<span class="sender-value ">
<asp:Label ID="sAddress1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>国籍 Nationality</label>
</td>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>Nationality</label>
</td>
<td style="border-right: 1px solid #ccc;">
<span class="sender-value ">
<asp:Label ID="sNativeCountry1" runat="server"></asp:Label></span>
</td>
<td>
<label>職業 Occupation</label>
<label>Occupation</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="lblOccupation1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>電話番号 Telephone No.</label>
<label>Telephone No.</label>
</td>
<td>
<span class="sender-value ">
@ -702,13 +703,13 @@
<span class="sender-value ">
<asp:Label ID="sDob1" runat="server"></asp:Label></span>
</td>
<td style="padding: 0 5px;">
<%--<td style="padding: 0 5px;">
<label>Visa Status</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="visaStatus1" runat="server"></asp:Label></span>
</td>
</td>--%>
</tr>
</table>
</td>
@ -717,87 +718,89 @@
<tr style="">
<td>
<table width="100%;" style="border: 1px solid #ccc; padding: 5px; border-bottom: none;" class="tbl-sender-rec-info">
<tr>
<td colspan="4" class="details" style="padding: 0 5px;">
<h4>送金受取人 BENEFICIARY INFORMATION</h4>
<tr style="border-bottom: 1px solid #ccc;">
<td colspan="4" class="details">
<h4>BENEFICIARY INFORMATION</h4>
</td>
</tr>
<tr>
<td style="padding: 0 5px; width: 25%">
<label>受取国 Payout Country</label>
<tr style="border-bottom: 1px solid #ccc;">
<td style="width: 25%">
<label>Payout Country</label>
</td>
<td style="padding: 0 5px; width: 30%">
<td style="width: 30%; border-right: 1px solid #ccc;">
<span class="sender-value">
<asp:Label ID="pAgentCountry1" runat="server"></asp:Label></span>
</td>
<td style="width: 25%">
<label>目的 Purpose</label>
</td>
<td style="width: 23%">
<label>Purpose</label>
</td>
<td style="width: 22%">
<span class="sender-value ">
<asp:Label ID="purpose1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td valign="top" style="padding: 0 5px;">
<label>受取人名 Beneficiary Name</label>
</td>
<tr style="border-bottom: 1px solid #ccc;">
<td valign="top">
<label>Beneficiary Name</label>
</td>
<td valign="top" style="border-right: 1px solid #ccc;">
<span class="sender-value">
<asp:Label ID="receiverName1" runat="server"></asp:Label></span>
</td>
<td>
<label>受取方法 Mode of Receipt</label>
<label>Mode of Receipt</label>
</td>
<td><span class="sender-value">
<span class="sender-value">
<asp:Label ID="paymentMode1" runat="server"></asp:Label></span>
<asp:Label ID="paymentMode1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>電話番号 Telephone No.</label>
</td>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>Telephone No.</label>
</td>
<td style="border-right: 1px solid #ccc;">
<span class="sender-value">
<asp:Label ID="rContactNo1" runat="server"></asp:Label></span>
</td>
<td>
<label id="bankLabel1" runat="server">銀行名 Bank Name</label>
<label id="bankLabel1" runat="server">Bank Name</label>
</td>
<td id="bank2" runat="server">
<span class="sender-value">
<asp:Label ID="pBankName1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>受取人との関係 Relation with Beneficiary</label>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>
Relation with Beneficiary</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="relationship1" runat="server"></asp:Label></span>
</td>
<td id="bank3" runat="server">
<label>支店名 Branch Name</label>
<label>Branch Name</label>
</td>
<td id="bank4" runat="server">
<span class="sender-value">
<asp:Label ID="pBranchName1" runat="server"></asp:Label></span>
</td>
<%--<td style="padding: 0 5px;">
<label>Address</label>
</tr>
<tr style="border-bottom: 1px solid #ccc;">
<td>
<label>Deposit Type: </label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="rAddress1" runat="server"></asp:Label></span>
</td>--%>
<asp:Label ID="senderDepositType1" runat="server"></asp:Label></span>
</td>
</tr>
<tr id="bankAccNo1" runat="server">
<tr style="border-bottom: 1px solid #ccc;" id="bankAccNo1" runat="server">
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>
<label>口座番号Account No.</label>
<label>Account No.</label>
</td>
<td>
<span class="sender-value">
@ -831,33 +834,33 @@
</td>
<td width="20%" class="amount-info">
<table width="100%;" border="1" cellspacing="0 " cellpadding="0 ">
<table width="100%;" border="1" cellspacing="2 " cellpadding="2">
<tr>
<td style="padding: 0 5px;">
<h2>JME NO:<span><asp:Label ID="controlNo1" runat="server"></asp:Label></span></h2>
<td style="font-weight: bold;">
<h2>Reference NO:<span><asp:Label ID="controlNo1" runat="server"></asp:Label></span></h2>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">
<asp:Label ID="createdBy1" runat="server"></asp:Label>
</p>
<p>
<span>
<span style="padding: 3px;">
<asp:Label ID="approvedDate1" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Collect Amount</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Collect Amount</p>
<h3><span>
<asp:Label ID="cAmt1" runat="server"></asp:Label></span></h3>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Service Charge</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Service Charge</p>
<p>
<span>
<asp:Label ID="serviceCharge1" runat="server"></asp:Label></span>
@ -865,8 +868,8 @@
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Transfer Amount</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Transfer Amount</p>
<p>
<span>
<asp:Label ID="tAmt1" runat="server"></asp:Label></span>
@ -874,8 +877,8 @@
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Exchange Rate</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Exchange Rate</p>
<p>
<span>
<asp:Label ID="exRate1" runat="server"></asp:Label></span>
@ -883,20 +886,23 @@
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Payout Amount</p>
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Payout Amount</p>
<h3><span>
<asp:Label ID="pAmt1" runat="server"></asp:Label></span></h3>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Serial:<span><asp:Label ID="serial2" runat="server"></asp:Label></span></p>
<td style="padding: 5px;">
<p>
Serial:<span>
<asp:Label ID="serial2" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Deposit Type</p>
<tr style="display: none;">
<td style="padding: 5px;">
<p style="padding-bottom: 8px;">Deposit Type</p>
<p>
<span>
<asp:Label ID="depositType1" runat="server"></asp:Label></span>
@ -909,39 +915,25 @@
<!--information section-->
<tr valign="top">
<td colspan="2">
<table width="100%;" style="border: 1px solid #ccc; padding: 5px;">
<table width="100%;" style="border: 1px solid #ccc; padding: 5px; min-height: 100px;">
<tr valign="top" style="height: 90px; display: none;">
<td colspan="4" style="padding: 5px;">
<p>
(1) I understand and agree to the Terms and Conditions of JME on its website.<br />
(2) I declare the information above is true and correct.<br />
(3) I confirm that<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- This request has nothing to do with Democratic People's Republic of Korea (DPRK) and Iran;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- I have no relation to Ani-Social Forces;and<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- I do not engage in any illegal activities;
<br />
<%-- 私は、本依頼書に記載されているジャパンマネーエクスプレス株式会社の「海外送金利用規約」の内容に同意します。<br />
私の依頼する送金は、北朝鮮及びイランとは関係無い取引であり、反社会勢力と一切の関りはありません。<br />
私は「外内国の重要な公的な地位にある者」ではありません。<br />
また申込書に表示された内容について間違いが無い事を確認した上で、JME送金サービスの利用を依頼します。<br />
I understand and agree to the ”Terms and Conditions for Overseas Remittance” of Japan Money Express Co., Ltd. (JME).<br />
I confirm that this remittance has nothing to do with North Korea or Iran. I have no relation to any Anti-Social Forces or engagement in any illegal activities.<br />
I am not Politically Exposed Persons(PEPs).<br />
I confirm the information shown in this application to avail the remittance service is true and correct.--%>
</p>
<td>This is the digital copy generated from the system hence no signature is required. Please do contact IME London for further information.
</td>
</tr>
<tr class="bottom-box" style="min-height: 100px;">
<td colspan="2" style="padding: 5px; width: 50%; height: 100px; text-align: center;" class="print-gray">
<td colspan="2" style="padding: 5px; width: 50%; text-align: center;" class="print-gray">
<span style="font-size: 25px;">Company Stamp</span>
<img src="../../../Images/ime-london-logo-receipt.png" style="padding-bottom: 5px; padding-right: 5px; height: 115px; width: 125px;" />
</td>
<td style="vertical-align: bottom;">
<td style="vertical-align: bottom; padding-bottom: 5px;">
<label>Operator:(<asp:Label ID="operator2" runat="server"></asp:Label>)</label>
</td>
<td style="padding-top: 10px !important; vertical-align: bottom;">..................................................
<td style="vertical-align: bottom; padding-bottom: 10px;">..................................................
</td>
</tr>
</table>
</td>
</tr>

11
Swift.web/Remit/Transaction/ReprintVoucher/SendIntlReceipt.aspx.cs

@ -116,8 +116,9 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher
exRate.Text = sRow["exRate"].ToString() + "&nbsp" + sRow["payoutCurr"].ToString();
pAmt.Text = GetStatic.ShowDecimal(sRow["pAmt"].ToString()) + "&nbsp" + sRow["payoutCurr"].ToString();
depositType.Text = (sRow["collMode"].ToString()) == "Bank Deposit" ? "JP Post" : sRow["collMode"].ToString();
senderDepositType1.Text = senderDepositType.Text= sRow["depositType"].ToString();
operator1.Text = sRow["createdBy"].ToString();
//operator1.Text = sRow["createdBy"].ToString();
//for second from
//Load Sender Information
@ -128,7 +129,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher
purpose1.Text = sRow["purpose"].ToString();
sDob1.Text = sRow["sDob"].ToString();
sContactNo1.Text = sRow["sContactNo"].ToString();
visaStatus1.Text = sRow["visaStatus"].ToString();
//visaStatus1.Text = sRow["visaStatus"].ToString();
lblOccupation.Text = sRow["occupation"].ToString();
lblOccupation1.Text = sRow["occupation"].ToString();
@ -156,7 +157,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher
tAmt1.Text = GetStatic.ShowWithoutDecimal(sRow["tAmt"].ToString()) + "&nbsp" + sRow["collCurr"].ToString();
exRate1.Text = sRow["exRate"].ToString() + "&nbsp" + sRow["payoutCurr"].ToString();
pAmt1.Text = GetStatic.ShowDecimal(sRow["pAmt"].ToString()) + "&nbsp" + sRow["payoutCurr"].ToString();
depositType1.Text = (sRow["collMode"].ToString()) == "Bank Deposit" ? "JP Post" : sRow["collMode"].ToString();
// depositType1.Text = (sRow["collMode"].ToString()) == "Bank Deposit" ? "JP Post" : sRow["collMode"].ToString();
operator2.Text = sRow["createdBy"].ToString();
if (sRow["paymentMethod"].ToString().ToUpper().Equals("CASH PAYMENT"))
@ -167,8 +168,8 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher
bank8.Attributes.Add("style", "display: none;");
bankAccNo.Attributes.Add("style", "display: none;");
bankAccNo1.Attributes.Add("style", "display: none;");
bankLabel.InnerHtml = "受け取り窓口 Cash Location";
bankLabel1.InnerHtml = "受け取り窓口 Cash Location";
bankLabel.InnerHtml = "Cash Location";
bankLabel1.InnerHtml = "Cash Location";
}
}
else

214
Swift.web/Remit/Transaction/ReprintVoucher/SendIntlReceipt.aspx.designer.cs

@ -7,11 +7,13 @@
// </auto-generated>
//------------------------------------------------------------------------------
namespace Swift.web.Remit.Transaction.ReprintVoucher {
public partial class SendIntlReceipt {
namespace Swift.web.Remit.Transaction.ReprintVoucher
{
public partial class SendIntlReceipt
{
/// <summary>
/// Head1 control.
/// </summary>
@ -20,7 +22,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
/// <summary>
/// Base2 control.
/// </summary>
@ -29,7 +31,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl Base2;
/// <summary>
/// form1 control.
/// </summary>
@ -38,7 +40,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// buttonDiv control.
/// </summary>
@ -47,7 +49,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl buttonDiv;
/// <summary>
/// hide control.
/// </summary>
@ -56,7 +58,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.HiddenField hide;
/// <summary>
/// office control.
/// </summary>
@ -65,7 +67,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Button office;
/// <summary>
/// customer control.
/// </summary>
@ -74,7 +76,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Button customer;
/// <summary>
/// both control.
/// </summary>
@ -83,7 +85,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Button both;
/// <summary>
/// lblfiled control.
/// </summary>
@ -92,7 +94,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblfiled;
/// <summary>
/// tranStatus control.
/// </summary>
@ -101,7 +103,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label tranStatus;
/// <summary>
/// customerDiv control.
/// </summary>
@ -110,7 +112,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl customerDiv;
/// <summary>
/// senderName control.
/// </summary>
@ -119,7 +121,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label senderName;
/// <summary>
/// sMemId control.
/// </summary>
@ -128,7 +130,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sMemId;
/// <summary>
/// sAddress control.
/// </summary>
@ -137,7 +139,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sAddress;
/// <summary>
/// sNativeCountry control.
/// </summary>
@ -146,7 +148,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sNativeCountry;
/// <summary>
/// lblOccupation control.
/// </summary>
@ -155,7 +157,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblOccupation;
/// <summary>
/// sContactNo control.
/// </summary>
@ -164,7 +166,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sContactNo;
/// <summary>
/// sDob control.
/// </summary>
@ -173,7 +175,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sDob;
/// <summary>
/// visaStatus control.
/// </summary>
@ -182,7 +184,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label visaStatus;
/// <summary>
/// pAgentCountry control.
/// </summary>
@ -191,7 +193,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pAgentCountry;
/// <summary>
/// purpose control.
/// </summary>
@ -200,7 +202,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label purpose;
/// <summary>
/// receiverName control.
/// </summary>
@ -209,7 +211,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label receiverName;
/// <summary>
/// paymentMode control.
/// </summary>
@ -218,7 +220,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label paymentMode;
/// <summary>
/// rContactNo control.
/// </summary>
@ -227,7 +229,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label rContactNo;
/// <summary>
/// bankLabel control.
/// </summary>
@ -236,7 +238,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl bankLabel;
/// <summary>
/// pBankName control.
/// </summary>
@ -245,7 +247,16 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pBankName;
/// <summary>
/// senderDepositType control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label senderDepositType;
/// <summary>
/// relationShip control.
/// </summary>
@ -254,7 +265,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label relationShip;
/// <summary>
/// bank7 control.
/// </summary>
@ -263,7 +274,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableCell bank7;
/// <summary>
/// bank8 control.
/// </summary>
@ -272,7 +283,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableCell bank8;
/// <summary>
/// pBranchName control.
/// </summary>
@ -281,7 +292,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pBranchName;
/// <summary>
/// rAddress control.
/// </summary>
@ -290,7 +301,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label rAddress;
/// <summary>
/// bankAccNo control.
/// </summary>
@ -299,7 +310,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableRow bankAccNo;
/// <summary>
/// accountNo control.
/// </summary>
@ -308,7 +319,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label accountNo;
/// <summary>
/// pAgent control.
/// </summary>
@ -317,7 +328,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pAgent;
/// <summary>
/// rAmtWords control.
/// </summary>
@ -326,7 +337,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label rAmtWords;
/// <summary>
/// controlNo control.
/// </summary>
@ -335,7 +346,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label controlNo;
/// <summary>
/// createdBy control.
/// </summary>
@ -344,7 +355,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label createdBy;
/// <summary>
/// approvedDate control.
/// </summary>
@ -353,7 +364,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label approvedDate;
/// <summary>
/// cAmt control.
/// </summary>
@ -362,7 +373,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label cAmt;
/// <summary>
/// serviceCharge control.
/// </summary>
@ -371,7 +382,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label serviceCharge;
/// <summary>
/// tAmt control.
/// </summary>
@ -380,7 +391,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label tAmt;
/// <summary>
/// exRate control.
/// </summary>
@ -389,7 +400,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label exRate;
/// <summary>
/// pAmt control.
/// </summary>
@ -398,7 +409,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pAmt;
/// <summary>
/// serial1 control.
/// </summary>
@ -407,7 +418,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label serial1;
/// <summary>
/// depositType control.
/// </summary>
@ -416,16 +427,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label depositType;
/// <summary>
/// operator1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label operator1;
/// <summary>
/// divInvoiceSecond control.
/// </summary>
@ -434,7 +436,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTable divInvoiceSecond;
/// <summary>
/// officeDiv control.
/// </summary>
@ -443,7 +445,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl officeDiv;
/// <summary>
/// divInvoiceSecond1 control.
/// </summary>
@ -452,7 +454,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTable divInvoiceSecond1;
/// <summary>
/// senderName1 control.
/// </summary>
@ -461,7 +463,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label senderName1;
/// <summary>
/// sMemId1 control.
/// </summary>
@ -470,7 +472,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sMemId1;
/// <summary>
/// sAddress1 control.
/// </summary>
@ -479,7 +481,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sAddress1;
/// <summary>
/// sNativeCountry1 control.
/// </summary>
@ -488,7 +490,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sNativeCountry1;
/// <summary>
/// lblOccupation1 control.
/// </summary>
@ -497,7 +499,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblOccupation1;
/// <summary>
/// sContactNo1 control.
/// </summary>
@ -506,7 +508,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sContactNo1;
/// <summary>
/// sDob1 control.
/// </summary>
@ -515,16 +517,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sDob1;
/// <summary>
/// visaStatus1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label visaStatus1;
/// <summary>
/// pAgentCountry1 control.
/// </summary>
@ -533,7 +526,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pAgentCountry1;
/// <summary>
/// purpose1 control.
/// </summary>
@ -542,7 +535,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label purpose1;
/// <summary>
/// receiverName1 control.
/// </summary>
@ -551,7 +544,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label receiverName1;
/// <summary>
/// paymentMode1 control.
/// </summary>
@ -560,7 +553,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label paymentMode1;
/// <summary>
/// rContactNo1 control.
/// </summary>
@ -569,7 +562,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label rContactNo1;
/// <summary>
/// bankLabel1 control.
/// </summary>
@ -578,7 +571,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl bankLabel1;
/// <summary>
/// bank2 control.
/// </summary>
@ -587,7 +580,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableCell bank2;
/// <summary>
/// pBankName1 control.
/// </summary>
@ -596,7 +589,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pBankName1;
/// <summary>
/// relationship1 control.
/// </summary>
@ -605,7 +598,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label relationship1;
/// <summary>
/// bank3 control.
/// </summary>
@ -614,7 +607,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableCell bank3;
/// <summary>
/// bank4 control.
/// </summary>
@ -623,7 +616,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableCell bank4;
/// <summary>
/// pBranchName1 control.
/// </summary>
@ -632,7 +625,16 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pBranchName1;
/// <summary>
/// senderDepositType1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label senderDepositType1;
/// <summary>
/// bankAccNo1 control.
/// </summary>
@ -641,7 +643,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableRow bankAccNo1;
/// <summary>
/// accountNo1 control.
/// </summary>
@ -650,7 +652,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label accountNo1;
/// <summary>
/// pAgent1 control.
/// </summary>
@ -659,7 +661,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pAgent1;
/// <summary>
/// rAmtWords1 control.
/// </summary>
@ -668,7 +670,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label rAmtWords1;
/// <summary>
/// controlNo1 control.
/// </summary>
@ -677,7 +679,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label controlNo1;
/// <summary>
/// createdBy1 control.
/// </summary>
@ -686,7 +688,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label createdBy1;
/// <summary>
/// approvedDate1 control.
/// </summary>
@ -695,7 +697,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label approvedDate1;
/// <summary>
/// cAmt1 control.
/// </summary>
@ -704,7 +706,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label cAmt1;
/// <summary>
/// serviceCharge1 control.
/// </summary>
@ -713,7 +715,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label serviceCharge1;
/// <summary>
/// tAmt1 control.
/// </summary>
@ -722,7 +724,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label tAmt1;
/// <summary>
/// exRate1 control.
/// </summary>
@ -731,7 +733,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label exRate1;
/// <summary>
/// pAmt1 control.
/// </summary>
@ -740,7 +742,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pAmt1;
/// <summary>
/// serial2 control.
/// </summary>
@ -749,7 +751,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label serial2;
/// <summary>
/// depositType1 control.
/// </summary>
@ -758,7 +760,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label depositType1;
/// <summary>
/// operator2 control.
/// </summary>
@ -767,7 +769,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label operator2;
/// <summary>
/// officeCenterDiv control.
/// </summary>
@ -776,7 +778,7 @@ namespace Swift.web.Remit.Transaction.ReprintVoucher {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl officeCenterDiv;
/// <summary>
/// Table1 control.
/// </summary>

23
Swift.web/RemittanceSystem/RemittanceReports/RejectTransactionReport/Mange.aspx

@ -19,12 +19,13 @@
<link href="/ui/css/style.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.15/jquery.mask.min.js" type="text/javascript"></script>
<script src="/js/functions.js" type="text/javascript"></script>
<script src="../../../../../js/swift_calendar.js"></script>
<script type="text/javascript" language="javascript">
function LoadCalendars() {
ShowCalFromToUpToToday("#<% =fromDate.ClientID%>", "#<% =toDate.ClientID%>", 1);
$('#<%=fromDate.ClientID%>').mask('0000-00-00');
$('#<%=toDate.ClientID%>').mask('0000-00-00');
$('#<% =fromDate.ClientID%>').mask('0000-00-00');
$('#<% =toDate.ClientID%>').mask('0000-00-00');
ShowCalFromToUpToToday("#<% =fromDate.ClientID%>", "#<% =toDate.ClientID%>");
}
LoadCalendars();
</script>
@ -51,12 +52,22 @@
var agent = "<%=AgentId %>";
var branch = GetValue("<% =sBranch.ClientID %>").split('|')[0];
var trantype = GetValue("<% =trantype.ClientID%>");
var isOnlineTxn = "";
if (trantype == 'm') {
isOnlineTxn = 'm';
} else if (trantype == 'o') {
trantype = 'm'
isOnlineTxn = 'o';
} else {
isOnlineTxn = "";
}
var url = "../../../RemittanceSystem/RemittanceReports/Reports.aspx?reportName=rejectedReport" +
"&from=" + fromDate +
"&to=" + toDate +
"&sAgent=" + branch +
"&tType=" + trantype;
"&tType=" + trantype +
"&isOnlineTxn=" + isOnlineTxn;
OpenInNewWindow(url);
return false;
@ -104,8 +115,10 @@
</div>
<div class="col-md-9">
<asp:DropDownList ID="trantype" runat="server" CssClass="form-control">
<asp:ListItem Value="i" Text="Counter"></asp:ListItem>
<asp:ListItem Value="" Selected="True" Text="All"></asp:ListItem>
<asp:ListItem Value="i" Text="CR Panel"></asp:ListItem>
<asp:ListItem Value="m" Text="Mobile"></asp:ListItem>
<asp:ListItem Value="o" Text="Web Online"></asp:ListItem>
</asp:DropDownList>
</div>
</div>

13
Swift.web/RemittanceSystem/RemittanceReports/Reports.aspx.cs

@ -729,7 +729,8 @@ namespace Swift.web.RemittanceSystem.RemittanceReports
string sAgent = GetStatic.ReadQueryString("sAgent", "");
string sBranch = GetStatic.ReadQueryString("sBranch", "");
string tranType = GetStatic.ReadQueryString("tType", "");
return (new TranAgentReportDao().GetRejectedReport(GetStatic.GetUser(), "rejectedReport", fromDate, toDate, sAgent, sBranch, "", tranType));
string isOnlineTxn = GetStatic.ReadQueryString("isOnlineTxn", "");
return (new TranAgentReportDao().GetRejectedReport(GetStatic.GetUser(), "rejectedReport", fromDate, toDate, sAgent, sBranch, "", tranType, isOnlineTxn));
}
private ReportResult PrepareCheckReferalReport()
{
@ -1037,9 +1038,7 @@ namespace Swift.web.RemittanceSystem.RemittanceReports
}
private ReportResult PrepareDailySendingReport()
{
string payoutPartnerName = GetStatic.ReadQueryString("payoutPartner", "");
string payoutPartnerId = GetStatic.ReadQueryString("payoutPartnerId", "");
string sAgentId = GetStatic.ReadQueryString("sAgent", "").Split('|')[0].ToString();
string verificationType = GetStatic.ReadQueryString("verificationType", "");
string fromDate = GetStatic.ReadQueryString("fromDate", "");
string toDate = GetStatic.ReadQueryString("toDate", "");
string user = GetStatic.GetUser();
@ -1047,12 +1046,12 @@ namespace Swift.web.RemittanceSystem.RemittanceReports
fieldFormat = "|||||||||||||N||N|N|N||||";
fieldAlignment = "|||||||||||||R||R|R|R|||||";
totalText = "Total";
totalFields = "13|15|16";
totalFields = "12|14|15|16|19";
subTotalBy = 4;
subTotalFields = "13|15|16";
subTotalFields = "12|14|15|16|19";
subTotalText = "<b>Sub Total</b>";
return (new TranReportDao().DailySendingReport(user, fromDate, toDate, sAgentId, payoutPartnerName, payoutPartnerId));
return (new TranReportDao().DailySendingReport(user, fromDate, toDate, verificationType));
}
private ReportResult PrepareNoWorkPermitReport()
{

Loading…
Cancel
Save