arjun 4 years ago
parent
commit
d59699211a
  1. 1
      Common/Model/ReferralReports/TransactionStatementModel.cs
  2. 3
      Database/Sp/PROC_REFERRAL_TRANSACTION_REPORT.sql
  3. 86
      JMEAgentSystem/Content/receipt.css
  4. 18
      JMEAgentSystem/JMEAgentSystem.csproj
  5. 1
      JMEAgentSystem/Scripts/ReferralReports/DashBoard.js
  6. 8
      JMEAgentSystem/WebPages/AddIdPicture/Manage.aspx
  7. 2
      JMEAgentSystem/WebPages/CustomerRegistration/PrintDetails.aspx
  8. 1
      JMEAgentSystem/WebPages/Default.aspx
  9. 750
      JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx
  10. 17
      JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.cs
  11. 708
      JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.designer.cs
  12. 324
      JMEAgentSystem/obj/Release/Package/PackageTmp/WebPages/BenificiaryRegistration/Manage.aspx
  13. 3
      Repository/DAO/ReferralReports/ReferralReportsRepo.cs

1
Common/Model/ReferralReports/TransactionStatementModel.cs

@ -7,5 +7,6 @@
public string SenderName { get; set; }
public string CollectionMode { get; set; }
public string SendingAmount { get; set; }
public string PayoutAmount { get; set; }
}
}

3
Database/Sp/PROC_REFERRAL_TRANSACTION_REPORT.sql

@ -22,10 +22,11 @@ BEGIN
END
IF @FLAG = 'TOP-5'
BEGIN
SELECT TOP 5 DBO.DECRYPTDB(CONTROLNO) CONTROLNO, CONVERT(VARCHAR,CREATEDDATE,102) CREATEDDATE, CAMT, SENDERNAME, COLLMODE
SELECT TOP 5 DBO.DECRYPTDB(CONTROLNO) CONTROLNO, CONVERT(VARCHAR,CREATEDDATE,102) CREATEDDATE, CAMT, SENDERNAME, COLLMODE, PAMT
FROM REMITTRAN (NOLOCK)
WHERE PROMOTIONCODE = @REFERRAL_CODE
AND TRANSTATUS <> 'CANCEL'
ORDER BY CREATEDDATE DESC
END
END

86
JMEAgentSystem/Content/receipt.css

@ -0,0 +1,86 @@
.receipt * {
font-size: 11px;
}
.receipt p {
font-size: 11px;
padding: 1px 0;
margin: 0;
line-height: 10px;
}
.receipt td {
/*padding: 0 5px;*/
margin: 0;
line-height: 14px;
}
.receipt p {
}
.receipt .logo {
width: 155px;
margin-top:10px;
}
.receipt .logo img {
width: 100%;
}
.receipt h2,
.receipt h2 span {
padding: 0;
margin: 3px 0;
font-size: 14px;
}
.receipt h3 {
font-size: 14px;
font-weight: 600;
padding: 0;
margin: 3px 0;
}
.receipt h3 span {
font-size: 14px;
font-weight: 600;
}
.receipt .copy p {
font-size: 12px;
font-weight: 600;
color: #ff0000;
text-align: left
}
.receipt label {
font-weight: 500;
margin-bottom: 0;
}
.receipt .sender-value {
text-transform: uppercase;
}
.receipt .amount-info table {
border-collapse: collapse;
}
.receipt .details h4 {
margin: 4px 0;
font-weight: 600;
}
@media print {
.receipt .footer {
page-break-after: always;
}
.receipt .no-margin {
margin-top: 0% !important;
}
}
.receipt .details h4 {
margin: 4px 0;
}

18
JMEAgentSystem/JMEAgentSystem.csproj

@ -179,6 +179,7 @@
<Content Include="Content\css\ie9.css" />
<Content Include="Content\css\signature-pad.css" />
<Content Include="Content\icons.css" />
<Content Include="Content\receipt.css" />
<Content Include="images\Document\alienBack.jpg" />
<Content Include="images\Document\alienFront.jpg" />
<Content Include="images\jme.png" />
@ -329,6 +330,7 @@
<Content Include="Plugins\timepicker\bootstrap-timepicker.min.css" />
<Content Include="Scripts\Account\ChangePassword.js" />
<Content Include="Scripts\Account\Login.js" />
<Content Include="Scripts\AddIdPitcure\addPicture.js" />
<Content Include="Scripts\Alert\AlertBox.js" />
<Content Include="Scripts\app.js" />
<Content Include="Scripts\bootstrap.js" />
@ -433,8 +435,10 @@
<Content Include="ui\js\sparkline-custom.js" />
<Content Include="ui\js\sweet-alert\sweetalert-dev.js" />
<Content Include="ui\js\sweet-alert\sweetalert.min.js" />
<Content Include="WebPages\AddIdPicture\Manage.aspx" />
<Content Include="WebPages\BenificiaryRegistration\Manage.aspx" />
<Content Include="WebPages\BenificiaryRegistration\PrintBeneficiaryDetails.aspx" />
<Content Include="WebPages\Receipt\ViewReceipt.aspx" />
<Content Include="WebPages\SendTxn\PrintSendMoneyRequestDetails.aspx" />
<Content Include="WebPages\SendTxn\SendTxnRequest.aspx" />
<None Include="Scripts\jquery-3.3.1.intellisense.js" />
@ -566,6 +570,13 @@
<Compile Include="WebPages\Account\SignUp.aspx.designer.cs">
<DependentUpon>SignUp.aspx</DependentUpon>
</Compile>
<Compile Include="WebPages\AddIdPicture\Manage.aspx.cs">
<DependentUpon>Manage.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebPages\AddIdPicture\Manage.aspx.designer.cs">
<DependentUpon>Manage.aspx</DependentUpon>
</Compile>
<Compile Include="WebPages\BenificiaryRegistration\Manage.aspx.cs">
<DependentUpon>Manage.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
@ -618,6 +629,13 @@
<Compile Include="WebPages\GetFileView.ashx.cs">
<DependentUpon>GetFileView.ashx</DependentUpon>
</Compile>
<Compile Include="WebPages\Receipt\ViewReceipt.aspx.cs">
<DependentUpon>ViewReceipt.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebPages\Receipt\ViewReceipt.aspx.designer.cs">
<DependentUpon>ViewReceipt.aspx</DependentUpon>
</Compile>
<Compile Include="WebPages\Reports\TransactionReport.aspx.cs">
<DependentUpon>TransactionReport.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>

1
JMEAgentSystem/Scripts/ReferralReports/DashBoard.js

@ -26,6 +26,7 @@ function LoadLastFiveTransactions() {
row += '<td>' + d['SenderName'] + '</td>';
row += '<td>' + d['CollectionMode'] + '</td>';
row += '<td>' + CurrencyFormatted(parseFloat(d['SendingAmount'])) + '</td>';
row += '<td>' + CurrencyFormatted(parseFloat(d['PayoutAmount'])) + '</td>';
row += '</tr>';
table.append(row);

8
JMEAgentSystem/WebPages/AddIdPicture/Manage.aspx

@ -65,11 +65,9 @@
</div>
</div>
</div>
<div class="row" runat="server">
<div class="col-md-6 form-group">
<%--<asp:Button ID="registerCustomerAndReceiver" runat="server" CssClass="btn btn-primary m-t-25" disabled="disabled" Text="Submit" OnClientClick="return CheckMasterFormValidation()" />--%>
<asp:Button ID="upload" runat="server" CssClass="btn btn-primary m-t-25" Text="Upload" OnClientClick="return ValidateRequiredfields()" OnClick="upload_Click" />
</div>
<div class="col-md-6 form-group">
<%--<asp:Button ID="registerCustomerAndReceiver" runat="server" CssClass="btn btn-primary m-t-25" disabled="disabled" Text="Submit" OnClientClick="return CheckMasterFormValidation()" />--%>
<asp:Button ID="upload" runat="server" CssClass="btn btn-primary m-t-25" Text="Upload" OnClientClick="return ValidateRequiredfields()" OnClick="upload_Click" />
</div>
</div>
</div>

2
JMEAgentSystem/WebPages/CustomerRegistration/PrintDetails.aspx

@ -142,7 +142,7 @@
<tr>
<td style="white-space: nowrap" class="tg-fymr">Native Country:</td>
<td colspan="2" class="tg-0pky" runat="server" id="recNativeCountry"></td>
<td class="tg-fymr">Receiver Address:</td>
<td class="tg-fymr">Beneficiary Address:</td>
<td colspan="2" class="tg-0pky" runat="server" id="recAddress"></td>
</tr>
<tr>

1
JMEAgentSystem/WebPages/Default.aspx

@ -103,6 +103,7 @@
<th>Sender Name</th>
<th>Collection Mode</th>
<th>Sending Amount</th>
<th>Payout Amount</th>
</tr>
</thead>
<tbody>

750
JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx

@ -0,0 +1,750 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="ViewReceipt.aspx.cs" Inherits="JMEAgentSystem.WebPages.Receipt.ViewReceipt" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<style type="text/css">
.receipt {
margin-top: -160px;
}
#buttonRow {
margin: 10px;
}
.no-margin {
margin-top: 10%;
}
@media only screen and (max-width: 991px) {
.no-margin {
margin-top: 17%;
}
}
@media print {
.receipt {
margin-top: -100px;
}
.footer {
display: none;
}
.no-margin {
margin-top: 0px !important;
}
.buttonDiv {
display: none;
}
.officeDiv {
margin-top: 0% !important;
}
}
</style>
<%--<div class="">
<div class="page-header-title">
<h4 class="page-title">View Receipt</h4>
</div>
</div>--%>
<div class="page-wrapper">
<div class="receipt">
<div class="row" id="receiptRow">
<div id="customerDiv" runat="server">
<table border="0" width="100%" class="no-margin">
<!--Header-->
<tr>
<td>
<table width="100%;" border="0">
<tr>
<td width="10%;">
<div class="logo">
<img src="/images/jme.png" />
</div>
<p>Kanto Finance Bureau License</p>
<p>
Number:<span>0006</span>
</td>
<td width="90%;" style="padding: 0 10px;">
<h3>JME Japan</h3>
<p>
169-0073,Omori Building 4F(AB), Hyakunincho 1-10-07
<p>
<p>
Shinjuku-ku, Tokyo, japan
<p>
<p>
Tel:03-5475-3913, <span>Fax:03-5475-3913</span>
<p>
<p>
email:info@japanremit.com
<p>
</td>
</tr>
</table>
</td>
<td>
<table width="100%;" border="0">
<tr>
<td colspan="2" class="copy" width="100%;">
<p style="text-decoration: underline; color: #ff0000;">Customer Copy</p>
</td>
</tr>
</table>
</td>
</tr>
<!--body-->
<tr valign="top">
<td width="80%;">
<table width="100%;">
<!--sender information-->
<tr>
<td>
<table width="100%;" style="border: 1px solid #ccc; padding: 0 5px;">
<tr>
<td colspan="4 " class="details" style="padding: 0 5px;">
<h4>SENDER INFORMATION</h4>
</td>
</tr>
<tr>
<td width="16% " valign="top" style="padding: 0 5px;">
<label>Senders Name</label>
</td>
<td width="38% " valign="top">
<span class="sender-value ">
<asp:Label ID="senderName" runat="server"></asp:Label></span>
</td>
<td width="18% " valign="top">
<label>Membership Card</label>
</td>
<td width="28% ">
<span class="sender-value ">
<asp:Label ID="sMemId" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Address</label>
</td>
<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>
<td>
<span class="sender-value ">
<asp:Label ID="sNativeCountry" runat="server"></asp:Label></span>
</td>
<td>
<label>Purpose</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="purpose" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Date of birth</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="sDob" runat="server"></asp:Label></span>
</td>
<td>
<label>Mobile No.</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="sContactNo" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Visa Status</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="visaStatus" runat="server"></asp:Label></span>
</td>
</tr>
</table>
</td>
</tr>
<!--Receiver information-->
<tr style="">
<td>
<table width="100%;" style="border: 1px solid #ccc; padding: 5px;">
<tr>
<td colspan="4" class="details" style="padding: 0 5px;">
<h4>RECEIVER INFORMATION</h4>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Payout Country</label>
</td>
<td colspan="3">
<span class="sender-value">
<asp:Label ID="pAgentCountry" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td width="16%" valign="top" style="padding: 0 5px;">
<label>Receiver's Name</label>
</td>
<td width="38%" valign="top">
<span class="sender-value">
<asp:Label ID="receiverName" runat="server"></asp:Label></span>
</td>
<td width="18%">
<label>Payment Mode</label>
</td>
<td width="28%"><span class="sender-value">
<span class="sender-value">
<asp:Label ID="paymentMode" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Contact No</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="rContactNo" runat="server"></asp:Label></span>
</td>
<td>
<label>Correspondent</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="pAgent" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Address</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="rAddress" runat="server"></asp:Label></span>
</td>
<td>
<label id="bankLable" runat="server">Bank Name</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="pBankName" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Relationship</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="relationShip" runat="server"></asp:Label></span>
</td>
<td id="bank7" runat="server">
<label>Branch</label>
</td>
<td id="bank8" runat="server">
<span class="sender-value">
<asp:Label ID="pBranchName" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td colspan="2" style="padding: 0 5px;">
<label>&nbsp;</label>
</td>
<td id="bank9" runat="server">
<label>Account No</label>
</td>
<td id="bank10" runat="server">
<span class="sender-value">
<asp:Label ID="accountNo" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td colspan="4" style="padding: 5px;">
<p>
<em>Receive Amount NPR: <span>
<asp:Label ID="rAmtWords" runat="server"></asp:Label></span></em>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="20%" class="amount-info">
<table width="100%;" border="1" cellspacing="0 " cellpadding="0 ">
<tr>
<td style="padding: 0 5px;">
<h2>JME NO:<span><asp:Label ID="controlNo" runat="server"></asp:Label></span></h2>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>User:<span><asp:Label ID="createdBy" runat="server"></asp:Label></span></p>
<p>
<span>
<asp:Label ID="approvedDate" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Collected 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>
<p>
<span>
<asp:Label ID="serviceCharge" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Transfer Amount</p>
<p>
<span>
<asp:Label ID="tAmt" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Exchange Rate</p>
<p>
<span>
<asp:Label ID="exRate" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Receive Amount</p>
<h3><span>
<asp:Label ID="pAmt" runat="server"></asp:Label></span></h3>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Serial:<span><asp:Label ID="serial1" runat="server"></asp:Label></span></p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Deposit Type</p>
<p>
<span>
<asp:Label ID="depositType" runat="server"></asp:Label></span>
</p>
</td>
</tr>
</table>
</td>
</tr>
<!--information section-->
<tr valign="top">
<td colspan="2">
<table width="100%;" style="border: 1px solid #ccc; padding: 5px;">
<tr valign="top" style="height: 80px;">
<td colspan="4" style="padding: 5px;">
<p>THE ABOVE INFORMATION IS CORRECT AND I DECLARE THAT I READ TERMS AND CONDITIONS</p>
</td>
</tr>
<tr>
<td style="padding: 5px;">
<label>Customer's Signature</label>
</td>
<td>..................................................
</td>
<td>
<label>Operator:(<asp:Label ID="operator1" runat="server"></asp:Label>)</label>
</td>
<td>..................................................
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%;" style="margin: 45px 0;" id="divInvoiceSecond" runat="server">
<tr>
<td>
<center>-----------------------------------------------------------------Cut From Here-----------------------------------------------------------------</center>
</td>
</tr>
</table>
</div>
<div id="officeDiv" class="officeDiv" runat="server">
<table border="0" width="100%" id="divInvoiceSecond1" runat="server">
<!--Header-->
<tr>
<td>
<table width="100%;" border="0">
<tr>
<td width="10%;">
<div class="logo">
<img src="../../../Images/jme.png" />
</div>
<p>Kanto Finance Bureau License</p>
<p>
Number:<span>0006</span>
</td>
<td width="90%;" style="padding: 0 10px;">
<h3>JME Japan</h3>
<p>
169-0073,Omori Building 4F(AB), Hyakunincho 1-10-07
<p>
<p>
Shinjuku-ku, Tokyo, japan
<p>
<p>
Tel:03-5475-3913, <span>Fax:03-5475-3913</span>
<p>
<p>
email:info@japanremit.com
<p>
</td>
</tr>
</table>
</td>
<td>
<table width="100%;" border="0">
<tr>
<td colspan="2" class="copy" width="100%;">
<p style="text-decoration: underline; color: #ff0000;">Office Copy</p>
</td>
</tr>
</table>
</td>
</tr>
<!--body-->
<tr valign="top">
<td width="80%;">
<table width="100%;">
<!--sender information-->
<tr>
<td>
<table width="100%;" style="border: 1px solid #ccc; padding: 5px;">
<tr>
<td colspan="4 " class="details" style="padding: 0 5px;">
<h4>SENDER INFORMATION</h4>
</td>
</tr>
<tr>
<td width="16% " valign="top" style="padding: 0 5px;">
<label>Sender Name</label>
</td>
<td width="38% " valign="top">
<span class="sender-value ">
<asp:Label ID="senderName1" runat="server"></asp:Label></span>
</td>
<td width="18% " valign="top">
<label>Membership Card</label>
</td>
<td width="28% ">
<span class="sender-value ">
<asp:Label ID="sMemId1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<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>
<td>
<span class="sender-value ">
<asp:Label ID="sNativeCountry1" runat="server"></asp:Label></span>
</td>
<td>
<label>Purpose</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="purpose1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Date of birth</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="sDob1" runat="server"></asp:Label></span>
</td>
<td>
<label>Mobile No.</label>
</td>
<td>
<span class="sender-value ">
<asp:Label ID="sContactNo1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<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>
</tr>
</table>
</td>
</tr>
<!--Receiver information-->
<tr style="">
<td>
<table width="100%;" style="border: 1px solid #ccc; padding: 5px;">
<tr>
<td colspan="4" class="details" style="padding: 0 5px;">
<h4>RECEIVER INFORMATION</h4>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Payout Country</label>
</td>
<td colspan="3">
<span class="sender-value">
<asp:Label ID="pAgentCountry1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td width="16%" valign="top" style="padding: 0 5px;">
<label>Receiver's Name</label>
</td>
<td width="38%" valign="top">
<span class="sender-value">
<asp:Label ID="receiverName1" runat="server"></asp:Label></span>
</td>
<td width="18%">
<label>Payment Mode</label>
</td>
<td width="28%"><span class="sender-value">
<span class="sender-value">
<asp:Label ID="paymentMode1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Contact No</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="rContactNo1" runat="server"></asp:Label></span>
</td>
<td>
<label>Correspondent</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="pAgent1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<label>Address</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="rAddress1" runat="server"></asp:Label></span>
</td>
<td>
<label id="bankLable1" 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>Relationship</label>
</td>
<td>
<span class="sender-value">
<asp:Label ID="relationShip1" runat="server"></asp:Label></span>
</td>
<td id="bank3" runat="server">
<label>Branch</label>
</td>
<td id="bank4" runat="server">
<span class="sender-value">
<asp:Label ID="pBranchName1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td colspan="2" style="padding: 0 5px;">
<label>&nbsp;</label>
</td>
<td id="bank5" runat="server">
<label>Account No</label>
</td>
<td id="bank6" runat="server">
<span class="sender-value">
<asp:Label ID="accountNo1" runat="server"></asp:Label></span>
</td>
</tr>
<tr>
<td colspan="4" style="padding: 5px;">
<p>
<em>Receive Amount NPR: <span>
<asp:Label ID="rAmtWords1" runat="server"></asp:Label></span></em>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="20%" class="amount-info">
<table width="100%;" border="1" cellspacing="0 " cellpadding="0 ">
<tr>
<td style="padding: 0 5px;">
<h2>JME NO:<span><asp:Label ID="controlNo1" runat="server"></asp:Label></span></h2>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>User:<span><asp:Label ID="createdBy1" runat="server"></asp:Label></span></p>
<p>
<span>
<asp:Label ID="approvedDate1" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Collected 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>
<p>
<span>
<asp:Label ID="serviceCharge1" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Transfer Amount</p>
<p>
<span>
<asp:Label ID="tAmt1" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Exchange Rate</p>
<p>
<span>
<asp:Label ID="exRate1" runat="server"></asp:Label></span>
</p>
</td>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Receive 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>
</tr>
<tr>
<td style="padding: 0 5px;">
<p>Deposit Type</p>
<p>
<span>
<asp:Label ID="depositType1" runat="server"></asp:Label></span>
</p>
</td>
</tr>
</table>
</td>
</tr>
<!--information section-->
<tr valign="top">
<td colspan="2">
<table width="100%;" style="border: 1px solid #ccc; padding: 5px;">
<tr valign="top" style="height: 80px;">
<td colspan="4" style="padding: 5px;">
<p>THE ABOVE INFORMATION IS CORRECT AND I DECLARE THAT I READ TERMS AND CONDITIONS</p>
</td>
</tr>
<tr>
<td style="padding: 5px;">
<label>Customer's Signature</label>
</td>
<td>..................................................
</td>
<td>
<label>Operator:(<asp:Label ID="operator2" runat="server"></asp:Label>)</label>
</td>
<td>..................................................
</td>
</tr>
</table>
</td>
</tr>
</table>
<div id="officeCenterDiv" runat="server">
<table width="100%;" style="margin: 45px 0;" id="Table1" runat="server">
<tr>
<td>
<center>-----------------------------------------------------------------Cut From Here-----------------------------------------------------------------</center>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="Script" runat="server">
<link href="../../Content/receipt.css" rel="stylesheet" />
</asp:Content>

17
JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.cs

@ -0,0 +1,17 @@
using System;
namespace JMEAgentSystem.WebPages.Receipt
{
public partial class ViewReceipt : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
officeDiv.Visible = true;
customerDiv.Visible = true;
officeCenterDiv.Visible = false;
}
}
}
}

708
JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.designer.cs

@ -0,0 +1,708 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace JMEAgentSystem.WebPages.Receipt {
public partial class ViewReceipt {
/// <summary>
/// customerDiv control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sNativeCountry;
/// <summary>
/// purpose 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 purpose;
/// <summary>
/// sDob 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 sDob;
/// <summary>
/// sContactNo 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 sContactNo;
/// <summary>
/// visaStatus 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 visaStatus;
/// <summary>
/// pAgentCountry 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 pAgentCountry;
/// <summary>
/// receiverName 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 receiverName;
/// <summary>
/// paymentMode 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 paymentMode;
/// <summary>
/// rContactNo 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 rContactNo;
/// <summary>
/// pAgent 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 pAgent;
/// <summary>
/// rAddress 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 rAddress;
/// <summary>
/// bankLable control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl bankLable;
/// <summary>
/// pBankName 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 pBankName;
/// <summary>
/// relationShip 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 relationShip;
/// <summary>
/// bank7 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pBranchName;
/// <summary>
/// bank9 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableCell bank9;
/// <summary>
/// bank10 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableCell bank10;
/// <summary>
/// accountNo 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 accountNo;
/// <summary>
/// rAmtWords 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 rAmtWords;
/// <summary>
/// controlNo 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 controlNo;
/// <summary>
/// createdBy 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 createdBy;
/// <summary>
/// approvedDate 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 approvedDate;
/// <summary>
/// cAmt 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 cAmt;
/// <summary>
/// serviceCharge 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 serviceCharge;
/// <summary>
/// tAmt 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 tAmt;
/// <summary>
/// exRate 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 exRate;
/// <summary>
/// pAmt 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 pAmt;
/// <summary>
/// serial1 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 serial1;
/// <summary>
/// depositType 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 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label sNativeCountry1;
/// <summary>
/// purpose1 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 purpose1;
/// <summary>
/// sDob1 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 sDob1;
/// <summary>
/// sContactNo1 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 sContactNo1;
/// <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>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pAgentCountry1;
/// <summary>
/// receiverName1 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 receiverName1;
/// <summary>
/// paymentMode1 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 paymentMode1;
/// <summary>
/// rContactNo1 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 rContactNo1;
/// <summary>
/// pAgent1 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 pAgent1;
/// <summary>
/// rAddress1 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 rAddress1;
/// <summary>
/// bankLable1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl bankLable1;
/// <summary>
/// bank2 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label pBranchName1;
/// <summary>
/// bank5 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableCell bank5;
/// <summary>
/// bank6 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTableCell bank6;
/// <summary>
/// accountNo1 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 accountNo1;
/// <summary>
/// rAmtWords1 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 rAmtWords1;
/// <summary>
/// controlNo1 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 controlNo1;
/// <summary>
/// createdBy1 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 createdBy1;
/// <summary>
/// approvedDate1 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 approvedDate1;
/// <summary>
/// cAmt1 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 cAmt1;
/// <summary>
/// serviceCharge1 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 serviceCharge1;
/// <summary>
/// tAmt1 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 tAmt1;
/// <summary>
/// exRate1 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 exRate1;
/// <summary>
/// pAmt1 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 pAmt1;
/// <summary>
/// serial2 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 serial2;
/// <summary>
/// depositType1 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 depositType1;
/// <summary>
/// operator2 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 operator2;
/// <summary>
/// officeCenterDiv control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// 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>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlTable Table1;
}
}

324
JMEAgentSystem/obj/Release/Package/PackageTmp/WebPages/BenificiaryRegistration/Manage.aspx

@ -0,0 +1,324 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Manage.aspx.cs" Inherits="JMEAgentSystem.WebPages.BenificiaryRegistration.Manage" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<asp:UpdatePanel ID="up1" runat="server">
<ContentTemplate>
<div class="hidden">
<asp:HiddenField ID="hideCustomerId" runat="server" />
</div>
<div class="page-wrapper">
<div class="row">
<div class="col-sm-12">
<div class="page-title">
<h1></h1>
<ol class="breadcrumb">
<li><a href="../../Front.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
<li><a href="#">Registration </a></li>
<li><a href="#">Add Beneficiary </a></li>
</ol>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="register-form">
<div class="panel panel-default clearfix m-b-20">
<div class="panel-heading">
<h4 class="panel-title">
Add Beneficiary
</div>
<div class="panel-body">
<div class="col-md-12">
<div class="form-group">
<label>Enter Customer Id:<span class="errormsg">*</span></label>
<asp:TextBox ID="customerId" Width="200px" runat="server" CssClass="form-control"></asp:TextBox>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="report-tab" id="regUp" runat="server">
<div class="tab-content">
<div role="tabpanel" class="tab-pane" id="List">
</div>
<div role="tabpanel" id="Manage">
<div class="row">
<div class="col-sm-12 col-md-12">
<div class="register-form">
<div class="panel panel-default clearfix m-b-20">
<div class="panel-heading">
<h4 class="panel-title">Receiver Details </h4>
</div>
<div class="panel-body">
<div class="col-md-12" id="msgDiv" runat="server" visible="false" style="background-color: red;">
<asp:Label ID="msgLabel" runat="server" ForeColor="White"></asp:Label>
</div>
<%--body part--%>
<asp:HiddenField ID="HiddenField1" runat="server" />
<asp:HiddenField ID="hideBenificialId" runat="server" />
<asp:HiddenField ID="hideMembershipId" runat="server" />
<div class="col-md-4">
<div class="form-group">
<label>Country:<span class="errormsg">*</span></label>
<asp:DropDownList ID="ddlCountry" onChange="ddlCountryChange()" CssClass="form-control" runat="server">
<asp:ListItem Text="Select.."></asp:ListItem>
</asp:DropDownList>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Beneficiary Type:<span class="errormsg">*</span></label>
<asp:DropDownList ID="ddlBenificiaryType" CssClass="form-control" runat="server">
</asp:DropDownList>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Email:</label>
<asp:TextBox ID="txtEmail" TextMode="Email" runat="server" CssClass="form-control"></asp:TextBox>
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" Display="Dynamic"
ErrorMessage="Invalid Email Id!" ForeColor="Red" SetFocusOnError="True" ValidationGroup="send"
ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" CssClass="inv"
ControlToValidate="txtEmail"></asp:RegularExpressionValidator>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>First Name:<span class="errormsg">*</span></label>
<asp:TextBox runat="server" ID="txtReceiverFName" CssClass="form-control" placeholder="Receiver First Name"></asp:TextBox>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Mid Name:</label>
<asp:TextBox runat="server" ID="txtReceiverMName" CssClass="form-control" placeholder="Receiver Mid Name"></asp:TextBox>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Last Name:<span class="errormsg">*</span></label>
<asp:TextBox runat="server" ID="txtReceiverLName" CssClass="form-control" placeholder="Receiver Last Name"></asp:TextBox>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Native Country :<span class="errormsg">*</span></label>
<asp:DropDownList ID="ddlNativeCountry" CssClass="form-control" runat="server">
</asp:DropDownList>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Receiver Address:<span class="errormsg">*</span></label>
<asp:TextBox runat="server" ID="txtReceiverAddress" CssClass="form-control" placeholder="Receiver Address"></asp:TextBox>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Receiver City:</label>
<asp:TextBox runat="server" ID="txtReceiverCity" CssClass="form-control" placeholder="Receiver City"></asp:TextBox>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Contact No:</label>
<asp:TextBox runat="server" ID="txtContactNo" onchange="CheckForPhoneNumber(this,'Contact No.')" CssClass="form-control" placeholder="Receiver Contact No" MaxLength="13"></asp:TextBox>
</div>
</div>
<div class="col-md-4">
<div class="form-group" style="overflow: initial;">
<label>Mobile No.: <span class="errormsg">*</span></label><br />
<asp:TextBox runat="server" MaxLength="16" ID="txtSenderMobileNo" placeholder="Mobile No" CssClass="form-control" />
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Id Type:</label>
<asp:DropDownList ID="ddlIdType" CssClass="form-control" runat="server">
</asp:DropDownList>
</div>
</div>
<div class="col-md-4">
<label>Id Number: <span class="errormsg" id="idNumberErr" hidden>*</span></label></label>
<div class="form-group">
<asp:TextBox runat="server" ID="txtIdValue" CssClass="form-control" disabled="disabled" placeholder="Any Photo Id"></asp:TextBox>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Place of Issue:</label>
<asp:TextBox runat="server" ID="txtPlaceOfIssue" CssClass="form-control" placeholder="Place Of Issue"></asp:TextBox>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Relationship To Beneficiary:</label>
<asp:DropDownList ID="ddlRelationship" onChange="showTextBox()" CssClass="form-control" runat="server">
</asp:DropDownList>
</div>
</div>
<div class="col-md-4">
<div class="form-group" id="otherRelationDiv" runat="server">
<label>Description of other relationship:</label>
<asp:TextBox runat="server" ID="otherRelationshipTextBox" CssClass="form-control" placeholder="Other Relation Description"></asp:TextBox>
</div>
</div>
<div class="clearfix"></div>
<p class="col-md-12">
<label class="">Transaction Information</label>
</p>
<div class="col-md-4">
<div class="form-group">
<label>Purpose of Remitance:</label>
<asp:DropDownList ID="ddlPurposeOfRemitance" runat="server" CssClass="form-control">
</asp:DropDownList>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Payment Mode:<span class="errormsg">*</span></label>
<asp:DropDownList ID="ddlPaymentMode" runat="server" CssClass="form-control" onchange="PopulatePayoutPartner()">
</asp:DropDownList>
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Agent/Bank:</label>
<asp:DropDownList ID="ddlPayoutPatner" onchange="PopulateLocation()" runat="server" CssClass="form-control">
</asp:DropDownList>
</div>
</div>
<div class="col-md-4" hidden="hidden">
<div class="form-group">
<label>Agent/Bank:<span><i>Type if Not Found</i></span></label>
<asp:TextBox ID="txtBankName" runat="server" CssClass="form-control clearOnNotBank"></asp:TextBox>
</div>
</div>
<div class="col-md-4 showOnBankMethod" id="receiverAccountNo" runat="server">
<div class="form-group">
<label>Beneficiary A/c #:</label>
<asp:TextBox ID="txtBenificaryAc" runat="server" CssClass="form-control clearOnNotBank"></asp:TextBox>
</div>
</div>
<div class="col-md-4" id="agentBankBranchDiv">
<div class="form-group">
<label>Agnet/Bank Branch</label>
<asp:DropDownList ID="DDLBankLocation" runat="server" CssClass="form-control">
</asp:DropDownList>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<label>Remarks:</label>
<asp:TextBox ID="txtRemarks" runat="server" TextMode="MultiLine" Rows="2" CssClass="form-control"></asp:TextBox>
</div>
</div>
<%--End body part--%>
</div>
</div>
<div class="panel panel-default clearfix m-b-20">
<div class="panel-heading">Agreement Information</div>
<div class="panel-body">
<div class="col-md-12 col-sm-12" runat="server" id="BenificiaryAgreementDiv">
<div class="form-group">
<label class="checkbox-ui">
<input type="checkbox" runat="server" class="custom-control-input" id="BenificiaryAgreement" />
<small class="custom-control-label">「受取人登録書」
私は本依頼書に記載されているジャパンマネーエクスプレス株式会社の「海外送金利用規約」の内容に同意します。
私の依頼する送金は、北朝鮮及びイランとは関係無い取引であり、反社会勢力と一切の関りはありません。
受取人及び私は「外内国の重要な公的な地位にある者」ではありません。
また申込書に表示された内容について間違いが無い事を確認した上で、JME送金サービスの受取人登録を依頼します.
<br />
「Beneficiary Registration Form」
I understand and agree to the ”Terms and Conditions for Overseas Remittance” of Japan Money Express Co., Ltd. (JME).
Beneficiary and I no relation with North Korea nor Iran、and have no relation to any Anti-Social Forces or engaged in any illegal activities.
Beneficiary and I are not Politically Exposed Persons(PEPs).
I confirm the information shown in this application to register beneficiary/ beneficiaries is true and correct.
</small>
</label>
</div>
</div>
<div class="row" id="signatureDiv" runat="server">
<div class="col-md-6 form-group">
<label class="control-label">Customer Signature:</label>
<div id="signature-pad" class="signature-pad" style="height: 350px;">
<div class="signature-pad--body">
<canvas></canvas>
</div>
<div class="signature-pad--footer">
<div class="description">Sign above</div>
<div class="signature-pad--actions">
<div class="form-group">
<button type="button" class="btn btn-primary clear" data-action="clear">Clear</button>
&nbsp;&nbsp;&nbsp;
<button type="button" class="btn btn-primary" data-action="undo">Undo</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 form-group" style="display: none">
<label class="control-label">Customer Password:</label>
<div>
<asp:TextBox autocomplete="stopdoingthat" TextMode="Password" ID="customerPassword" runat="server" CssClass="form-control" MaxLength="20"></asp:TextBox>
</div>
</div>
</div>
<div class="row" runat="server">
<div class="col-md-12 form-group">
<asp:Button ID="register" runat="server" CssClass="btn btn-primary m-t-25" Text="Submit" />
<%--<asp:Button ID="register" runat="server" CssClass="btn btn-primary m-t-25" Text="Submit" OnClientClick="return CheckFormValidation()" />--%>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<asp:HiddenField ID="hddImgURL" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="Script" runat="server">
<style>
.table .table {
background-color: #F5F5F5 !important;
}
</style>
<link href="/Content/css/signature-pad.css" rel="stylesheet" />
<script src="/Scripts/jquery.min.js"></script>
<script src="/Plugins/jquery-ui/jquery-ui.min.js"></script>
<script src="/Scripts/bootstrap.min.js"></script>
<script src="/Scripts/functions.js"></script>
<script src="/Scripts/js/swift_calendar.js"></script>
<script src="/Scripts/jquery.validate.js"></script>
<script src="/Plugins/bootstrap-datepicker/js/bootstrap-datepicker.min.js"></script>
<script src="/Scripts/notify.js"></script>
<script src="/Scripts/Customer/Document.js"></script>
<script src="/Scripts/js/swift_autocomplete.js"></script>
<script src="../../js/singnature/signature_pad.umd.js"></script>
<script src="../../js/singnature/customerSignature.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.15/jquery.mask.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.3/js/intlTelInput.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@1.5.4/src/loadingoverlay.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@1.5.4/extras/loadingoverlay_progress/loadingoverlay_progress.min.js"></script>
<script src="/Scripts/Receiver/ReceiverRegistrationNew.js"></script>
</asp:Content>

3
Repository/DAO/ReferralReports/ReferralReportsRepo.cs

@ -88,7 +88,8 @@ namespace Repository.DAO.ReferralReports
TranDate = item["CREATEDDATE"].ToString(),
SendingAmount = item["CAMT"].ToString(),
SenderName = item["SENDERNAME"].ToString(),
CollectionMode = item["COLLMODE"].ToString()
CollectionMode = item["COLLMODE"].ToString(),
PayoutAmount = item["PAMT"].ToString()
};
items.Add(model);

Loading…
Cancel
Save