ShopTruckCompany.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. namespace app\data\controller;
  3. use app\data\service\TruckService;
  4. use think\admin\Controller;
  5. use think\admin\service\SystemService;
  6. use think\exception\HttpResponseException;
  7. /**
  8. * 配送快递公司管理
  9. * Class ShopTruckCompany
  10. * @package app\data\controller
  11. */
  12. class ShopTruckCompany extends Controller
  13. {
  14. /**
  15. * 绑定数据表
  16. * @var string
  17. */
  18. private $table = 'ShopTruckCompany';
  19. /**
  20. * 快递公司管理
  21. * @auth true
  22. * @menu true
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\DbException
  25. * @throws \think\db\exception\ModelNotFoundException
  26. */
  27. public function index()
  28. {
  29. $this->title = '快递公司管理';
  30. $query = $this->_query($this->table);
  31. $query->like('name,code')->equal('status')->dateBetween('craete_at');
  32. // 加载对应数据
  33. $this->type = $this->request->get('type', 'index');
  34. if ($this->type === 'index') $query->where(['status' => '1']);
  35. elseif ($this->type === 'recycle') $query->where(['status' => '0']);
  36. // 列表显示分页
  37. $query->where(['deleted' => 0])->order('sort desc,id desc')->page();
  38. }
  39. /**
  40. * 添加快递公司
  41. * @auth true
  42. * @throws \think\db\exception\DataNotFoundException
  43. * @throws \think\db\exception\DbException
  44. * @throws \think\db\exception\ModelNotFoundException
  45. */
  46. public function add()
  47. {
  48. $this->title = '添加快递公司';
  49. $this->_form($this->table, 'form');
  50. }
  51. /**
  52. * 编辑快递公司
  53. * @auth true
  54. * @throws \think\db\exception\DataNotFoundException
  55. * @throws \think\db\exception\DbException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. */
  58. public function edit()
  59. {
  60. $this->title = '编辑快递公司';
  61. $this->_form($this->table, 'form');
  62. }
  63. /**
  64. * 修改快递公司状态
  65. * @auth true
  66. * @throws \think\db\exception\DbException
  67. */
  68. public function state()
  69. {
  70. $this->_save($this->table, $this->_vali([
  71. 'status.in:0,1' => '状态值范围异常!',
  72. 'status.require' => '状态值不能为空!',
  73. ]));
  74. }
  75. /**
  76. * 删除快递公司
  77. * @auth true
  78. * @throws \think\db\exception\DbException
  79. */
  80. public function remove()
  81. {
  82. $this->_delete($this->table);
  83. }
  84. /**
  85. * 同步快递公司
  86. * @auth true
  87. */
  88. public function synchronize()
  89. {
  90. try {
  91. $result = TruckService::instance()->company();
  92. if (empty($result['code'])) $this->error($result['info']);
  93. foreach ($result['data'] as $vo) SystemService::instance()->save($this->table, [
  94. 'code_1' => $vo['code_1'], 'code_2' => $vo['code_2'],
  95. 'code_3' => $vo['code_3'], 'name' => $vo['title'], 'deleted' => 0,
  96. ], 'code_1');
  97. $this->success('同步快递公司成功!');
  98. } catch (HttpResponseException $exception) {
  99. throw $exception;
  100. } catch (\Exception $exception) {
  101. $this->error('同步快递公司数据失败!');
  102. }
  103. }
  104. }