Browse Source

Merge branch 'auto-refund' of https://bitbucket.org/Swift_Pankaj/gme-ios into auto-refund

pull/1/head
ccr 6 years ago
parent
commit
f700f6e90c
  1. 2
      GMERemittance/Module/Auto refund/AutoRefundsViewController.swift

2
GMERemittance/Module/Auto refund/AutoRefundsViewController.swift

@ -88,7 +88,7 @@ class AutoRefundsViewController: UIViewController {
private func isValidRefundable(amount: String) -> Bool {
let minRefundAmount = self.autorefund?.minAmount ?? "0"
guard let amt = Double(amount), let minRefundAmt = Double(minRefundAmount) else {return false}
let result = amt >= minRefundAmt
let result = amt > minRefundAmt
return result
}

Loading…
Cancel
Save