Browse Source

added screenshots and uploaded for ipad

pull/1/head
gme_2 6 years ago
parent
commit
5aeba3ddc3
  1. 4
      GME Remit.xcodeproj/project.pbxproj
  2. 2
      GMERemittance/AppDelegate.swift
  3. 1
      GMERemittance/Module/AutoDebit/User Interface/View/AutoDebitTableViewCell.swift
  4. 7
      GMERemittance/Module/AutoDebit/User Interface/View/AutoDebitViewController.swift
  5. 6
      GMERemittance/SideMenu/SideMenuViewController.swift

4
GME Remit.xcodeproj/project.pbxproj

@ -5588,7 +5588,7 @@
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_SWIFT3_OBJC_INFERENCE = Off; SWIFT_SWIFT3_OBJC_INFERENCE = Off;
SWIFT_VERSION = 4.0; SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = 1;
TARGETED_DEVICE_FAMILY = "1,2";
}; };
name = Debug; name = Debug;
}; };
@ -5613,7 +5613,7 @@
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_SWIFT3_OBJC_INFERENCE = Off; SWIFT_SWIFT3_OBJC_INFERENCE = Off;
SWIFT_VERSION = 4.0; SWIFT_VERSION = 4.0;
TARGETED_DEVICE_FAMILY = 1;
TARGETED_DEVICE_FAMILY = "1,2";
}; };
name = Release; name = Release;
}; };

2
GMERemittance/AppDelegate.swift

@ -19,7 +19,7 @@ import AlamofireNetworkActivityLogger
import IQKeyboardManagerSwift import IQKeyboardManagerSwift
import LGSideMenuController import LGSideMenuController
let server: Server = .uat
let server: Server = .live
@UIApplicationMain @UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, MessagingDelegate { class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, MessagingDelegate {

1
GMERemittance/Module/AutoDebit/User Interface/View/AutoDebitTableViewCell.swift

@ -23,7 +23,6 @@ class AutoDebitTableViewCell: UITableViewCell {
let name = model?.bankName let name = model?.bankName
labelRecipientName.text = name labelRecipientName.text = name
accountNumnerLabel.text = model?.accountNumMasked accountNumnerLabel.text = model?.accountNumMasked
layer.borderColor = UIColor(red:0.91, green:0.93, blue:0.95, alpha:1.0).cgColor layer.borderColor = UIColor(red:0.91, green:0.93, blue:0.95, alpha:1.0).cgColor
layer.borderWidth = 1 layer.borderWidth = 1

7
GMERemittance/Module/AutoDebit/User Interface/View/AutoDebitViewController.swift

@ -62,13 +62,6 @@ class AutoDebitViewController: UIViewController {
} }
location = location.components(separatedBy: .whitespaces).joined(separator: "%") location = location.components(separatedBy: .whitespaces).joined(separator: "%")
print(location)
let string = "&redirect_uri=http://gmeuat.gmeremit.com:5013/Dashboard/AutoDebit&auth_type=1"
let replacedString = "&auth_type=1"
location = location.replacingOccurrences(of: string, with: replacedString)
print(location)
self.hideProgressHud() self.hideProgressHud()
self.openWkWebViewWith(url: location) self.openWkWebViewWith(url: location)
}) { (error) in }) { (error) in

6
GMERemittance/SideMenu/SideMenuViewController.swift

@ -70,7 +70,8 @@ class SideMenuViewController: UIViewController {
let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser() let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser()
self.withdrawButton.isHidden = !shouldShowWithdrawButton self.withdrawButton.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
// self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = true
self.view.backgroundColor = AppConstants.themeRedColor self.view.backgroundColor = AppConstants.themeRedColor
self.roundedBgView.layer.cornerRadius = 20 self.roundedBgView.layer.cornerRadius = 20
@ -84,7 +85,8 @@ class SideMenuViewController: UIViewController {
self.labelBalance.text = balance self.labelBalance.text = balance
let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser() let shouldShowWithdrawButton = Utility.pennyTestVerified() && Utility.isVerifiedUser()
self.withdrawButton.isHidden = !shouldShowWithdrawButton self.withdrawButton.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
// self.manageAccountStackView.isHidden = !shouldShowWithdrawButton
self.manageAccountStackView.isHidden = true
} }

Loading…
Cancel
Save