Express.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <?php
  2. namespace app\admin\controller\shopro\dispatch;
  3. use app\common\controller\Backend;
  4. use app\admin\model\shopro\dispatch\Express as ExpressModel;
  5. use think\Db;
  6. use think\exception\PDOException;
  7. use think\exception\ValidateException;
  8. use Exception;
  9. /**
  10. * 快递物流
  11. *
  12. * @icon fa fa-circle-o
  13. */
  14. class Express extends Backend
  15. {
  16. /**
  17. * Express模型对象
  18. * @var \app\admin\model\shopro\dispatch\Express
  19. */
  20. protected $model = null;
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. $this->model = new \app\admin\model\shopro\dispatch\Dispatch;
  25. }
  26. /**
  27. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  28. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  29. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  30. */
  31. /**
  32. * 查看
  33. */
  34. public function index()
  35. {
  36. //当前是否为关联查询
  37. $this->relationSearch = false;
  38. //设置过滤方法
  39. $this->request->filter(['strip_tags', 'trim']);
  40. if ($this->request->isAjax()) {
  41. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  42. $total = $this->model
  43. ->where($where)
  44. ->where('type', 'express')
  45. ->order($sort, $order)
  46. ->count();
  47. $list = $this->model
  48. ->where($where)
  49. ->where('type', 'express')
  50. ->order($sort, $order)
  51. ->limit($offset, $limit)
  52. ->select();
  53. foreach ($list as $row) {
  54. $row->visible(['id', 'name', 'type', 'type_ids', 'express', 'createtime', 'updatetime']);
  55. $row->express = $this->getExpress($row);
  56. }
  57. $list = collection($list)->toArray();
  58. $result = array("total" => $total, "rows" => $list);
  59. return $this->success('物流快递', null, $result);
  60. }
  61. return $this->view->fetch();
  62. }
  63. /**
  64. * 添加
  65. */
  66. public function add()
  67. {
  68. if ($this->request->isPost()) {
  69. $params = $this->request->post();
  70. if ($params) {
  71. $params = json_decode($params['data'], true);
  72. $result = false;
  73. Db::startTrans();
  74. try {
  75. $express = $params['express'];
  76. $type_ids = [];
  77. foreach ($express as $k => $e) {
  78. $e['type'] = $params['type'];
  79. $expressModel = new ExpressModel();
  80. $expressModel->allowField(true)->save($e);
  81. array_push($type_ids, $expressModel->id);
  82. }
  83. $params['type_ids'] = implode(',', $type_ids);
  84. $params['type'] = 'express';
  85. $result = $this->model->allowField(true)->save($params);
  86. Db::commit();
  87. } catch (ValidateException $e) {
  88. Db::rollback();
  89. $this->error($e->getMessage());
  90. } catch (PDOException $e) {
  91. Db::rollback();
  92. $this->error($e->getMessage());
  93. } catch (Exception $e) {
  94. Db::rollback();
  95. $this->error($e->getMessage());
  96. }
  97. if ($result !== false) {
  98. $this->success();
  99. } else {
  100. $this->error(__('No rows were inserted'));
  101. }
  102. }
  103. $this->error(__('Parameter %s can not be empty', ''));
  104. }
  105. return $this->view->fetch();
  106. }
  107. /**
  108. * 编辑
  109. */
  110. public function edit($ids = null)
  111. {
  112. $row = $this->model->get($ids);
  113. if (!$row) {
  114. $this->error(__('No Results were found'));
  115. }
  116. if ($this->request->isPost()) {
  117. $params = $this->request->post();
  118. if ($params) {
  119. $params = json_decode($params['data'], true);
  120. $result = false;
  121. Db::startTrans();
  122. try {
  123. $express = $params['express'];
  124. $type_ids = [];
  125. foreach ($express as $k => $e) {
  126. $e['type'] = $params['type'];
  127. $expressModel = new ExpressModel();
  128. if (isset($e['id'])) {
  129. $expressModel = $expressModel->get($e['id']);
  130. $expressModel->allowField(true)->save($e);
  131. } else {
  132. $expressModel->allowField(true)->save($e);
  133. }
  134. array_push($type_ids, $expressModel->id);
  135. }
  136. $oldTypeIds = explode(',', $row['type_ids']);
  137. foreach ($oldTypeIds as $id) {
  138. if (!in_array($id, $type_ids)) {
  139. ExpressModel::destroy($id);
  140. }
  141. }
  142. $row->type_ids = implode(',', $type_ids);
  143. $row->type = 'express';
  144. $row->name = $params['name'];
  145. $row->save();
  146. $result = true;
  147. Db::commit();
  148. } catch (ValidateException $e) {
  149. Db::rollback();
  150. $this->error($e->getMessage());
  151. } catch (PDOException $e) {
  152. Db::rollback();
  153. $this->error($e->getMessage());
  154. } catch (Exception $e) {
  155. Db::rollback();
  156. $this->error($e->getMessage());
  157. }
  158. if ($result !== false) {
  159. $this->success();
  160. } else {
  161. $this->error(__('No rows were updated'));
  162. }
  163. }
  164. $this->error(__('Parameter %s can not be empty', ''));
  165. }
  166. $row->express = $this->getExpress($row);
  167. $this->assignconfig("row", $row);
  168. return $this->view->fetch();
  169. }
  170. /**
  171. * 回收站
  172. */
  173. public function recyclebin()
  174. {
  175. //设置过滤方法
  176. $this->request->filter(['strip_tags']);
  177. if ($this->request->isAjax()) {
  178. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  179. $total = $this->model
  180. ->onlyTrashed()
  181. ->where($where)
  182. ->where('type', 'express')
  183. ->order($sort, $order)
  184. ->count();
  185. $list = $this->model
  186. ->onlyTrashed()
  187. ->where($where)
  188. ->where('type', 'express')
  189. ->order($sort, $order)
  190. ->limit($offset, $limit)
  191. ->select();
  192. $result = array("total" => $total, "rows" => $list);
  193. return json($result);
  194. }
  195. return $this->view->fetch();
  196. }
  197. private function getExpress($data)
  198. {
  199. if ($data['type'] === 'express') {
  200. return \app\admin\model\shopro\dispatch\Express::where('id', 'in', $data['type_ids'])->order('weigh desc, id asc')->select();
  201. }
  202. return null;
  203. }
  204. }