Express.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use think\exception\PDOException;
  6. use think\exception\ValidateException;
  7. use Exception;
  8. /**
  9. * 快递公司编号
  10. *
  11. * @icon fa fa-circle-o
  12. */
  13. class Express extends Backend
  14. {
  15. /**
  16. * 快递公司
  17. * @var \app\admin\model\shopro\Express
  18. */
  19. protected $model = null;
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $this->model = new \app\admin\model\shopro\Express;
  24. }
  25. /**
  26. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  27. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  28. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  29. */
  30. /**
  31. * 查看
  32. */
  33. public function index()
  34. {
  35. //当前是否为关联查询
  36. $this->relationSearch = false;
  37. //设置过滤方法
  38. $this->request->filter(['strip_tags', 'trim']);
  39. if ($this->request->isAjax()) {
  40. $searchWhere = $this->request->request('searchWhere');
  41. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  42. $total = $this->model
  43. ->where($where)
  44. ->whereOr('id', '=', $searchWhere)
  45. ->whereOr('name', 'like', "%$searchWhere%")
  46. ->whereOr('code', 'like', "%$searchWhere%")
  47. ->order($sort, $order)
  48. ->count();
  49. $list = $this->model
  50. ->where($where)
  51. ->whereOr('id', '=', $searchWhere)
  52. ->whereOr('name', 'like', "%$searchWhere%")
  53. ->whereOr('code', 'like', "%$searchWhere%")
  54. ->order('weigh desc')
  55. ->limit($offset, $limit)
  56. ->select();
  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. $result = $this->model->allowField(true)->save($params);
  76. Db::commit();
  77. } catch (ValidateException $e) {
  78. Db::rollback();
  79. $this->error($e->getMessage());
  80. } catch (PDOException $e) {
  81. Db::rollback();
  82. $this->error($e->getMessage());
  83. } catch (Exception $e) {
  84. Db::rollback();
  85. $this->error($e->getMessage());
  86. }
  87. if ($result !== false) {
  88. $this->success();
  89. } else {
  90. $this->error(__('No rows were inserted'));
  91. }
  92. }
  93. $this->error(__('Parameter %s can not be empty', ''));
  94. }
  95. return $this->view->fetch();
  96. }
  97. /**
  98. * 编辑
  99. */
  100. public function edit($ids = null)
  101. {
  102. $row = $this->model->get($ids);
  103. if (!$row) {
  104. $this->error(__('No Results were found'));
  105. }
  106. if ($this->request->isPost()) {
  107. $params = $this->request->post();
  108. if ($params) {
  109. $params = json_decode($params['data'], true);
  110. $result = false;
  111. Db::startTrans();
  112. try {
  113. $result = $row->allowField(true)->save($params);
  114. Db::commit();
  115. } catch (ValidateException $e) {
  116. Db::rollback();
  117. $this->error($e->getMessage());
  118. } catch (PDOException $e) {
  119. Db::rollback();
  120. $this->error($e->getMessage());
  121. } catch (Exception $e) {
  122. Db::rollback();
  123. $this->error($e->getMessage());
  124. }
  125. if ($result !== false) {
  126. $this->success();
  127. } else {
  128. $this->error(__('No rows were updated'));
  129. }
  130. }
  131. $this->error(__('Parameter %s can not be empty', ''));
  132. }
  133. $this->assignconfig("row", $row);
  134. return $this->view->fetch();
  135. }
  136. public function select()
  137. {
  138. if ($this->request->isAjax()) {
  139. $searchWhere = $this->request->request('searchWhere');
  140. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  141. $total = $this->model
  142. ->where($where)
  143. ->whereOr('id', '=', $searchWhere)
  144. ->whereOr('name', 'like', "%$searchWhere%")
  145. ->whereOr('code', 'like', "%$searchWhere%")
  146. ->order($sort, $order)
  147. ->count();
  148. $list = $this->model
  149. ->field('name, code')
  150. ->where($where)
  151. ->whereOr('id', '=', $searchWhere)
  152. ->whereOr('name', 'like', "%$searchWhere%")
  153. ->whereOr('code', 'like', "%$searchWhere%")
  154. ->order('weigh desc')
  155. ->limit($offset, $limit)
  156. ->select();
  157. $list = collection($list)->toArray();
  158. $result = array("total" => $total, "rows" => $list);
  159. return $this->success('快递公司', null, $result);
  160. }
  161. }
  162. }