From 3cead4c8737a763284a2b366e612606eb499022e Mon Sep 17 00:00:00 2001 From: Leeza Baidar Date: Fri, 26 Jan 2024 18:15:28 +0545 Subject: [PATCH] #24827 Promotional Rate setup --- Business/Mobile/IMobileServices.cs | 2 +- Business/Mobile/MobileServices.cs | 8 ++++---- JsonRx/ApiV3/SendTransactionController.cs | 2 +- Repository/Mobile/IMobileServicesRepo.cs | 2 +- Repository/Mobile/MobileServicesRepo.cs | 5 +++-- 5 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Business/Mobile/IMobileServices.cs b/Business/Mobile/IMobileServices.cs index 25afb7e..0dec43b 100644 --- a/Business/Mobile/IMobileServices.cs +++ b/Business/Mobile/IMobileServices.cs @@ -93,7 +93,7 @@ namespace Business.Mobile JsonRxResponse CheckInfoAgree(string username); - JsonRxResponse GetFieldsByProduct(MappingType type, string customer); + JsonRxResponse GetFieldsByProduct(MappingType type, string customer, string receiverId); JsonRxResponse ValidateReferralCode(string referralCode); //JsonRxResponse QueryAddress(string postCode); diff --git a/Business/Mobile/MobileServices.cs b/Business/Mobile/MobileServices.cs index ee4cedc..9a695d5 100644 --- a/Business/Mobile/MobileServices.cs +++ b/Business/Mobile/MobileServices.cs @@ -2958,7 +2958,7 @@ namespace Business.Mobile } - public JsonRxResponse GetFieldsByProduct(Common.Model.Config.MappingType type, string customerId) + public JsonRxResponse GetFieldsByProduct(Common.Model.Config.MappingType type, string customerId, string receiverId) { JsonRxResponse jsonRx = new JsonRxResponse { @@ -2986,7 +2986,7 @@ namespace Business.Mobile else if (type == Common.Model.Config.MappingType.REWARD_POINT) { var response1 = _requestServices.GetRewardFee(customerId); - response1.PaymentOptions = new PaymentOptions() { Options = GetPaymentMethods(), HeaderText = "How do like to pay?" }; + response1.PaymentOptions = new PaymentOptions() { Options = GetPaymentMethods(receiverId), HeaderText = "How do like to pay?" }; if (response1 != null) { @@ -3046,9 +3046,9 @@ namespace Business.Mobile } - public List