Discount.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. namespace app\data\controller\base;
  3. use app\data\service\UserUpgradeService;
  4. use think\admin\Controller;
  5. /**
  6. * 折扣方案管理
  7. * Class Discount
  8. * @package app\data\controller\base
  9. */
  10. class Discount extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. private $table = 'DataBaseDiscount';
  17. /**
  18. * 折扣方案管理
  19. * @auth true
  20. * @menu true
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\DbException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. */
  25. public function index()
  26. {
  27. $this->title = '折扣方案管理';
  28. $query = $this->_query($this->table);
  29. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  30. }
  31. /**
  32. * 数据列表处理
  33. * @param array $data
  34. */
  35. protected function _page_filter(array &$data)
  36. {
  37. foreach ($data as &$vo) {
  38. $vo['items'] = json_decode($vo['items'], true);
  39. }
  40. }
  41. /**
  42. * 添加折扣方案
  43. * @auth true
  44. * @throws \think\db\exception\DataNotFoundException
  45. * @throws \think\db\exception\DbException
  46. * @throws \think\db\exception\ModelNotFoundException
  47. */
  48. public function add()
  49. {
  50. $this->_form($this->table, 'form');
  51. }
  52. /**
  53. * 编辑折扣方案
  54. * @auth true
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\DbException
  57. * @throws \think\db\exception\ModelNotFoundException
  58. */
  59. public function edit()
  60. {
  61. $this->_form($this->table, 'form');
  62. }
  63. /**
  64. * 表单数据处理
  65. * @param array $vo
  66. */
  67. protected function _form_filter(array &$vo)
  68. {
  69. if ($this->request->isPost()) {
  70. $rule = [];
  71. foreach ($vo as $k => $v) if (stripos($k, '_level_') !== false) {
  72. [, $level] = explode('_level_', $k);
  73. $rule[] = ['level' => $level, 'discount' => $v];
  74. }
  75. $vo['items'] = json_encode($rule, JSON_UNESCAPED_UNICODE);
  76. } else {
  77. $this->levels = UserUpgradeService::instance()->levels();
  78. if (empty($this->levels)) $this->error('未配置用户等级!');
  79. if (!empty($vo['items'])) foreach (json_decode($vo['items'], true) as $item) {
  80. $vo["_level_{$item['level']}"] = $item['discount'];
  81. }
  82. }
  83. }
  84. /**
  85. * 修改折扣方案状态
  86. * @auth true
  87. * @throws \think\db\exception\DbException
  88. */
  89. public function state()
  90. {
  91. $this->_save($this->table);
  92. }
  93. /**
  94. * 删除折扣方案配置
  95. * @auth true
  96. * @throws \think\db\exception\DbException
  97. */
  98. public function remove()
  99. {
  100. $this->_delete($this->table);
  101. }
  102. }