Autosend.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <?php
  2. namespace app\admin\controller\shopro\dispatch;
  3. use app\common\controller\Backend;
  4. use app\admin\model\shopro\dispatch\Autosend as AutosendModel;
  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 Autosend extends Backend
  15. {
  16. /**
  17. * Express模型对象
  18. * @var \app\admin\model\shopro\dispatch\Autosend
  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. {
  42. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  43. $total = $this->model
  44. ->where($where)
  45. ->where('type', 'autosend')
  46. ->order($sort, $order)
  47. ->count();
  48. $list = $this->model
  49. ->where($where)
  50. ->where('type', 'autosend')
  51. ->order($sort, $order)
  52. ->limit($offset, $limit)
  53. ->select();
  54. foreach ($list as $row) {
  55. $row->visible(['id','name','type','type_ids', 'autosend', 'createtime','updatetime']);
  56. $row->autosend = $this->getAutosend($row);
  57. }
  58. $list = collection($list)->toArray();
  59. $result = array("total" => $total, "rows" => $list);
  60. return $this->success('自动发货', null, $result);
  61. }
  62. return $this->view->fetch();
  63. }
  64. /**
  65. * 添加
  66. */
  67. public function add()
  68. {
  69. if ($this->request->isPost()) {
  70. $params = $this->request->post();
  71. if ($params) {
  72. $params = json_decode($params['data'], true);
  73. $result = false;
  74. Db::startTrans();
  75. try {
  76. $type_ids = [];
  77. $autosendModel = new AutosendModel();
  78. if($params['type'] === 'params') {
  79. $params['content'] = json_encode($params['content']);
  80. }
  81. $autosendModel->allowField(true)->save($params);
  82. $params['type_ids'] = $autosendModel->id;
  83. $params['type'] = 'autosend';
  84. $result = $this->model->allowField(true)->save($params);
  85. Db::commit();
  86. } catch (ValidateException $e) {
  87. Db::rollback();
  88. $this->error($e->getMessage());
  89. } catch (PDOException $e) {
  90. Db::rollback();
  91. $this->error($e->getMessage());
  92. } catch (Exception $e) {
  93. Db::rollback();
  94. $this->error($e->getMessage());
  95. }
  96. if ($result !== false) {
  97. $this->success();
  98. } else {
  99. $this->error(__('No rows were inserted'));
  100. }
  101. }
  102. $this->error(__('Parameter %s can not be empty', ''));
  103. }
  104. return $this->view->fetch();
  105. }
  106. /**
  107. * 编辑
  108. */
  109. public function edit($ids = null)
  110. {
  111. $row = $this->model->get($ids);
  112. $row->autosend = $this->getAutosend($row);
  113. if (!$row) {
  114. $this->error(__('No Results were found'));
  115. }
  116. $adminIds = $this->getDataLimitAdminIds();
  117. if (is_array($adminIds)) {
  118. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  119. $this->error(__('You have no permission'));
  120. }
  121. }
  122. if ($this->request->isPost()) {
  123. $params = $this->request->post();
  124. if ($params) {
  125. $params = json_decode($params['data'], true);
  126. $result = false;
  127. Db::startTrans();
  128. try {
  129. $autosendModel = new AutosendModel();
  130. $autosend = $autosendModel->get($row->type_ids);
  131. if($params['type'] === 'params') {
  132. $params['content'] = json_encode($params['content']);
  133. }
  134. $autosend->allowField(true)->save($params);
  135. $params['type'] = 'autosend';
  136. $params['type_ids'] = $autosend->id;
  137. $result = $row->allowField(true)->save($params);
  138. Db::commit();
  139. } catch (ValidateException $e) {
  140. Db::rollback();
  141. $this->error($e->getMessage());
  142. } catch (PDOException $e) {
  143. Db::rollback();
  144. $this->error($e->getMessage());
  145. } catch (Exception $e) {
  146. Db::rollback();
  147. $this->error($e->getMessage());
  148. }
  149. if ($result !== false) {
  150. $this->success();
  151. } else {
  152. $this->error(__('No rows were updated'));
  153. }
  154. }
  155. $this->error(__('Parameter %s can not be empty', ''));
  156. }
  157. $this->assignconfig("row", $row);
  158. return $this->view->fetch();
  159. }
  160. /**
  161. * 回收站
  162. */
  163. public function recyclebin()
  164. {
  165. //设置过滤方法
  166. $this->request->filter(['strip_tags']);
  167. if ($this->request->isAjax()) {
  168. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  169. $total = $this->model
  170. ->onlyTrashed()
  171. ->where($where)
  172. ->where('type', 'autosend')
  173. ->order($sort, $order)
  174. ->count();
  175. $list = $this->model
  176. ->onlyTrashed()
  177. ->where($where)
  178. ->where('type', 'autosend')
  179. ->order($sort, $order)
  180. ->limit($offset, $limit)
  181. ->select();
  182. $result = array("total" => $total, "rows" => $list);
  183. return json($result);
  184. }
  185. return $this->view->fetch();
  186. }
  187. private function getAutosend($data)
  188. {
  189. if($data['type'] == 'autosend' ) {
  190. $autosend = \app\admin\model\shopro\dispatch\Autosend::where('id', $data['type_ids'])->find();
  191. if($autosend && $autosend['type'] === 'params') {
  192. $autosend['content'] = json_decode($autosend['content'], true);
  193. }
  194. return $autosend;
  195. }
  196. return null;
  197. }
  198. }