From d59699211ade10e3047a61cf2760a18265b95ad1 Mon Sep 17 00:00:00 2001 From: arjun Date: Sun, 23 Aug 2020 03:24:54 +0000 Subject: [PATCH] --- .../TransactionStatementModel.cs | 1 + .../Sp/PROC_REFERRAL_TRANSACTION_REPORT.sql | 3 +- JMEAgentSystem/Content/receipt.css | 86 ++ JMEAgentSystem/JMEAgentSystem.csproj | 18 + .../Scripts/ReferralReports/DashBoard.js | 1 + .../WebPages/AddIdPicture/Manage.aspx | 8 +- .../CustomerRegistration/PrintDetails.aspx | 2 +- JMEAgentSystem/WebPages/Default.aspx | 1 + .../WebPages/Receipt/ViewReceipt.aspx | 750 ++++++++++++++++++ .../WebPages/Receipt/ViewReceipt.aspx.cs | 17 + .../Receipt/ViewReceipt.aspx.designer.cs | 708 +++++++++++++++++ .../BenificiaryRegistration/Manage.aspx | 324 ++++++++ .../ReferralReports/ReferralReportsRepo.cs | 3 +- 13 files changed, 1914 insertions(+), 8 deletions(-) create mode 100644 JMEAgentSystem/Content/receipt.css create mode 100644 JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx create mode 100644 JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.cs create mode 100644 JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.designer.cs create mode 100644 JMEAgentSystem/obj/Release/Package/PackageTmp/WebPages/BenificiaryRegistration/Manage.aspx diff --git a/Common/Model/ReferralReports/TransactionStatementModel.cs b/Common/Model/ReferralReports/TransactionStatementModel.cs index 7e3a42a..57d84d7 100644 --- a/Common/Model/ReferralReports/TransactionStatementModel.cs +++ b/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; } } } \ No newline at end of file diff --git a/Database/Sp/PROC_REFERRAL_TRANSACTION_REPORT.sql b/Database/Sp/PROC_REFERRAL_TRANSACTION_REPORT.sql index 47e4e2e..a127251 100644 --- a/Database/Sp/PROC_REFERRAL_TRANSACTION_REPORT.sql +++ b/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 + diff --git a/JMEAgentSystem/Content/receipt.css b/JMEAgentSystem/Content/receipt.css new file mode 100644 index 0000000..45863a8 --- /dev/null +++ b/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; +} \ No newline at end of file diff --git a/JMEAgentSystem/JMEAgentSystem.csproj b/JMEAgentSystem/JMEAgentSystem.csproj index fe305a6..24bcd50 100644 --- a/JMEAgentSystem/JMEAgentSystem.csproj +++ b/JMEAgentSystem/JMEAgentSystem.csproj @@ -179,6 +179,7 @@ + @@ -329,6 +330,7 @@ + @@ -433,8 +435,10 @@ + + @@ -566,6 +570,13 @@ SignUp.aspx + + Manage.aspx + ASPXCodeBehind + + + Manage.aspx + Manage.aspx ASPXCodeBehind @@ -618,6 +629,13 @@ GetFileView.ashx + + ViewReceipt.aspx + ASPXCodeBehind + + + ViewReceipt.aspx + TransactionReport.aspx ASPXCodeBehind diff --git a/JMEAgentSystem/Scripts/ReferralReports/DashBoard.js b/JMEAgentSystem/Scripts/ReferralReports/DashBoard.js index 8578852..381212f 100644 --- a/JMEAgentSystem/Scripts/ReferralReports/DashBoard.js +++ b/JMEAgentSystem/Scripts/ReferralReports/DashBoard.js @@ -26,6 +26,7 @@ function LoadLastFiveTransactions() { row += '' + d['SenderName'] + ''; row += '' + d['CollectionMode'] + ''; row += '' + CurrencyFormatted(parseFloat(d['SendingAmount'])) + ''; + row += '' + CurrencyFormatted(parseFloat(d['PayoutAmount'])) + ''; row += ''; table.append(row); diff --git a/JMEAgentSystem/WebPages/AddIdPicture/Manage.aspx b/JMEAgentSystem/WebPages/AddIdPicture/Manage.aspx index cafd1b4..8cfd192 100644 --- a/JMEAgentSystem/WebPages/AddIdPicture/Manage.aspx +++ b/JMEAgentSystem/WebPages/AddIdPicture/Manage.aspx @@ -65,11 +65,9 @@ -
-
- <%----%> - -
+
+ <%----%> +
diff --git a/JMEAgentSystem/WebPages/CustomerRegistration/PrintDetails.aspx b/JMEAgentSystem/WebPages/CustomerRegistration/PrintDetails.aspx index c748ccf..510884c 100644 --- a/JMEAgentSystem/WebPages/CustomerRegistration/PrintDetails.aspx +++ b/JMEAgentSystem/WebPages/CustomerRegistration/PrintDetails.aspx @@ -142,7 +142,7 @@ Native Country: - Receiver Address: + Beneficiary Address: diff --git a/JMEAgentSystem/WebPages/Default.aspx b/JMEAgentSystem/WebPages/Default.aspx index a3cef36..f41341c 100644 --- a/JMEAgentSystem/WebPages/Default.aspx +++ b/JMEAgentSystem/WebPages/Default.aspx @@ -103,6 +103,7 @@ Sender Name Collection Mode Sending Amount + Payout Amount diff --git a/JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx b/JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx new file mode 100644 index 0000000..b110daa --- /dev/null +++ b/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" %> + + + + <%--
+
+

View Receipt

+
+
--%> +
+
+
+
+ + + + + + + + + + + + + + + + +
+ + + + + +
+ +

Kanto Finance Bureau License

+

+ Number:0006 +

+

JME Japan

+

+ 169-0073,Omori Building 4F(AB), Hyakunincho 1-10-07 +

+

+ Shinjuku-ku, Tokyo, japan +

+

+ Tel:03-5475-3913, Fax:03-5475-3913 +

+

+ email:info@japanremit.com +

+

+
+ + + + + +
+

Customer Copy

+
+
+ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

SENDER INFORMATION

+
+ + + + + + + + + +
+ + + + +
+ + + + + + + + + +
+ + + + + + + + + +
+ + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

RECEIVER INFORMATION

+
+ + + + +
+ + + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + + +
+ + + + + + +
+

+ Receive Amount NPR: + +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

JME NO:

+
+

User:

+

+ + +

+
+

Collected Amount

+

+

+
+

Service Charge

+

+ + +

+
+

Transfer Amount

+

+ + +

+
+

Exchange Rate

+

+ + +

+
+

Receive Amount

+

+

+
+

Serial:

+
+

Deposit Type

+

+ + +

+
+
+ + + + + + + + + + + +
+

THE ABOVE INFORMATION IS CORRECT AND I DECLARE THAT I READ TERMS AND CONDITIONS

+
+ + .................................................. + + + .................................................. +
+
+ + + + + +
+
-----------------------------------------------------------------Cut From Here-----------------------------------------------------------------
+
+
+
+ + + + + + + + + + + + + + + + +
+ + + + + +
+ +

Kanto Finance Bureau License

+

+ Number:0006 +

+

JME Japan

+

+ 169-0073,Omori Building 4F(AB), Hyakunincho 1-10-07 +

+

+ Shinjuku-ku, Tokyo, japan +

+

+ Tel:03-5475-3913, Fax:03-5475-3913 +

+

+ email:info@japanremit.com +

+

+
+ + + + +
+

Office Copy

+
+
+ + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

SENDER INFORMATION

+
+ + + + + + + + + +
+ + + + +
+ + + + + + + + + +
+ + + + + + + + + +
+ + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

RECEIVER INFORMATION

+
+ + + + +
+ + + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + + +
+ + + + + + +
+

+ Receive Amount NPR: + +

+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

JME NO:

+
+

User:

+

+ + +

+
+

Collected Amount

+

+

+
+

Service Charge

+

+ + +

+
+

Transfer Amount

+

+ + +

+
+

Exchange Rate

+

+ + +

+
+

Receive Amount

+

+

+
+

Serial:

+
+

Deposit Type

+

+ + +

+
+
+ + + + + + + + + + + +
+

THE ABOVE INFORMATION IS CORRECT AND I DECLARE THAT I READ TERMS AND CONDITIONS

+
+ + .................................................. + + + .................................................. +
+
+ +
+ + + + +
+
-----------------------------------------------------------------Cut From Here-----------------------------------------------------------------
+
+
+
+
+
+
+
+ + + diff --git a/JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.cs b/JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.cs new file mode 100644 index 0000000..69ead60 --- /dev/null +++ b/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; + } + } + } +} \ No newline at end of file diff --git a/JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.designer.cs b/JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.designer.cs new file mode 100644 index 0000000..528667a --- /dev/null +++ b/JMEAgentSystem/WebPages/Receipt/ViewReceipt.aspx.designer.cs @@ -0,0 +1,708 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace JMEAgentSystem.WebPages.Receipt { + + + public partial class ViewReceipt { + + /// + /// customerDiv control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlGenericControl customerDiv; + + /// + /// senderName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label senderName; + + /// + /// sMemId control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sMemId; + + /// + /// sAddress control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sAddress; + + /// + /// sNativeCountry control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sNativeCountry; + + /// + /// purpose control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label purpose; + + /// + /// sDob control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sDob; + + /// + /// sContactNo control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sContactNo; + + /// + /// visaStatus control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label visaStatus; + + /// + /// pAgentCountry control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pAgentCountry; + + /// + /// receiverName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label receiverName; + + /// + /// paymentMode control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label paymentMode; + + /// + /// rContactNo control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label rContactNo; + + /// + /// pAgent control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pAgent; + + /// + /// rAddress control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label rAddress; + + /// + /// bankLable control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlGenericControl bankLable; + + /// + /// pBankName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pBankName; + + /// + /// relationShip control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label relationShip; + + /// + /// bank7 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTableCell bank7; + + /// + /// bank8 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTableCell bank8; + + /// + /// pBranchName control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pBranchName; + + /// + /// bank9 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTableCell bank9; + + /// + /// bank10 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTableCell bank10; + + /// + /// accountNo control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label accountNo; + + /// + /// rAmtWords control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label rAmtWords; + + /// + /// controlNo control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label controlNo; + + /// + /// createdBy control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label createdBy; + + /// + /// approvedDate control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label approvedDate; + + /// + /// cAmt control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label cAmt; + + /// + /// serviceCharge control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label serviceCharge; + + /// + /// tAmt control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label tAmt; + + /// + /// exRate control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label exRate; + + /// + /// pAmt control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pAmt; + + /// + /// serial1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label serial1; + + /// + /// depositType control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label depositType; + + /// + /// operator1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label operator1; + + /// + /// divInvoiceSecond control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTable divInvoiceSecond; + + /// + /// officeDiv control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlGenericControl officeDiv; + + /// + /// divInvoiceSecond1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTable divInvoiceSecond1; + + /// + /// senderName1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label senderName1; + + /// + /// sMemId1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sMemId1; + + /// + /// sAddress1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sAddress1; + + /// + /// sNativeCountry1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sNativeCountry1; + + /// + /// purpose1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label purpose1; + + /// + /// sDob1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sDob1; + + /// + /// sContactNo1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label sContactNo1; + + /// + /// visaStatus1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label visaStatus1; + + /// + /// pAgentCountry1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pAgentCountry1; + + /// + /// receiverName1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label receiverName1; + + /// + /// paymentMode1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label paymentMode1; + + /// + /// rContactNo1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label rContactNo1; + + /// + /// pAgent1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pAgent1; + + /// + /// rAddress1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label rAddress1; + + /// + /// bankLable1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlGenericControl bankLable1; + + /// + /// bank2 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTableCell bank2; + + /// + /// pBankName1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pBankName1; + + /// + /// relationShip1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label relationShip1; + + /// + /// bank3 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTableCell bank3; + + /// + /// bank4 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTableCell bank4; + + /// + /// pBranchName1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pBranchName1; + + /// + /// bank5 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTableCell bank5; + + /// + /// bank6 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTableCell bank6; + + /// + /// accountNo1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label accountNo1; + + /// + /// rAmtWords1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label rAmtWords1; + + /// + /// controlNo1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label controlNo1; + + /// + /// createdBy1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label createdBy1; + + /// + /// approvedDate1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label approvedDate1; + + /// + /// cAmt1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label cAmt1; + + /// + /// serviceCharge1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label serviceCharge1; + + /// + /// tAmt1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label tAmt1; + + /// + /// exRate1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label exRate1; + + /// + /// pAmt1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label pAmt1; + + /// + /// serial2 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label serial2; + + /// + /// depositType1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label depositType1; + + /// + /// operator2 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.Label operator2; + + /// + /// officeCenterDiv control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlGenericControl officeCenterDiv; + + /// + /// Table1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.HtmlControls.HtmlTable Table1; + } +} diff --git a/JMEAgentSystem/obj/Release/Package/PackageTmp/WebPages/BenificiaryRegistration/Manage.aspx b/JMEAgentSystem/obj/Release/Package/PackageTmp/WebPages/BenificiaryRegistration/Manage.aspx new file mode 100644 index 0000000..248f2ad --- /dev/null +++ b/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" %> + + + + + + +
+ +
+ +
+
+
+
+
+
+

+ Add Beneficiary +

+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Receiver Details

+
+
+
+ +
+ <%--body part--%> + + + +
+
+ + + + +
+
+
+
+ + + +
+
+
+
+ + + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+ +
+
+ +
+
+ + + +
+
+
+ +
+ +
+
+
+
+ + +
+
+
+
+ + + +
+
+
+
+ + +
+
+ +
+

+ +

+
+
+ + + +
+
+
+
+ + + +
+
+
+
+ + + +
+
+ +
+
+ + +
+
+
+
+ + + +
+
+
+
+ + +
+
+ + <%--End body part--%> +
+
+
+
Agreement Information
+
+
+
+ +
+
+
+
+ +
+
+ +
+ +
+
+ +
+
+
+ + <%----%> +
+
+
+
+
+
+
+
+
+
+
+ + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Repository/DAO/ReferralReports/ReferralReportsRepo.cs b/Repository/DAO/ReferralReports/ReferralReportsRepo.cs index 8c17aa5..4868e0a 100644 --- a/Repository/DAO/ReferralReports/ReferralReportsRepo.cs +++ b/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);