ActiveDetailViewController.swift 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. //
  2. // ActiveDetailViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/31.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ActiveDetailViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. var activityId: String = ""
  11. var userId: String = ""
  12. var canEdit: Bool = false
  13. var isActive: Bool = false
  14. // let topicArr: NSArray = ["产品政策", "分润规则", "活动奖励分润"]
  15. let topicArr: NSArray = ["产品政策", "分润规则", "活动奖励分润"]
  16. // 产品政策
  17. var activationAmountReward: String = "" // 激活奖励
  18. var productRulesConfigs: NSArray = [] // 产品政策
  19. // 分润规则
  20. var distributionRuleConfigs: NSArray = [] // 分润规则
  21. var productDatas: NSMutableArray = NSMutableArray() // 产品政策数据
  22. var ruleDatas: NSMutableArray = NSMutableArray() // 分润规则数据
  23. var rewardMoneyOr: String = "" // 奖励分润
  24. var placeAmountReward: String = ""
  25. var placeProductDates: NSMutableArray = NSMutableArray()
  26. var placeRuleDates: NSMutableArray = NSMutableArray()
  27. var placeRewardMoneyId: String = ""
  28. var placeRewardMoney: String = ""
  29. let navTitleV: ActiveNavCustomView = {
  30. let view = CommonViewUntils.getViewForXIB(xibName: "ActiveNavCustomView") as! ActiveNavCustomView
  31. return view
  32. }()
  33. @IBOutlet weak var tableView: UITableView!
  34. override func viewWillAppear(_ animated: Bool) {
  35. super.viewWillAppear(animated)
  36. if canEdit {
  37. initNavRightButtonForTitle(title: "保存", color: UIColor.white)
  38. }
  39. }
  40. override func viewDidLoad() {
  41. super.viewDidLoad()
  42. navInit()
  43. tableView.delegate = self
  44. tableView.dataSource = self
  45. tableView.tableFooterView = UIView.init()
  46. tableView.separatorStyle = .none
  47. tableView.register(UINib(nibName: "ActiveDetailCell", bundle: nil), forCellReuseIdentifier: "activeDetailCell")
  48. loadData()
  49. }
  50. func navInit() {
  51. navTitleV.canEdit = isActive
  52. if isActive == false {
  53. navTitleV.titleLabel.text = "我的政策"
  54. } else {
  55. let tapG: UITapGestureRecognizer = UITapGestureRecognizer.init(target: self, action: #selector(tap(tap:)))
  56. navTitleV.addGestureRecognizer(tapG)
  57. }
  58. self.navigationItem.titleView = navTitleV
  59. initNavLeftBackButton()
  60. }
  61. // MARK: - request
  62. func loadData() { // 查询
  63. let url = RequestURL.activityEdit
  64. let params = NSMutableDictionary()
  65. params.setValue(modelJson(), forKey: "model")
  66. params.setValue("0003", forKey: "code")
  67. loadDataInfoPost(url: url, params: params, tag: 1001)
  68. }
  69. func modelJson() -> String {
  70. let tempDic = NSMutableDictionary()
  71. tempDic.setValue(activityId, forKey: "activityId")
  72. tempDic.setValue(userId, forKey: "userId")
  73. let data = (try? JSONSerialization.data(withJSONObject: tempDic, options: .prettyPrinted))!
  74. let strJson = NSString(data: data, encoding: String.Encoding.utf8.rawValue)
  75. return strJson! as String
  76. }
  77. func loadDataForUpdate() { // 修改
  78. let url = RequestURL.activityEdit
  79. let params = NSMutableDictionary()
  80. let modelStr = modelJsonForUpdate()
  81. if modelStr == "" {
  82. return
  83. }
  84. params.setValue(modelStr, forKey: "model")
  85. params.setValue("0005", forKey: "code")
  86. loadDataInfoPost(url: url, params: params, tag: 1002)
  87. }
  88. func modelJsonForUpdate() -> String {
  89. let tempDic = NSMutableDictionary()
  90. tempDic.setValue(activityId, forKey: "activityId")
  91. tempDic.setValue(userId, forKey: "userId")
  92. // 产品政策
  93. let curProRulesConfigs: NSMutableArray = NSMutableArray()
  94. for i in 0...(productRulesConfigs.count - 1) {
  95. let dic: NSDictionary = productRulesConfigs[i] as! NSDictionary
  96. let mDic: NSMutableDictionary = NSMutableDictionary(dictionary: dic)
  97. let productC: String = productDatas[i] as! String
  98. if productC.length() == 0 {
  99. SVProgressHUD.showError(withStatus: "请先填写\(getString(key: "timeRangeMin", dic: dic))至\(getString(key: "timeRangeMax", dic: dic))天档位的金额")
  100. return ""
  101. }
  102. mDic.setValue(productDatas[i], forKey: "rewardMoney")
  103. curProRulesConfigs.add(mDic)
  104. }
  105. let policys: NSArray = dicData["productPolicys"] as! NSArray
  106. let policyDic: NSDictionary = policys.firstObject as! NSDictionary
  107. let productPolicysDic: NSMutableDictionary = NSMutableDictionary()
  108. if activationAmountReward.length() == 0 {
  109. SVProgressHUD.showError(withStatus: "请先填写激活奖励的金额")
  110. return ""
  111. }
  112. productPolicysDic.setValue(activationAmountReward, forKey: "activationAmountReward")
  113. productPolicysDic.setValue(policyDic["id"], forKey: "id")
  114. productPolicysDic.setValue(curProRulesConfigs, forKey: "productRulesConfigs")
  115. tempDic.setValue([productPolicysDic], forKey: "productPolicys")
  116. // 分润规则
  117. let curDisRulesConfigs: NSMutableArray = NSMutableArray()
  118. for i in 0...(distributionRuleConfigs.count - 1) {
  119. let dic: NSDictionary = distributionRuleConfigs[i] as! NSDictionary
  120. let mDic: NSMutableDictionary = NSMutableDictionary(dictionary: dic)
  121. let curStr: String = ruleDatas[i] as! String
  122. let curAm = Float(curStr)
  123. let defStr: String = placeRuleDates[i] as! String
  124. let defAm = Float(defStr)
  125. let curF = CGFloat.init(curAm ?? 0)
  126. let defF = CGFloat.init(defAm ?? 0)
  127. if curStr.length() == 0 {
  128. SVProgressHUD.showError(withStatus: "请先填写\(getString(key: "cardName", dic: dic))价格")
  129. return ""
  130. }
  131. if curF < defF {
  132. SVProgressHUD.showError(withStatus: "填写\(getString(key: "cardName", dic: dic))价格应大于或等于\(getString(key: "costRate", dic: dic))")
  133. return ""
  134. }
  135. mDic.setValue(ruleDatas[i], forKey: "costRate")
  136. curDisRulesConfigs.add(mDic)
  137. }
  138. let rules: NSArray = dicData["distributionRules"] as! NSArray
  139. let ruleDic: NSDictionary = rules.firstObject as! NSDictionary
  140. let distributionRule = ["distributionRuleConfig": curDisRulesConfigs,
  141. "id": ruleDic["id"],"debitCardCostRate":ruleDic["debitCardCostRate"],"debitCardCapping":ruleDic["debitCardCapping"]]
  142. tempDic .setValue(distributionRule, forKey: "distributionRule")
  143. if getString(key: "rewardMoneyOrId").length() > 0 && placeRewardMoney.length() > 0 {
  144. // if rewardMoneyOr.length() == 0 {
  145. // SVProgressHUD.showError(withStatus: "请先填写奖励分润")
  146. // return ""
  147. // }
  148. let curAm = Float(rewardMoneyOr)
  149. let defAm = Float(placeRewardMoney)
  150. let curF = CGFloat.init(curAm ?? 0)
  151. let defF = CGFloat.init(defAm ?? 0)
  152. if curF > defF {
  153. SVProgressHUD.showError(withStatus: "填写奖励分润应大于或等于\(getString(key: "rewardMoneyOr"))")
  154. return ""
  155. }
  156. tempDic.setValue(rewardMoneyOr, forKey: "rewardMoneyOr")
  157. tempDic.setValue(dicData["rewardMoneyOrId"], forKey: "rewardMoneyOrId")
  158. }
  159. let data = (try? JSONSerialization.data(withJSONObject: tempDic, options: .prettyPrinted))!
  160. let strJson = NSString(data: data, encoding: String.Encoding.utf8.rawValue)
  161. return strJson! as String
  162. }
  163. override func returnData(tag: Int) {
  164. if tag == 1001 { //查询
  165. // 产品政策
  166. let policys: NSArray = dicData["productPolicys"] as! NSArray
  167. if policys.count != 0 {
  168. let policyDic: NSDictionary = policys.firstObject as! NSDictionary
  169. activationAmountReward = policyDic["activationAmountReward"] as! String
  170. if canEdit == false {
  171. placeAmountReward = policyDic["activationAmountReward"] as! String
  172. }
  173. productRulesConfigs = policyDic["productRulesConfigs"] as! NSArray
  174. for dic in productRulesConfigs {
  175. productDatas.add(getString(key: "rewardMoney", dic: dic as! NSDictionary))
  176. if canEdit == false {
  177. placeProductDates.add(getString(key: "rewardMoney", dic: dic as! NSDictionary))
  178. }
  179. }
  180. } else {
  181. productRulesConfigs = []
  182. }
  183. // 分润规则
  184. let rules: NSArray = dicData["distributionRules"] as! NSArray
  185. if rules.count != 0 {
  186. let ruleDic: NSDictionary = rules.firstObject as! NSDictionary
  187. distributionRuleConfigs = ruleDic["distributionRuleConfigs"] as! NSArray
  188. ruleDatas.removeAllObjects()
  189. for dic in distributionRuleConfigs {
  190. ruleDatas.add(getString(key: "costRate", dic: dic as! NSDictionary))
  191. if canEdit == false {
  192. placeRuleDates.add(getString(key: "costRate", dic: dic as! NSDictionary))
  193. }
  194. }
  195. } else {
  196. distributionRuleConfigs = []
  197. }
  198. rewardMoneyOr = getString(key: "rewardMoneyOr")
  199. if canEdit == false {
  200. placeRewardMoney = getString(key: "rewardMoneyOr")
  201. placeRewardMoneyId = getString(key: "rewardMoneyOrId")
  202. }
  203. tableView.reloadData()
  204. } else if tag == 1002 { // 修改
  205. self.navigationController?.popViewController(animated: true)
  206. }
  207. }
  208. override func returnError(tag: Int, type: String) {
  209. }
  210. // MARK: - action
  211. @objc func tap(tap: UITapGestureRecognizer) {
  212. let listVc = DelegateListForActiveViewController()
  213. listVc.selectBlock = { (dic) in
  214. if self.getString(key: "realName", dic: dic) == "" {
  215. self.navTitleV.titleLabel.text = "未实名"
  216. } else {
  217. self.navTitleV.titleLabel.text = "\(self.getString(key: "realName", dic: dic)) "
  218. }
  219. self.canEdit = true
  220. self.userId = dic["id"] as! String
  221. self.loadData()
  222. }
  223. self.navigationController?.pushViewController(listVc, animated: true)
  224. }
  225. override func btnRightMenuClick() {
  226. if productRulesConfigs.count == 0 && distributionRuleConfigs.count == 0 {
  227. return
  228. }
  229. loadDataForUpdate()
  230. }
  231. // MARK: - delegate
  232. func numberOfSections(in tableView: UITableView) -> Int {
  233. if dicData.allKeys.count == 0 || (productRulesConfigs.count == 0 && distributionRuleConfigs.count == 0) {
  234. return 0
  235. }
  236. if getString(key: "rewardMoneyOrId").length() > 0 && placeRewardMoney.length() > 0 {
  237. return 2
  238. }
  239. return 2
  240. }
  241. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  242. if section == 0 {
  243. return productRulesConfigs.count>0 ? 3 : 1
  244. } else if section == 1 {
  245. return distributionRuleConfigs.count + 1
  246. }
  247. return 1
  248. }
  249. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  250. return 60
  251. }
  252. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  253. return 60
  254. }
  255. func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  256. let headerV = CommonViewUntils.getViewForXIB(xibName: "ActiveDetailHeaderView") as! ActiveDetailHeaderView
  257. headerV.topic = topicArr[section] as! String
  258. return headerV
  259. }
  260. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  261. let cell = tableView.dequeueReusableCell(withIdentifier: "activeDetailCell", for: indexPath) as! ActiveDetailCell
  262. cell.selectionStyle = .none
  263. cell.trailingTextField.isUserInteractionEnabled = canEdit
  264. cell.textFieldBlock = { [weak self] (str) in
  265. if indexPath.section == 0 {
  266. if indexPath.row == 0 {
  267. self?.activationAmountReward = str
  268. } else if indexPath.row > 1 {
  269. self?.productDatas.replaceObject(at: indexPath.row - 2, with: str)
  270. }
  271. } else if indexPath.section == 1 {
  272. if indexPath.row > 0 {
  273. self?.ruleDatas.replaceObject(at: indexPath.row - 1, with: str)
  274. }
  275. } else if indexPath.section == 2 {
  276. self?.rewardMoneyOr = str
  277. }
  278. }
  279. if indexPath.section == 0 {
  280. if indexPath.row == 0 {
  281. cell.isNeedSep = true
  282. cell.bgView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xD7ECF8)
  283. cell.leadingLabel.text = "激活奖励(元)"
  284. cell.centerLabel.text = ""
  285. cell.trailingTextField.text = activationAmountReward
  286. cell.trailingTextField.placeholder = "输入≤\(placeAmountReward)的金额"
  287. } else if indexPath.row == 1 {
  288. cell.isNeedSep = true
  289. cell.bgView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xDEE9F8)
  290. cell.leadingLabel.text = "时间档位(天)"
  291. cell.centerLabel.text = "消费额度(元)"
  292. cell.trailingTextField.text = "交易达标(元/户)"
  293. cell.trailingTextField.isUserInteractionEnabled = false
  294. } else {
  295. cell.isNeedSep = false
  296. cell.bgView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xEBEEF0)
  297. let configDic: NSDictionary = productRulesConfigs[indexPath.row - 2] as! NSDictionary
  298. let timeMax: String = configDic["timeRangeMax"] as! String
  299. let timeMin: String = configDic["timeRangeMin"] as! String
  300. cell.leadingLabel.text = "\(timeMin)至\(timeMax)天"
  301. cell.centerLabel.text = (configDic["costTotal"] as! String)
  302. cell.trailingTextField.text = (configDic["rewardMoney"] as! String)
  303. // cell.trailingTextField.placeholder = "输入≤\(configDic["rewardMoney"] ?? "0")的金额"
  304. let earn: String = (configDic["rewardMoney"] as! String)
  305. cell.trailingTextField.placeholder = "输入≤\(earn)的金额"
  306. }
  307. } else if indexPath.section == 1 {
  308. if indexPath.row == 0 {
  309. cell.isNeedSep = true
  310. cell.trailingTextField.isUserInteractionEnabled = false
  311. cell.bgView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xDEE9F8)
  312. cell.leadingLabel.text = "卡类型"
  313. cell.centerLabel.text = ""
  314. cell.trailingTextField.text = "结算价格(%)"
  315. } else {
  316. cell.isNeedSep = false
  317. cell.bgView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xEBEEF0)
  318. let ruleDic: NSDictionary = distributionRuleConfigs[indexPath.row - 1] as! NSDictionary
  319. cell.leadingLabel.text = (ruleDic["cardName"] as! String)
  320. cell.centerLabel.text = ""
  321. cell.trailingTextField.text = (ruleDic["costRate"] as! String)
  322. let rate: String = (ruleDic["costRate"] as! String)
  323. cell.trailingTextField.placeholder = "输入≥\(rate)的价格"
  324. }
  325. } else if indexPath.section == 2 {
  326. cell.isNeedSep = false
  327. cell.bgView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xD7ECF8)
  328. cell.leadingLabel.text = "奖励分润(%)"
  329. cell.centerLabel.text = ""
  330. cell.trailingTextField.text = getString(key: "rewardMoneyOr")
  331. // cell.trailingTextField.placeholder = "输入≤\(getString(key: "rewardMoneyOr"))的分润"
  332. cell.trailingTextField.placeholder = "输入≤\(placeRewardMoney)的分润"
  333. }
  334. if indexPath.section == 0 {
  335. if indexPath.row == 0 {
  336. cell.type = "1"
  337. } else if indexPath.row == productRulesConfigs.count + 1 {
  338. cell.type = "2"
  339. } else {
  340. cell.type = "0"
  341. }
  342. } else if indexPath.section == 1 {
  343. if indexPath.row == 0 {
  344. cell.type = "1"
  345. } else if indexPath.row == distributionRuleConfigs.count {
  346. cell.type = "2"
  347. } else {
  348. cell.type = "0"
  349. }
  350. } else if indexPath.section == 2 {
  351. if indexPath.row == 0 {
  352. cell.type = "3"
  353. }
  354. }
  355. return cell
  356. }
  357. /*
  358. // MARK: - Navigation
  359. // In a storyboard-based application, you will often want to do a little preparation before navigation
  360. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  361. // Get the new view controller using segue.destination.
  362. // Pass the selected object to the new view controller.
  363. }
  364. */
  365. }
  366. //extension UITableView {
  367. //
  368. // func addNotifications() {
  369. //
  370. // NotificationCenter.default.addObserver(self, selector: #selector(boardWillShow(not:)), name: UIResponder.keyboardWillShowNotification, object: nil)
  371. //
  372. // NotificationCenter.default.addObserver(self, selector: #selector(boardDidHide(not:)), name: UIResponder.keyboardWillHideNotification, object: nil)
  373. //
  374. // }
  375. //
  376. //
  377. //
  378. // @objc func boardWillShow(not: NSNotification) {
  379. //
  380. // if let userInfo = not.userInfo {
  381. //
  382. // if let keyBoardRect = userInfo[UIResponder.keyboardFrameEndUserInfoKey] as? CGRect {
  383. //
  384. // UIView.animate(withDuration: 0.25) {
  385. //
  386. // self.contentInset = UIEdgeInsetsMake(0, 0, keyBoardRect.size.height, 0)
  387. //
  388. // }
  389. //
  390. // }
  391. //
  392. // }
  393. //
  394. // }
  395. //
  396. //
  397. //
  398. // @objc func boardDidHide(not: NSNotification) {
  399. //
  400. // UIView.animate(withDuration: 0.25) {
  401. //
  402. // self.contentInset = .zero
  403. //
  404. // }
  405. //
  406. // }
  407. //
  408. // func `deinit`() {
  409. //
  410. // NotificationCenter.default.removeObserver(self)
  411. //
  412. // }
  413. //
  414. //}