Browse Source

params created

pull/1/head
gme_2 6 years ago
parent
commit
e670bb13f9
  1. 10
      GMERemittance/Module/ExchangeRateViewControllerV2.swift

10
GMERemittance/Module/ExchangeRateViewControllerV2.swift

@ -75,6 +75,16 @@ class ExchangeRateViewControllerV2: UIViewController {
let reciepientAmount = self.reciepientTextField.text!
print("sender textfield \(senderAmount)")
print("reciepientTextfield \(reciepientAmount)")
let recipientCurrency = self.selectedExchageRateModel?.currency ?? ""
let param: [String: Any] =
[
"cAmt" : senderAmount,
"pAmt" : reciepientAmount,
"cCurrency" : "KRW",
"pCurrency" : recipientCurrency
]
// todo send to api for calculation
}

Loading…
Cancel
Save