MobileFlowAreaTemplate.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use app\common\model\Area;
  6. use app\admin\model\MobileFlowArea;
  7. /**
  8. *
  9. *
  10. * @icon fa fa-circle-o
  11. */
  12. class MobileFlowAreaTemplate extends Backend
  13. {
  14. /**
  15. * MobileFlowAreaTemplate模型对象
  16. * @var \app\admin\model\MobileFlowAreaTemplate
  17. */
  18. protected $model = null;
  19. public function _initialize()
  20. {
  21. parent::_initialize();
  22. $this->model = new \app\admin\model\MobileFlowAreaTemplate;
  23. $this->assign('status', $this->model::$status);
  24. }
  25. public function import()
  26. {
  27. parent::import();
  28. }
  29. /**
  30. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  31. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  32. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  33. */
  34. /**
  35. * 查看
  36. */
  37. public function index()
  38. {
  39. //设置过滤方法
  40. $this->request->filter(['strip_tags', 'trim']);
  41. if ($this->request->isAjax()) {
  42. //如果发送的来源是Selectpage,则转发到Selectpage
  43. if ($this->request->request('keyField')) {
  44. return $this->selectpage();
  45. }
  46. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  47. $condition = [];
  48. $condition['proxy_id'] = $this->auth->id;
  49. if($this->admin('is_manager')){
  50. unset($condition['proxy_id']);
  51. }
  52. $list = $this->model->with(['admin'])
  53. ->where($where)
  54. ->where($condition)
  55. ->order($sort, $order)
  56. ->paginate($limit);
  57. $result = array("total" => $list->total(), "rows" => $list->items());
  58. return json($result);
  59. }
  60. return $this->view->fetch();
  61. }
  62. /**
  63. * 添加
  64. */
  65. public function add()
  66. {
  67. if ($this->request->isPost()) {
  68. $params = $this->request->post("row/a");
  69. if ($params) {
  70. $params = $this->preExcludeFields($params);
  71. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  72. $params[$this->dataLimitField] = $this->auth->id;
  73. }
  74. $result = false;
  75. Db::startTrans();
  76. try {
  77. $this->validate($params, [
  78. 'name' => ['require']
  79. ]);
  80. $data = [];
  81. $data['name'] = $params['name'];
  82. $data['status'] = $params['status'];
  83. $data['area_names'] = $params['city'] ?: '';
  84. $data['area_ids'] = $params['city_code'] ?: '';
  85. if(!$this->admin('is_manager')){
  86. $data['proxy_id'] = $this->auth->id;
  87. }
  88. $result = $this->model->allowField(true)->save($data);
  89. if($result && $params['city_code']){
  90. $areas = [];
  91. if($params['city_code'] == 100001){
  92. //所有地域
  93. $provinces = Area::where('pid', 0)->column('id');
  94. foreach($provinces as $key=>$val){
  95. $areas[$key]['province'] = $val;
  96. $areas[$key]['city'] = 0;
  97. $areas[$key]['district'] = 0;
  98. }
  99. }
  100. else{
  101. $city_code = explode(';', $params['city_code']);
  102. foreach($city_code as $key=>$val){
  103. $city = $this->getCity($val);
  104. $areas[$key]['province'] = $city[0];
  105. $areas[$key]['city'] = $city[1];
  106. $areas[$key]['district'] = $city[2];
  107. }
  108. }
  109. $this->model->area()->saveAll($areas);
  110. }
  111. Db::commit();
  112. } catch (ValidateException $e) {
  113. Db::rollback();
  114. $this->error($e->getMessage());
  115. } catch (PDOException $e) {
  116. Db::rollback();
  117. $this->error($e->getMessage());
  118. } catch (Exception $e) {
  119. Db::rollback();
  120. throw $e;
  121. //$this->error($e->getMessage());
  122. }
  123. if ($result !== false) {
  124. $this->success();
  125. } else {
  126. $this->error(__('No rows were inserted'));
  127. }
  128. }
  129. $this->error(__('Parameter %s can not be empty', ''));
  130. }
  131. return $this->view->fetch();
  132. }
  133. /**
  134. * 编辑
  135. */
  136. public function edit($ids = null)
  137. {
  138. $row = $this->model->get($ids);
  139. if (!$row) {
  140. $this->error(__('No Results were found'));
  141. }
  142. $adminIds = $this->getDataLimitAdminIds();
  143. if (is_array($adminIds)) {
  144. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  145. $this->error(__('You have no permission'));
  146. }
  147. }
  148. if ($this->request->isPost()) {
  149. $params = $this->request->post("row/a");
  150. if ($params) {
  151. $params = $this->preExcludeFields($params);
  152. $result = false;
  153. Db::startTrans();
  154. try {
  155. $this->validate($params, [
  156. 'name' => ['require']
  157. ]);
  158. $data = [];
  159. $data['name'] = $params['name'];
  160. $data['status'] = $params['status'];
  161. $data['area_names'] = $params['city'] ?: '';
  162. $data['area_ids'] = $params['city_code'] ?: '';
  163. $result = $row->allowField(true)->save($data);
  164. if($result && $params['city_code']){
  165. $row->area()->delete();
  166. $areas = [];
  167. if($params['city_code'] == 100001){
  168. //所有地域
  169. $provinces = Area::where('pid', 0)->column('id');
  170. foreach($provinces as $key=>$val){
  171. $areas[$key]['province'] = $val;
  172. $areas[$key]['city'] = 0;
  173. $areas[$key]['district'] = 0;
  174. }
  175. }
  176. else{
  177. $city_code = explode(';', $params['city_code']);
  178. foreach($city_code as $key=>$val){
  179. $city = $this->getCity($val);
  180. $areas[$key]['province'] = $city[0];
  181. $areas[$key]['city'] = $city[1];
  182. $areas[$key]['district'] = $city[2];
  183. }
  184. }
  185. $row->area()->saveAll($areas);
  186. }
  187. Db::commit();
  188. } catch (ValidateException $e) {
  189. Db::rollback();
  190. $this->error($e->getMessage());
  191. } catch (PDOException $e) {
  192. Db::rollback();
  193. $this->error($e->getMessage());
  194. } catch (Exception $e) {
  195. Db::rollback();
  196. $this->error($e->getMessage());
  197. }
  198. if ($result !== false) {
  199. $this->success();
  200. } else {
  201. $this->error(__('No rows were updated'));
  202. }
  203. }
  204. $this->error(__('Parameter %s can not be empty', ''));
  205. }
  206. $this->view->assign("row", $row);
  207. return $this->view->fetch();
  208. }
  209. /**
  210. * 删除
  211. */
  212. public function del($ids = "")
  213. {
  214. if (!$this->request->isPost()) {
  215. $this->error(__("Invalid parameters"));
  216. }
  217. $ids = $ids ? $ids : $this->request->post("ids");
  218. if ($ids) {
  219. $pk = $this->model->getPk();
  220. $adminIds = $this->getDataLimitAdminIds();
  221. if (is_array($adminIds)) {
  222. $this->model->where($this->dataLimitField, 'in', $adminIds);
  223. }
  224. $condition = [];
  225. $condition['proxy_id'] = $this->auth->id;
  226. if($this->admin('is_manager')){
  227. $condition['proxy_id'] = 0;
  228. }
  229. $list = $this->model->where($pk, 'in', $ids)->where($condition)->select();
  230. $count = 0;
  231. Db::startTrans();
  232. try {
  233. foreach ($list as $k => $v) {
  234. $count += $v->delete();
  235. }
  236. Db::commit();
  237. } catch (PDOException $e) {
  238. Db::rollback();
  239. $this->error($e->getMessage());
  240. } catch (Exception $e) {
  241. Db::rollback();
  242. $this->error($e->getMessage());
  243. }
  244. if ($count) {
  245. $this->success();
  246. } else {
  247. $this->error(__('No rows were deleted'));
  248. }
  249. }
  250. $this->error(__('Parameter %s can not be empty', 'ids'));
  251. }
  252. /**
  253. * 获取选择地区
  254. */
  255. private function getCity($id = 0){
  256. $tmp = Area::find($id);
  257. if(!$tmp['pid']){
  258. return [$id, 0, 0];
  259. }
  260. $tmp1 = Area::find($tmp['pid']);
  261. if(!$tmp1['pid']){
  262. return [$tmp1['id'], $id, 0];
  263. }
  264. $tmp2 = Area::find($tmp1['pid']);
  265. if(!$tmp2['pid']){
  266. return [$tmp2['id'], $tmp1['id'], $id];
  267. }
  268. throw new \Exception('地区错误');
  269. }
  270. }