MerchantsStateDetailVC.swift 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. //
  2. // MerchantsStateDetailVC.swift
  3. // xingchuangke
  4. //
  5. // Created by Apple on 2021/3/2.
  6. // Copyright © 2021 Virgil. All rights reserved.
  7. //
  8. class MerchantsStateDetailVC: BaseViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate {
  9. @IBOutlet weak var tableView: UITableView!
  10. @IBOutlet weak var imgBackgroud: UIImageView!
  11. @IBOutlet weak var txtCode: UITextField!
  12. @IBOutlet weak var viewMenu: UIView!
  13. var queryEntity: ShopQueryModel!
  14. let contentV = CommonViewUntils.getViewForXIB(xibName: "MerchantsMenuContent") as! MerchantsMenuContent
  15. var menuView: XF_RightMenu = {
  16. let menuView = XF_RightMenu.init(frame: UIScreen.main.bounds)
  17. return menuView
  18. }()
  19. var sortType: String = "desc"
  20. var mid = ""
  21. var machineType = ""
  22. var dicModel = NSMutableDictionary()
  23. override func viewDidLoad() {
  24. super.viewDidLoad()
  25. queryEntity = ShopQueryModel()
  26. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  27. let name = self.dicModel.object(forKey: "name") as! String
  28. viewNav.initView(title: name) {[weak self] (index, _) in
  29. if index == 0 {
  30. self!.handleBack()
  31. }
  32. }
  33. self.view.addSubview(viewNav)
  34. viewNav.marginTop(top: 0)
  35. viewNav.initRightBtn(title: "筛选")
  36. viewNav.btnRight.addTarget(self, action: #selector(rewardClick), for: .touchUpInside)
  37. self.view.addSubview(viewNav)
  38. viewNav.marginTop(top: 0)
  39. viewMenu.marginTop(top: viewNav.bottom())
  40. txtCode.setCornerRadius(size: 4)
  41. txtCode.setContentMarginLeft(leftWidth: 15)
  42. txtCode.setContentMarginRight(rightWidth: 30)
  43. imgBackgroud.setSizeHeight(height: viewMenu.bottom())
  44. tableView.marginTop(top: 0, view: imgBackgroud)
  45. tableView.setSizeHeight(height: ScreenHeight - imgBackgroud.height() - 49)
  46. tableView.register(UINib(nibName: "MerchantsStateDetailCell", bundle: nil), forCellReuseIdentifier: "MerchantsStateDetailCell")
  47. tableView.delegate = self
  48. tableView.dataSource = self
  49. tableView.separatorStyle = .none
  50. tableView.showsVerticalScrollIndicator = false
  51. tableView.estimatedRowHeight = 100
  52. tableView.keyboardDismissMode = .onDrag
  53. txtCode.delegate = self
  54. txtCode.returnKeyType = .search
  55. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  56. self!.currentPage = 1
  57. self!.loadData()
  58. })
  59. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  60. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  61. self!.currentPage += 1
  62. self!.loadData()
  63. })
  64. self.view.addSubview(menuView)
  65. loadData()
  66. loadDataActivityAuth()
  67. menuView.contentView = contentV
  68. contentV.callBackForSure = {[weak self] (queryEntityTemp) in
  69. self!.machineType = queryEntityTemp.object(forKey: "machineTypeId") as! String
  70. self!.menuView.hiddenView()
  71. self!.loadData()
  72. }
  73. }
  74. @objc func rewardClick( ) {
  75. self.menuView.showView()
  76. }
  77. func textFieldShouldReturn(_ textField: UITextField) -> Bool {
  78. self.currentPage = 1
  79. loadData()
  80. return true
  81. }
  82. // MARK: =============加载数据===============
  83. func loadData() {
  84. let url = RequestURL.machineInforList
  85. let params = NSMutableDictionary()
  86. params.setValue(CommonValue.getUserId(), forKey: "userId")
  87. params.setValue(self.machineType, forKey: "machineTypeId")
  88. params.setValue("", forKey: "snCode")
  89. let paramName = self.dicModel.object(forKey: "paramName") as! String
  90. let paramStatus = self.dicModel.object(forKey: "paramStatus") as! String
  91. if paramName == "isBind" {
  92. params.setValue(paramStatus, forKey: "isBind")
  93. }else if paramName == "isStandard" {
  94. params.setValue(paramStatus, forKey: "isStandard")
  95. }else if paramName == "isGrant" {
  96. params.setValue(paramStatus, forKey: "isGrant")
  97. }else if paramName == "isDeposit" {
  98. params.setValue(paramStatus, forKey: "isDeposit")
  99. }
  100. params.setValue(txtCode.text!, forKey: "findName")
  101. submitDatMachineInforList(url: url, params: params, tableView: tableView, tag: 1001)
  102. }
  103. // MARK: - request
  104. func loadDataActivityAuth() {
  105. let url = RequestURL.activityAuth
  106. let params = NSMutableDictionary()
  107. params.setValue(CommonValue.getUserId(), forKey: "userId")
  108. params.setValue("0001", forKey: "code")
  109. loadDataListPostMerchants(url: url, params: params, tag: 1003)
  110. }
  111. func submitData() {
  112. if selectedIndex == -1 {
  113. SVProgressHUD.showError(withStatus: "请选择分拨代理")
  114. return
  115. }
  116. let url = RequestURL.machineAllocation
  117. let params = NSMutableDictionary()
  118. params.setValue(getString(current: selectedIndex, key: "id"), forKey: "userId")
  119. params.setValue(mid, forKey: "machineId")
  120. submitData(url: url, params: params, tag: 1002)
  121. }
  122. override func returnData(tag: Int) {
  123. if tag == 1001 {
  124. tableView.reloadData()
  125. } else if tag == 1002 {
  126. SVProgressHUD.showSuccess(withStatus: "分拨成功!")
  127. handleBack()
  128. } else if tag == 1003 {
  129. contentV.arrDataMj = self.arrDataMj
  130. contentV.returnData()
  131. }
  132. }
  133. override func returnError(tag: Int, type: String) {
  134. }
  135. // MARK: TABLEVLEW 实现
  136. func numberOfSections(in tableView: UITableView) -> Int {
  137. return 1
  138. }
  139. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  140. return self.arrData.count
  141. }
  142. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  143. return 82
  144. }
  145. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  146. let cell = tableView.dequeueReusableCell(withIdentifier: "MerchantsStateDetailCell", for: indexPath as IndexPath) as! MerchantsStateDetailCell
  147. cell.lblName.text = "\(getString(current: indexPath.row, key: "company_name"))"
  148. //是否押金
  149. let deposit_amount = getIntValue(current: indexPath.row, key: "activation_conditions")
  150. if deposit_amount == 0 {
  151. cell.lblYJ.text = "押金"
  152. cell.lblYJ.textColor = .gray
  153. //机具状态
  154. //区间累积消费 交易是否达标
  155. let is_grant = getIntValue(current: indexPath.row, key: "is_grant")
  156. //总累积消费
  157. let is_standard = getIntValue(current: indexPath.row, key: "is_standard")
  158. let standard_reward_st = getString(current: indexPath.row, key: "standard_reward_st")
  159. if is_grant == 0 && is_standard == 0{
  160. cell.lblJD.text = "未达标"
  161. cell.lblJD.textColor = .orange
  162. if standard_reward_st == "0" {
  163. cell.lblRight.text = "押金激活奖励未发放"
  164. cell.lblRight.textColor = .red
  165. }else if standard_reward_st == "1" {
  166. cell.lblRight.text = "押金激活奖励已发放"
  167. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  168. }else {
  169. cell.lblRight.text = "押金激活奖励已发放"
  170. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  171. }
  172. }
  173. if is_grant != 0 {
  174. if standard_reward_st == "0" {
  175. cell.lblRight.text = "押金激活奖励未发放"
  176. cell.lblRight.textColor = .red
  177. }else if standard_reward_st == "1" {
  178. cell.lblRight.text = "押金激活奖励已发放"
  179. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  180. }else {
  181. cell.lblRight.text = "押金激活奖励已发放"
  182. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  183. }
  184. cell.lblJD.text = "\(is_grant)" + "阶段已达标"
  185. cell.lblJD.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  186. }
  187. if is_standard != 0 {
  188. if standard_reward_st == "0" {
  189. cell.lblRight.text = "押金激活奖励未发放"
  190. cell.lblRight.textColor = .red
  191. }else if standard_reward_st == "1" {
  192. cell.lblRight.text = "押金激活奖励已发放"
  193. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  194. }else {
  195. cell.lblRight.text = "押金激活奖励已发放"
  196. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  197. }
  198. cell.lblJD.text = "\(is_grant)" + "阶段已达标"
  199. cell.lblJD.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  200. }
  201. }else if deposit_amount == 1 {
  202. cell.lblYJ.text = "非押金"
  203. cell.lblYJ.textColor = .red
  204. //机具状态
  205. //区间累积消费 交易是否达标
  206. let is_grant = getIntValue(current: indexPath.row, key: "is_grant")
  207. //总累积消费
  208. let is_standard = getIntValue(current: indexPath.row, key: "is_standard")
  209. let standard_reward_st = getString(current: indexPath.row, key: "standard_reward_st")
  210. if is_grant == 0 && is_standard == 0{
  211. cell.lblJD.text = "未达标"
  212. cell.lblJD.textColor = .orange
  213. if standard_reward_st == "0" {
  214. cell.lblRight.text = "达标激活奖励未发放"
  215. cell.lblRight.textColor = .red
  216. }else if standard_reward_st == "1" {
  217. cell.lblRight.text = "达标激活奖励已发放"
  218. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  219. }else {
  220. cell.lblRight.text = "达标激活奖励已发放"
  221. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  222. }
  223. }
  224. if is_grant != 0 {
  225. if standard_reward_st == "0" {
  226. cell.lblRight.text = "达标激活奖励未发放"
  227. cell.lblRight.textColor = .red
  228. }else if standard_reward_st == "1" {
  229. cell.lblRight.text = "达标激活奖励已发放"
  230. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  231. }else {
  232. cell.lblRight.text = "达标激活奖励已发放"
  233. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  234. }
  235. cell.lblJD.text = "\(is_grant)" + "阶段已达标"
  236. cell.lblJD.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  237. }
  238. if is_standard != 0 {
  239. if standard_reward_st == "0" {
  240. cell.lblRight.text = "达标激活奖励未发放"
  241. cell.lblRight.textColor = .red
  242. }else if standard_reward_st == "1" {
  243. cell.lblRight.text = "达标激活奖励已发放"
  244. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  245. }else {
  246. cell.lblRight.text = "达标激活奖励已发放"
  247. cell.lblRight.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  248. }
  249. cell.lblJD.text = "\(is_grant)" + "阶段已达标"
  250. cell.lblJD.textColor = .colorWithCustom(r: 55, g: 192, b: 102)
  251. }
  252. }
  253. return cell
  254. }
  255. var selectedIndex = -1
  256. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  257. if indexPath.row >= arrData.count {
  258. return
  259. }
  260. let machineTypeId = getString(current: indexPath.row, key: "machine_type_id")
  261. if (machineTypeId == "1" || machineTypeId == "777" || machineTypeId == "888" || machineTypeId == "999" || machineTypeId == "9999"){
  262. let vc = MyShopDetailTypeViewController()
  263. vc.id = getString(current: indexPath.row, key: "bind_merchant_id")
  264. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  265. toViewController(viewController: vc)
  266. } else {
  267. let vc = MyShopDetailViewController()
  268. let index: NSInteger = brandIdList.lastIndex(of: machineTypeId) ?? 0
  269. if index == 2 || index == 3 {
  270. vc.isKssSer = true
  271. }
  272. vc.id = getString(current: indexPath.row, key: "bind_merchant_id")
  273. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  274. toViewController(viewController: vc)
  275. }
  276. }
  277. override func viewWillAppear(_ animated: Bool) {
  278. super.viewWillAppear(animated)
  279. appDelegate.setNavigationBarHidden(isHidden: true)
  280. }
  281. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  282. super.init(nibName: "MerchantsStateDetailVC", bundle: nil)
  283. }
  284. required init?(coder aDecoder: NSCoder) {
  285. fatalError("init(coder:) has not been implemented")
  286. }
  287. }