PosTransferVC.swift 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. //
  2. // PosTransferVC.swift
  3. // xingchuangke
  4. //
  5. // Created by 刘惠萍 on 2023/2/4.
  6. //
  7. import UIKit
  8. class PosTransferVC: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  9. @IBOutlet weak var lblOpenAmount: UILabel!
  10. @IBOutlet weak var lblAmount: UILabel!
  11. @IBOutlet weak var tableView: UITableView!
  12. @IBOutlet weak var viewTop: UIView!
  13. @IBOutlet weak var viewMenu1: UIView!
  14. @IBOutlet weak var viewMenu2: UIView!
  15. @IBOutlet var searchTextField: UITextField!
  16. @IBOutlet var searchView: UIView!
  17. @IBOutlet var searchBtn: UIButton!
  18. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. self.title = "机具调拨"
  21. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  22. viewNav.initView(title: "机具调拨") {[weak self] (index, _) in
  23. if index == 0 {
  24. self!.handleBack()
  25. }
  26. if index == 1 {
  27. self?.navigationController?.pushViewController(MachineLogListViewController(), animated: true)
  28. }
  29. }
  30. viewNav.initRightBtn(title: "日志")
  31. self.view.addSubview(viewNav)
  32. viewNav.marginTop(top: 0)
  33. searchView.marginTop(top: viewNav.bottom())
  34. viewTop.setSizeWidth(width: ScreenWidth)
  35. CommonViewUntils.setViewAverage(arrView: [viewMenu1, viewMenu2])
  36. // tableView.register(UINib(nibName: "PosManangerTableViewCell", bundle:nil) , forCellReuseIdentifier: "PosManangerTableViewCell")
  37. tableView.delegate = self
  38. tableView.dataSource = self
  39. // tableView.separatorStyle = .none
  40. tableView.tableFooterView = UIView.init()
  41. tableView.showsVerticalScrollIndicator = false
  42. tableView.estimatedRowHeight = 100
  43. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  44. self!.currentPage = 1
  45. self!.loadData()
  46. })
  47. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  48. }
  49. // MARK: =============加载数据===============
  50. func loadData() {
  51. let url = RequestURL.machineListAllot
  52. let params = NSMutableDictionary()
  53. params.setValue(CommonValue.getUserId(), forKey: "userId")
  54. params.setValue(searchTextField.text!, forKey: "snCode")
  55. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  56. }
  57. override func returnData(tag: Int) {
  58. if tag == 1001 {
  59. if dataSize != nil {
  60. let strAmount = "\(dataSize!["total"] ?? "0")台"
  61. 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)])
  62. let bindNum = getIntValue(key: "sTotal", dic: dataSize!)
  63. let strOpenAmount = "\(bindNum)台"
  64. 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)])
  65. }
  66. // var amount = 0;
  67. // var openAmount = 0;
  68. // for i in 0 ..< self.arrData.count
  69. // {
  70. // amount += getIntValue(current: i, key: "total")
  71. // openAmount += getIntValue(current: i, key: "activated")
  72. // }
  73. // let strAmount = "\(amount)台"
  74. // let strOpenAmount = "\(openAmount)台"
  75. // 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)])
  76. //
  77. // 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)])
  78. tableView.reloadData()
  79. }
  80. }
  81. override func returnError(tag: Int, type: String) {
  82. }
  83. // MARK: TABLEVLEW 实现
  84. // MARK: TABLEVLEW 实现
  85. func numberOfSections(in tableView: UITableView) -> Int {
  86. return 1
  87. }
  88. @IBAction func searchBtnClick(_ sender: Any) {
  89. self.view.endEditing(true)
  90. loadData()
  91. }
  92. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  93. return self.arrData.count
  94. }
  95. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  96. return 60
  97. }
  98. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  99. // let cell = tableView.dequeueReusableCell(withIdentifier: "PosManangerTableViewCell", for: indexPath as IndexPath) as! PosManangerTableViewCell
  100. //
  101. // cell.lblTitle.text = getString(current: indexPath.row, key: "name")
  102. // //cell.lblRemark.text = getString(current: indexPath.row, key: "brief");
  103. // cell.img.loadImage(imgUrl: getString(current: indexPath.row, key: "icon"), defaultImage: "");
  104. // cell.lblCount.text = "\(getIntValue(current: indexPath.row, key: "total"))台"
  105. // return cell
  106. var cell = tableView.dequeueReusableCell(withIdentifier: "posManagerCell")
  107. if cell == nil {
  108. cell = UITableViewCell.init(style: .value1, reuseIdentifier: "posManagerCell")
  109. cell?.detailTextLabel?.textColor = UIColor.red
  110. cell?.detailTextLabel?.font = UIFont.systemFont(ofSize: 14)
  111. cell?.accessoryType = .disclosureIndicator
  112. }
  113. cell?.textLabel!.text = "\(getString(current: indexPath.row, key: "real_name")) / \(getString(current: indexPath.row, key: "rec_code"))"
  114. cell?.detailTextLabel!.text = "\(getIntValue(current: indexPath.row, key: "profit_switch"))台"
  115. return cell!
  116. }
  117. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  118. if indexPath.row >= arrData.count {
  119. return
  120. }
  121. let vc = PosViewController()
  122. vc.amount = getIntValue(current: indexPath.row, key: "profit_switch")
  123. vc.titleName = "\(getString(current: indexPath.row, key: "real_name")) / \(getString(current: indexPath.row, key: "rec_code"))"
  124. vc.userId = "\(getString(current: indexPath.row, key: "id"))"
  125. toViewController(viewController: vc)
  126. }
  127. override func viewWillAppear(_ animated: Bool) {
  128. super.viewWillAppear(animated)
  129. appDelegate.setNavigationBarHidden(isHidden: true)
  130. tableView.mj_header?.beginRefreshing()
  131. }
  132. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  133. super.init(nibName: "PosTransferVC", bundle: nil)
  134. }
  135. required init?(coder aDecoder: NSCoder) {
  136. fatalError("init(coder:) has not been implemented")
  137. }
  138. }