Browse Source

pushed to live

v0.17
stepie.ub 1 year ago
parent
commit
c5afa3eb3f
  1. 6
      GME Remit.xcodeproj/project.pbxproj
  2. 1
      GME Remit/Modules/Home/User Interface/View/Custom/HomeExchangeRateView.swift
  3. 3
      GME Remit/Modules/RecipientModules/Recipients/User Interface/View/RecipientsViewController.swift
  4. 2
      GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyVerification/Application Logic/Interactor/SendMoneyVerificationInteractor.swift
  5. 2
      GME Remit/Modules/RemittanceModules/OverseasModules/TermsAndCondition/Application Logic/Interactor/TermsAndConditionInteractor.swift

6
GME Remit.xcodeproj/project.pbxproj

@ -8884,7 +8884,6 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
"EXCLUDED_ARCHS[sdk=*]" = arm64;
FRAMEWORK_SEARCH_PATHS = "";
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_NO_COMMON_BLOCKS = YES;
@ -8916,7 +8915,7 @@
CODE_SIGN_ENTITLEMENTS = "GME Remit.entitlements";
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 3;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 68KRG7GPAV;
ENABLE_BITCODE = NO;
@ -8962,12 +8961,11 @@
CODE_SIGN_ENTITLEMENTS = "GME Remit/GME RemitRelease.entitlements";
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 3;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 68KRG7GPAV;
ENABLE_BITCODE = NO;
EXCLUDED_ARCHS = "";
"EXCLUDED_ARCHS[sdk=*]" = arm64;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/GME\\ Remit/ThirdParty/virtualKeyboard/mtk_module",

1
GME Remit/Modules/Home/User Interface/View/Custom/HomeExchangeRateView.swift

@ -277,6 +277,7 @@ class HomeExchangeRateView: UIView {
recivedMoneyView.didSelectCountry = { [weak self] in
self?.sendMoneyView.resignFirstResponder()
self?.recivedMoneyView.resignFirstResponder()
self?.selectedPaymentModeIndex = 0
self?.openCountryList?()
}

3
GME Remit/Modules/RecipientModules/Recipients/User Interface/View/RecipientsViewController.swift

@ -276,6 +276,7 @@ extension RecipientsViewController {
onNext: { [weak self] in guard let `self` = self else { return }
self.model = $0
self.collectionView.reloadData()
// self.tableView.reloadData()
}
).disposed(by: disposeBag)
@ -430,7 +431,7 @@ extension RecipientsViewController: UITableViewDelegate {
// }
//}
extension RecipientsViewController: UICollectionViewDelegate, UICollectionViewDataSource {
extension RecipientsViewController: UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
let count = self.model?.count ?? 0

2
GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyVerification/Application Logic/Interactor/SendMoneyVerificationInteractor.swift

@ -85,7 +85,7 @@ extension SendMoneyVerificationInteractor: SendMoneyVerificationInteractorInput
"SenderId": senderId ?? "",
"ReceiverId": recieverId ?? "",
"DeliveryMethodId": model.paymemtMode?.id ?? "",
"PBranch": reciepient.paymentMethod?.agent?.id ?? "",
"PBranch": reciepient.paymentMethod?.agent?.branch?.id ?? "",
"PAgent": model.bank?.id ?? "",
"PaymentType": "wallet",
"PCurr": model.exchangeRateDetail?.reciepientCurrency ?? "",

2
GME Remit/Modules/RemittanceModules/OverseasModules/TermsAndCondition/Application Logic/Interactor/TermsAndConditionInteractor.swift

@ -119,7 +119,7 @@ extension TermsAndConditionInteractor: TermsAndConditionInteractorInput {
"SenderId": senderId ?? "",
"ReceiverId": receiverID,
"DeliveryMethodId": paymentModel?.id ?? "",
"PBranch": paymentModel?.agent?.id ?? reciepient.agent?.id ?? "",
"PBranch": reciepient.paymentMethod?.agent?.branch?.id ?? "",
"PAgent": paymentModel?.agent?.id ?? reciepient.agent?.id ?? "",
"PaymentType": "wallet",
"PCurr": paymentModel?.currency?.first ?? "",

Loading…
Cancel
Save