diff --git a/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerification.storyboard b/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerification.storyboard index 414c072b..eef05e6c 100644 --- a/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerification.storyboard +++ b/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerification.storyboard @@ -1,11 +1,11 @@ - + - + @@ -389,6 +389,38 @@ + @@ -491,6 +523,9 @@ + + + diff --git a/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerificationViewController.swift b/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerificationViewController.swift index 35b83605..6df7f31f 100644 --- a/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerificationViewController.swift +++ b/GMERemittance/Module/SendMoney/SendMoneyVerification/User Interface/View/SendMoneyVerificationViewController.swift @@ -38,6 +38,7 @@ class SendMoneyVerificationViewController: UITableViewController { @IBOutlet weak var exchangeRateLabel: UILabel! @IBOutlet weak var serviceChargeLabel: UILabel! @IBOutlet weak var payoutAgentBankLabel: UILabel! + @IBOutlet weak var accountNoLabel: UILabel! @IBOutlet weak var payoutCountryTitleLabel: UILabel! @IBOutlet weak var payoutModeTitleLabel: UILabel! @@ -45,6 +46,7 @@ class SendMoneyVerificationViewController: UITableViewController { @IBOutlet weak var exchangeRateTitleLabel: UILabel! @IBOutlet weak var serviceChargeTitleLabel: UILabel! @IBOutlet weak var payoutAgentBankTitleLabel: UILabel! + @IBOutlet weak var accountNumTitlelabel: UILabel! // title labels @IBOutlet weak var recieverDetailsLabel: UILabel! @@ -54,6 +56,8 @@ class SendMoneyVerificationViewController: UITableViewController { @IBOutlet weak var agreeAndSendButton: UIButton! @IBOutlet weak var bankNameStackView: UIStackView! + @IBOutlet weak var accountNumberStackView: UIStackView! + var url: String? @@ -118,6 +122,9 @@ class SendMoneyVerificationViewController: UITableViewController { mQwertyTransKeyView?.delegate = self mNumberTransKeyView?.delegate = self self.bankNameStackView.isHidden = (self.requestModel?.bank?.name ?? "").isEmpty + self.accountNumberStackView.isHidden = (self.requestModel?.paymemtMode?.accountNumber ?? "").isEmpty + + } override func viewDidDisappear(_ animated: Bool) { @@ -219,6 +226,7 @@ class SendMoneyVerificationViewController: UITableViewController { self.exchangeRateLabel.text = self.requestModel?.exchangeRateDetail?.exchangeRate self.serviceChargeLabel.text = self.requestModel?.exchangeRateDetail?.transferFee self.payoutAgentBankLabel.text = self.requestModel?.bank?.name + self.accountNoLabel.text = self.requestModel?.paymemtMode?.accountNumber } func askPassword() {