From 05fe0cb3dc1b3f53ebbef8b89484977299346977 Mon Sep 17 00:00:00 2001 From: Shakun Shrestha Date: Mon, 24 Jun 2024 22:29:08 +0545 Subject: [PATCH] Feature #31064: Validate age in mobile api (not less than 18) Actions Task #31930: Referal Code Validation Actions Task #32544: Email Template changes Feature #30199: Regarding Freezing Header in TXN Report Actions Feature #30239: Add ID Status ( Expire or Active ) in Cust Reg Report Actions Feature #30994: Add num of receiver filter in Customer Registration Report Actions Feature #32024: Promotional Rate Display in Landing Page Actions Story #27925: Inbound Api for Ime London Actions Task #31894: Add Verify Information in TXN Deatils Actions Task #31896: Mobile API Log --- Swift.DAL/OnlineAgent/OnlineCustomerDao.cs | 8 ++ Swift.web/DashboardV2/Dashboard2.aspx | 95 +++++++++++++++---- .../Operation/EditCustomerForApproval.aspx | 5 +- .../Reports/CustomerRegistrationStatus.aspx | 1 + .../CustomerRegistrationStatus.aspx.cs | 16 ++++ ...ustomerRegistrationStatus.aspx.designer.cs | 1 + .../CustomerRegistration/Manage.aspx.cs | 2 +- .../InboundApiLog/InboundLog.aspx.cs | 2 +- .../InboundApiLog/InboundLogList.aspx.cs | 2 +- .../MobileApiLog/MobileApiLogList.aspx.cs | 2 +- .../ApproveTxn/ApproveInwardRemitance.aspx.cs | 11 +-- .../Reports/TransactionNew/TranReport.aspx.cs | 6 +- 12 files changed, 119 insertions(+), 32 deletions(-) diff --git a/Swift.DAL/OnlineAgent/OnlineCustomerDao.cs b/Swift.DAL/OnlineAgent/OnlineCustomerDao.cs index 2e1ef4c..8519adc 100644 --- a/Swift.DAL/OnlineAgent/OnlineCustomerDao.cs +++ b/Swift.DAL/OnlineAgent/OnlineCustomerDao.cs @@ -1553,5 +1553,13 @@ namespace Swift.DAL.OnlineAgent return ParseDbResult(sql); } + public DbResult MoveCustomer(string email, string user) + { + string sql = "Exec proc_online_core_customerSetup"; + sql += " @flag ='moveCustomer'"; + sql += ", @user=" + FilterString(user); + sql += ", @email=" + FilterString(email); + return ParseDbResult(ExecuteDataset(sql).Tables[0]); + } } } \ No newline at end of file diff --git a/Swift.web/DashboardV2/Dashboard2.aspx b/Swift.web/DashboardV2/Dashboard2.aspx index b02e84c..e73b0a2 100644 --- a/Swift.web/DashboardV2/Dashboard2.aspx +++ b/Swift.web/DashboardV2/Dashboard2.aspx @@ -63,9 +63,11 @@ z-index: 9999; background: url("../Images/loading_icon.gif") center no-repeat #fff; } - .footer-text{ + + .footer-text { color: white; } + .auto-style1 { flex: 0 0 auto; width: 100%; @@ -231,7 +233,7 @@ -
+
@@ -261,7 +263,7 @@ - +
- <%--
+ <%--
+
+ +
+
Partner Wise Settlement Rate
+
+
+
+
+ + + + + + + + + + + + + + + +
S.No.PartnerEx RatePayerPayment Modes
No data to display
+
+
+
--%> +
+
+
+
+
+ + +
Partner Wise Settlement Rate
+
+ +
+ + + + + + + + + + + + + + + +
S.No.PartnerEx RatePayerPayment Modes
No data to display
@@ -587,7 +651,6 @@
--%> -
@@ -600,9 +663,9 @@ diff --git a/Swift.web/MobileRemit/Admin/Operation/EditCustomerForApproval.aspx b/Swift.web/MobileRemit/Admin/Operation/EditCustomerForApproval.aspx index d724458..9296ade 100644 --- a/Swift.web/MobileRemit/Admin/Operation/EditCustomerForApproval.aspx +++ b/Swift.web/MobileRemit/Admin/Operation/EditCustomerForApproval.aspx @@ -59,7 +59,6 @@ .lowercase { text-transform: none !important; } - }