ExpressTemplate.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. use think\Db;
  17. /**
  18. * 邮费模板管理
  19. * Class ExpressTemplate
  20. * @package app\store\controller
  21. */
  22. class ExpressTemplate extends Controller
  23. {
  24. /**
  25. * 指定数据表
  26. * @var string
  27. */
  28. protected $table = 'StoreExpressTemplate';
  29. /**
  30. * 邮费模板管理
  31. * @auth true
  32. * @menu true
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. * @throws \think\exception\DbException
  36. */
  37. public function index()
  38. {
  39. $this->title = '邮费模板管理';
  40. $filename = env('root_path') . 'public/static/plugs/jquery/area/area.json';
  41. $this->provinces = array_column(json_decode(file_get_contents($filename), true), 'name');
  42. $this->list = Db::name($this->table)->where(['is_default' => '0'])->select();
  43. foreach ($this->list as &$item) $item['rule'] = explode(',', $item['rule']);
  44. $this->default = Db::name($this->table)->where(['is_default' => '1'])->find();
  45. $this->fetch();
  46. }
  47. /**
  48. * 保存邮费模板
  49. * @auth true
  50. * @throws \think\Exception
  51. * @throws \think\exception\PDOException
  52. */
  53. public function save()
  54. {
  55. list($list, $idxs, $post) = [[], [], $this->request->post()];
  56. foreach (array_keys($post) as $key) if (stripos($key, 'order_reduction_state_') !== false) {
  57. $idxs[] = str_replace('order_reduction_state_', '', $key);
  58. }
  59. foreach (array_unique($idxs) as $index) if (!empty($post["rule_{$index}"])) $list[] = [
  60. 'rule' => join(',', $post["rule_{$index}"]),
  61. // 订单满减配置
  62. 'order_reduction_state' => $post["order_reduction_state_{$index}"],
  63. 'order_reduction_price' => $post["order_reduction_price_{$index}"],
  64. // 首件邮费配置
  65. 'first_number' => $post["first_number_{$index}"],
  66. 'first_price' => $post["first_price_{$index}"],
  67. // 首件邮费配置
  68. 'next_number' => $post["next_number_{$index}"],
  69. 'next_price' => $post["next_price_{$index}"],
  70. // 默认邮费规则
  71. 'is_default' => $post["is_default_{$index}"],
  72. ];
  73. if (empty($list)) $this->error('请配置有效的邮费规则');
  74. Db::name($this->table)->where('1=1')->delete();
  75. Db::name($this->table)->insertAll($list);
  76. $this->success('邮费规则配置成功!');
  77. }
  78. }