123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- import UIKit
- class PosTransferVC: BaseViewController, UITableViewDataSource, UITableViewDelegate {
-
-
- @IBOutlet weak var lblOpenAmount: UILabel!
- @IBOutlet weak var lblAmount: UILabel!
- @IBOutlet weak var tableView: UITableView!
- @IBOutlet weak var viewTop: UIView!
- @IBOutlet weak var viewMenu1: UIView!
- @IBOutlet weak var viewMenu2: UIView!
- @IBOutlet var searchTextField: UITextField!
- @IBOutlet var searchView: UIView!
- @IBOutlet var searchBtn: UIButton!
-
- override func viewDidLoad() {
- super.viewDidLoad()
- self.title = "机具调拨"
- let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
- viewNav.initView(title: "机具调拨") {[weak self] (index, _) in
- if index == 0 {
- self!.handleBack()
- }
- if index == 1 {
- self?.navigationController?.pushViewController(MachineLogListViewController(), animated: true)
- }
- }
- viewNav.initRightBtn(title: "日志")
- self.view.addSubview(viewNav)
- viewNav.marginTop(top: 0)
- searchView.marginTop(top: viewNav.bottom())
- viewTop.setSizeWidth(width: ScreenWidth)
- CommonViewUntils.setViewAverage(arrView: [viewMenu1, viewMenu2])
- tableView.delegate = self
- tableView.dataSource = self
- tableView.tableFooterView = UIView.init()
- tableView.showsVerticalScrollIndicator = false
- tableView.estimatedRowHeight = 100
- tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
- self!.currentPage = 1
- self!.loadData()
- })
- tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
- }
-
- func loadData() {
- let url = RequestURL.machineListAllot
- let params = NSMutableDictionary()
- params.setValue(CommonValue.getUserId(), forKey: "userId")
- params.setValue(searchTextField.text!, forKey: "snCode")
- loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
- }
- override func returnData(tag: Int) {
- if tag == 1001 {
- if dataSize != nil {
- let strAmount = "\(dataSize!["total"] ?? "0")台"
- lblAmount.attributedText = CommonViewUntils.getAttributedStringForFont(str: strAmount, rangs: [NSRange.init(location: 0, length: strAmount.length() - 1), NSRange.init(location: strAmount.length() - 1, length: 1)], fonts: [UIFont.systemFont(ofSize: 24), UIFont.systemFont(ofSize: 14)])
- let bindNum = getIntValue(key: "sTotal", dic: dataSize!)
- let strOpenAmount = "\(bindNum)台"
- lblOpenAmount.attributedText = CommonViewUntils.getAttributedStringForFont(str: strOpenAmount, rangs: [NSRange.init(location: 0, length: strOpenAmount.length() - 1), NSRange.init(location: strOpenAmount.length() - 1, length: 1)], fonts: [UIFont.systemFont(ofSize: 24), UIFont.systemFont(ofSize: 14)])
- }
- tableView.reloadData()
- }
- }
- override func returnError(tag: Int, type: String) {
- }
-
-
- func numberOfSections(in tableView: UITableView) -> Int {
- return 1
- }
- @IBAction func searchBtnClick(_ sender: Any) {
- self.view.endEditing(true)
- loadData()
- }
- func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
- return self.arrData.count
- }
- func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
- return 60
- }
- func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
- var cell = tableView.dequeueReusableCell(withIdentifier: "posManagerCell")
- if cell == nil {
- cell = UITableViewCell.init(style: .value1, reuseIdentifier: "posManagerCell")
- cell?.detailTextLabel?.textColor = UIColor.red
- cell?.detailTextLabel?.font = UIFont.systemFont(ofSize: 14)
- cell?.accessoryType = .disclosureIndicator
- }
- cell?.textLabel!.text = "\(getString(current: indexPath.row, key: "real_name")) / \(getString(current: indexPath.row, key: "rec_code"))"
- cell?.detailTextLabel!.text = "\(getIntValue(current: indexPath.row, key: "profit_switch"))台"
- return cell!
- }
- func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
- if indexPath.row >= arrData.count {
- return
- }
- let vc = PosViewController()
- vc.amount = getIntValue(current: indexPath.row, key: "profit_switch")
- vc.titleName = "\(getString(current: indexPath.row, key: "real_name")) / \(getString(current: indexPath.row, key: "rec_code"))"
- vc.userId = "\(getString(current: indexPath.row, key: "id"))"
- toViewController(viewController: vc)
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- appDelegate.setNavigationBarHidden(isHidden: true)
- tableView.mj_header?.beginRefreshing()
- }
- override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
- super.init(nibName: "PosTransferVC", bundle: nil)
- }
- required init?(coder aDecoder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- }
|