PosViewController.swift 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. //
  2. // PosViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/9/6.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class PosViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource, PosHeaderViewDelegate {
  10. var amount = 0
  11. var bindAmount = 0
  12. var activated = 0
  13. var unBindAmount = 0
  14. var machineTypeId: String!
  15. var flodArr: NSMutableArray = NSMutableArray()
  16. var selectSNArr: NSMutableArray = NSMutableArray()
  17. var stateArr = ["", "0", "1", "2"]
  18. var curStatus: String = "0"
  19. var userId = CommonValue.getUserId()
  20. var titleName = ""
  21. @IBOutlet weak var imgBackground: UIImageView!
  22. @IBOutlet weak var topView: UIView!
  23. @IBOutlet weak var totalBtn: UIButton!
  24. @IBOutlet weak var unbindBtn: UIButton!
  25. @IBOutlet weak var bindBtn: UIButton!
  26. @IBOutlet weak var activeBtn: UIButton!
  27. @IBOutlet weak var searchView: UIView!
  28. @IBOutlet weak var searchBtn: UIButton!
  29. @IBOutlet weak var searchTextField: UITextField!
  30. @IBOutlet weak var tableView: UITableView!
  31. @IBOutlet weak var transformBtn: UIButton!
  32. override func viewWillAppear(_ animated: Bool) {
  33. super.viewWillAppear(animated)
  34. appDelegate.setNavigationBarHidden(isHidden: true)
  35. }
  36. override func viewDidLoad() {
  37. super.viewDidLoad()
  38. navInit()
  39. flodStateInit()
  40. unbindBtn.backgroundColor = UIColor.lightGray
  41. tableView.delegate = self
  42. tableView.dataSource = self
  43. tableView.tableFooterView = UIView.init()
  44. tableView.separatorStyle = .none
  45. tableView.register(UINib(nibName: "PosTableViewCell", bundle: nil), forCellReuseIdentifier: "PosTableViewCell")
  46. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  47. self!.currentPage = 1
  48. self!.loadData()
  49. })
  50. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  51. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  52. self!.currentPage += 1
  53. self!.loadData()
  54. })
  55. tableView.mj_header?.beginRefreshing()
  56. }
  57. // 自定义导航栏
  58. func navInit() {
  59. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  60. viewNav.initView(title: titleName) {[weak self] (index, _) in
  61. if index == 0 {
  62. self!.handleBack()
  63. }
  64. }
  65. self.view.addSubview(viewNav)
  66. viewNav.marginTop(top: 0)
  67. searchView.marginTop(top: viewNav.bottom())
  68. imgBackground.translatesAutoresizingMaskIntoConstraints = false
  69. let h: NSLayoutConstraint = NSLayoutConstraint(item: imgBackground as Any, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 0.0, constant: searchView.bottom())
  70. imgBackground.addConstraint(h)
  71. }
  72. func flodStateInit() {
  73. for _ in 0...1000 {
  74. flodArr.add("0")
  75. }
  76. }
  77. func btnTitleInit() {
  78. let activStr = " 激活 \(dataSize?["status2"] ?? "0")台 "
  79. let activAttStr = CommonViewUntils.getAttributedString(str: activStr, left: 3, right: 2, color: UIColor.red, otherColor: UIColor.black)
  80. activeBtn.setAttributedTitle(activAttStr, for: .normal)
  81. let bindStr = " 绑定 \(dataSize?["status1"] ?? "0")台 "
  82. let bindAttStr = CommonViewUntils.getAttributedString(str: bindStr, left: 3, right: 2, color: UIColor.red, otherColor: UIColor.black)
  83. bindBtn.setAttributedTitle(bindAttStr, for: .normal)
  84. let unbindStr = " 未绑定 \(dataSize?["status0"] ?? "0")台 "
  85. let unbindAttStr = CommonViewUntils.getAttributedString(str: unbindStr, left: 4, right: 2, color: UIColor.red, otherColor: UIColor.black)
  86. unbindBtn.setAttributedTitle(unbindAttStr, for: .normal)
  87. let totalStr = " 共 \(dataSize?["total"] ?? "0")台 "
  88. let totalAttStr = CommonViewUntils.getAttributedString(str: totalStr, left: 2, right: 2, color: UIColor.red, otherColor: UIColor.black)
  89. totalBtn.setAttributedTitle(totalAttStr, for: .normal)
  90. }
  91. // MARK: - action
  92. @IBAction func checkBtnClick(_ sender: Any) {
  93. let btn = (sender as! UIButton)
  94. for view in btn.superview!.subviews as [UIView] {
  95. if let button = view as? UIButton {
  96. if button.tag == btn.tag {
  97. button.backgroundColor = UIColor.lightGray
  98. } else {
  99. button.backgroundColor = UIColor.white
  100. }
  101. }
  102. }
  103. let index: NSInteger = btn.tag - 1011
  104. curStatus = stateArr[index]
  105. currentPage = 1
  106. if curStatus == "0" {
  107. self.transformBtn.isHidden = false
  108. } else {
  109. self.transformBtn.isHidden = true
  110. }
  111. loadData()
  112. }
  113. @IBAction func transformBtnClick(_ sender: Any) {
  114. let mids = selectSNArr.componentsJoined(by: ",")
  115. let vc = SplitDeviceViewController()
  116. vc.mid = mids
  117. toViewController(viewController: vc)
  118. }
  119. @IBAction func searchBtnClick(_ sender: Any) {
  120. self.view.endEditing(true)
  121. loadData()
  122. }
  123. // MARK: - request
  124. func loadData() {
  125. let url = RequestURL.machineList
  126. let params = NSMutableDictionary()
  127. params.setValue(userId, forKey: "userId")
  128. params.setValue(machineTypeId, forKey: "machineTypeId")
  129. params.setValue(searchTextField.text!, forKey: "snCode")
  130. params.setValue(curStatus, forKey: "status")
  131. loadDataList111(url: url, params: params, tableView: self.tableView, tag: 1001)
  132. }
  133. func loadDataList111(url: String, params: NSMutableDictionary, tableView: UITableView, tag: Int) {
  134. isAlertError = true
  135. if self.currentPage == 1 {
  136. self.arrData.removeAllObjects()
  137. }
  138. params.setValue(self.currentPage, forKey: "pageNumber")
  139. params.setValue(self.pageSize, forKey: "pageSize")
  140. MBProgressHUD.showAdded(to: self.view, animated: true)
  141. let http = AFHTTPSessionManager()
  142. http.requestSerializer.setValue(userId, forHTTPHeaderField: "userId")
  143. http.requestSerializer.setValue("1", forHTTPHeaderField: "phoneType")
  144. http.requestSerializer.setValue(CommonUntils.getSystemVersion(), forHTTPHeaderField: "apkVersion")
  145. http.get(url, parameters: params, progress: nil, success: {[weak self] (_, json1) -> Void in
  146. let json = json1 as! NSDictionary
  147. print(json)
  148. let succeed = json.object(forKey: "succeed") as! String
  149. if succeed == "000" {
  150. if self!.currentPage == 1 {
  151. self!.arrData.removeAllObjects()
  152. }
  153. let dataInfo = json["dataInfo"] as? NSDictionary
  154. if dataInfo != nil {
  155. self!.dicDataList.setDic(dic: dataInfo!)
  156. self!.dicData.setDictionary(dataInfo as! [AnyHashable: Any])
  157. let array = dataInfo!["dataList"] as? NSArray
  158. if array != nil {
  159. for dic in array! {
  160. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  161. self!.arrData.add(dicNew)
  162. }
  163. }else{
  164. let array1 = dataInfo!["agents"] as? NSArray
  165. for dic in array1! {
  166. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  167. self!.arrData.add(dicNew)
  168. }
  169. }
  170. } else {
  171. let array = json["dataInfo"] as? NSArray
  172. if array != nil {
  173. for dic in array! {
  174. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  175. self!.arrData.add(dicNew)
  176. }
  177. }
  178. }
  179. let dataS = json["dataSize"] as? NSDictionary
  180. if dataS != nil {
  181. self?.dataSize = dataS
  182. self?.btnTitleInit()
  183. }
  184. self!.returnData(tag: tag)
  185. } else {
  186. self!.returnError(tag: tag, type: succeed)
  187. if self!.isAlertError {
  188. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  189. }
  190. }
  191. if self!.arrData.count > 0 {
  192. self!.hiddenNoDataViewForTableView(tableView: tableView)
  193. } else {
  194. self!.showNoDataViewForTableView(tableView: tableView)
  195. }
  196. if tableView.mj_header != nil {
  197. tableView.mj_header?.endRefreshing()
  198. }
  199. if tableView.mj_footer != nil {
  200. tableView.mj_footer?.endRefreshing()
  201. }
  202. MBProgressHUD.hide(for: self?.view ?? UIView.init(), animated: true)
  203. }, failure: { (_, err) -> Void in
  204. MBProgressHUD.hide(for: self.view, animated: true)
  205. if tableView.mj_header != nil {
  206. tableView.mj_header?.endRefreshing()
  207. }
  208. if tableView.mj_footer != nil {
  209. tableView.mj_footer?.endRefreshing()
  210. }
  211. CommonUntils.alertError(error: err as NSError)
  212. self.returnError(tag: tag, type: "9999")
  213. })
  214. }
  215. override func returnData(tag: Int) {
  216. if tag == 1001 {
  217. tableView.reloadData()
  218. }
  219. }
  220. override func returnError(tag: Int, type: String) {
  221. }
  222. // MARK: - delagete
  223. func selectBtnClicked(selected: Bool, snIdStr: NSString) {
  224. if selected {
  225. selectSNArr.add(snIdStr)
  226. } else {
  227. selectSNArr.remove(snIdStr)
  228. }
  229. let btnTit = (self.selectSNArr.count == 0) ? "我要分拨" : "我要分拨(已选\(self.selectSNArr.count)台)"
  230. transformBtn.setTitle(btnTit, for: .normal)
  231. }
  232. func numberOfSections(in tableView: UITableView) -> Int {
  233. return arrData.count
  234. }
  235. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  236. if flodArr[section] as! String == "0" {
  237. return 0
  238. }
  239. return 1
  240. }
  241. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  242. return 44
  243. }
  244. func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  245. let headerView: PosHeaderView = CommonViewUntils.getViewForXIB(xibName: "PosHeaderView") as! PosHeaderView
  246. headerView.delegate = self
  247. headerView.flodBlock = {
  248. if self.flodArr[section] as! String == "0" {
  249. self.flodArr.replaceObject(at: section, with: "1")
  250. } else {
  251. self.flodArr.replaceObject(at: section, with: "0")
  252. }
  253. self.tableView.reloadSections([section], with: .none)
  254. }
  255. if curStatus == "0" {
  256. headerView.selectBtn.isHidden = false
  257. } else {
  258. headerView.selectBtn.isHidden = true
  259. }
  260. let state = getIntValue(current: section, key: "status")
  261. if state == 1 {
  262. headerView.statusLabel.text = "已绑定"
  263. headerView.statusLabel.textColor = UIColor.red
  264. } else if state == 0 {
  265. headerView.statusLabel.text = "未绑定"
  266. headerView.statusLabel.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x0cab1f, alpha: 1.0)
  267. } else {
  268. headerView.statusLabel.text = "已激活"
  269. headerView.statusLabel.textColor = UIColor.red
  270. }
  271. headerView.snLabel.text = "SN: \(getString(current: section, key: "sn_code"))"
  272. headerView.snId = getString(current: section, key: "id")
  273. return headerView
  274. }
  275. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  276. let cell = tableView.dequeueReusableCell(withIdentifier: "PosTableViewCell", for: indexPath) as! PosTableViewCell
  277. cell.selectionStyle = .none
  278. if "\(getString(current: indexPath.section, key: "superior_user_name"))".length() == 0 {
  279. cell.nameLabel.text = "平台分拨"
  280. } else {
  281. cell.nameLabel.text = "\(getString(current: indexPath.section, key: "superior_user_name"))"
  282. }
  283. cell.dateLabel.text = "\(getString(current: indexPath.section, key: "allocation_time"))"
  284. cell.shopNameLabel.text = "\(getString(current: indexPath.section, key: "bind_merchant_name"))"
  285. cell.endTimeLabel.text = "\(getString(current: indexPath.section, key: "endtime"))"
  286. if cell.shopNameLabel.text == "未绑定商户" {
  287. cell.bindDateLabel.text = "未绑定"
  288. } else {
  289. cell.bindDateLabel.text = "\(getString(current: indexPath.section, key: "bind_time"))"
  290. }
  291. return cell
  292. }
  293. /*
  294. // MARK: - Navigation
  295. // In a storyboard-based application, you will often want to do a little preparation before navigation
  296. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  297. // Get the new view controller using segue.destination.
  298. // Pass the selected object to the new view controller.
  299. }
  300. */
  301. }