MobileFlow.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\library\Auth;
  4. use app\common\controller\Backend;
  5. use app\common\library\MobileConstant;
  6. use think\App;
  7. use think\Db;
  8. use think\Exception;
  9. use think\exception\PDOException;
  10. use think\Loader;
  11. use think\Url;
  12. use app\admin\model\Admin;
  13. use app\admin\model\MobileFlowAreaTemplate;
  14. use app\admin\model\MobileProxyStatus;
  15. /**
  16. *
  17. *
  18. * @icon fa fa-mobile
  19. */
  20. class MobileFlow extends Backend
  21. {
  22. /**
  23. * Mobile模型对象
  24. * @var \app\admin\model\Mobile
  25. */
  26. protected $model = null;
  27. protected $relationSearch=true;
  28. protected $super = 0;
  29. public function _initialize()
  30. {
  31. parent::_initialize();
  32. $this->model = new \app\admin\model\Mobile;
  33. $flowStatus = \app\common\model\Mobile::flowStatus();
  34. $this->assign('status', $flowStatus);
  35. // if(in_array(1, $this->auth->getGroupIds())){
  36. if($this->auth->check('mobile_flow') && !$this->auth->sub){
  37. $this->super = 1;
  38. }
  39. $this->assign('super', $this->super);
  40. $this->assign('brands', $this->model::$flowBrand);
  41. }
  42. public function import()
  43. {
  44. //MobileImport::import(input('file'),$this->auth->id,2);
  45. $this->success();
  46. }
  47. /**
  48. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  49. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  50. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  51. */
  52. /**
  53. * 查看
  54. */
  55. public function index()
  56. {
  57. $editAuth = false;
  58. $delAuth = false;
  59. $subs = '';
  60. $userId = $this->auth->id;
  61. if($this->super){
  62. $subs = ['-100'=>'全部代理商'];
  63. $tmpSubs = Admin::getSubs();
  64. $subs = $subs+$tmpSubs;
  65. }
  66. if($this->auth->check('mobile_flow/edit')) $editAuth = true;
  67. if($this->auth->check('mobile_flow/del')) $delAuth = true;
  68. //当前是否为关联查询
  69. $this->relationSearch = false;
  70. //设置过滤方法
  71. $this->request->filter(['strip_tags', 'trim']);
  72. if ($this->request->isAjax()) {
  73. //如果发送的来源是Selectpage,则转发到Selectpage
  74. if ($this->request->request('keyField')) {
  75. return $this->selectpage();
  76. }
  77. list($where, $sort, $order, $offset, $limit) = $this->buildindexparams();
  78. $condition = json_decode($this->request->param()['filter'], true);
  79. $proxy_search = isset($condition['proxy_id']) ? $condition['proxy_id'] : null;
  80. $list = $this->model
  81. ->with(['info', 'proxy', 'proxyStatus'])
  82. ->where('type',2)
  83. ->where($where)
  84. ->where(function($q) use($proxy_search){
  85. //代理商
  86. if(!$this->super){
  87. $q->where('proxy_id', $this->auth->id);
  88. // $q->where('proxy_id', $this->auth->id)->whereOr(function($q){
  89. // $q->where('mobile.status', 0)->where('proxy_id is null');
  90. // });
  91. }
  92. elseif(!is_null($proxy_search) && $proxy_search < 0){
  93. $q->where('proxy_id is not null');
  94. }
  95. elseif(is_null($proxy_search)){
  96. $q->where('proxy_id is null');
  97. }
  98. })
  99. ->order($sort, $order)
  100. // ->fetchSql()
  101. // ->select();
  102. // dump($list);exit;
  103. ->paginate($limit);
  104. foreach ($list as $key=>$row) {
  105. $rules=[];
  106. foreach (MobileConstant::getFilters() as $rule=>$field){
  107. foreach (array_values($field) as $column){
  108. if($row[$column]==1){
  109. $rules[]=$rule;
  110. }
  111. }
  112. }
  113. $row['rules']=array_unique($rules);
  114. $row['editAuth'] = $editAuth;
  115. $row['delAuth'] = $delAuth;
  116. if(!$subs && $row['proxy_id'] != $userId){
  117. $row['editAuth'] = false;
  118. $row['delAuth'] = false;
  119. }
  120. //代理商
  121. if(!$this->super){
  122. $row['sort'] = $row['sort_proxy'];
  123. if(!$row['proxy_id']){
  124. $row['status'] = $row->proxyStatus()->where('proxy_id', $this->auth->id)->value('proxy_status') ?: 0;
  125. }
  126. }
  127. }
  128. $result = array("total" => $list->total(), "rows" => $list->items());
  129. $result['input']=input();
  130. return json($result);
  131. }
  132. $this->assign('subs',$subs);
  133. $this->assign('no_type',array_column(MobileConstant::getNoType(),'name','id'));
  134. $this->assign('network',array_column(MobileConstant::getNetwork(),'name','id'));
  135. $this->assign('filters',MobileConstant::getFilters());
  136. return $this->view->fetch();
  137. }
  138. public static $rule=[
  139. 'name'=>['require'],
  140. 'brand'=>['require'],
  141. 'amount_base'=>['require','number','egt:0'],
  142. 'stock_num'=>['require','integer'],
  143. 'summary'=>['require','max:50'],
  144. 'logo'=>['require'],
  145. 'sort'=>['require','integer'],
  146. 'product_no'=>['require'],
  147. 'card_status' => ['in:0,1'],
  148. 'select_num_status' => ['in:0,1'],
  149. 'send_template' => ['integer'],
  150. 'not_send_template' => ['integer'],
  151. 'min_age' => ['number', 'egt:0'],
  152. 'max_age' => ['number', 'egt:0'],
  153. 'link' => ['url'],
  154. 'product_sku' => ['max:50'],
  155. //'describe'=>['require'],
  156. ];
  157. public function add()
  158. {
  159. if($this->request->isGet()){
  160. $proxy_id = $this->auth->id;
  161. if($this->super){
  162. $proxy_id = 0;
  163. }
  164. $templates = MobileFlowAreaTemplate::where('status', 0)->where('proxy_id', $proxy_id)->order('create_time asc')->select();
  165. $this->assign('templates', $templates);
  166. return view();
  167. }else{
  168. $data=input('row/a');
  169. // self::$rule['product_no'] = ['require', 'unique:mobile'];
  170. $this->validate($data,self::$rule);
  171. Db::startTrans();
  172. try{
  173. $describe = $data['describe']??'';
  174. $free_app = $data['free_app']??'';
  175. $content = $data['content']??'';
  176. $flow_images = $data['images']??[];
  177. foreach (self::$rule as $key=>$r){
  178. if(in_array($key,$this->model->getTableInfo('','fields'))) {
  179. $this->model[$key] = $data[$key];
  180. }
  181. }
  182. if(!$this->super){
  183. $this->model['proxy_id'] = $this->auth->id;
  184. $this->model['sort_proxy'] = $data['sort'];
  185. unset($this->model['sort']);
  186. }
  187. $this->model['type'] = \app\common\model\Mobile::FLOW;
  188. $this->model->save();
  189. $this->model->info()->save(compact('describe','free_app','content','flow_images'));
  190. $goods = [];
  191. foreach(Admin::getSubs() as $key=>$val){
  192. $goods[$key]['mobile_id'] = $this->model->id;
  193. $goods[$key]['proxy_id'] = $key;
  194. $goods[$key]['proxy_status'] = 0;
  195. }
  196. (new MobileProxyStatus())->saveAll($goods);
  197. Db::commit();
  198. }
  199. catch(\Exception $e){
  200. Db::rollback();
  201. $this->error('添加失败');
  202. }
  203. $this->success();
  204. }
  205. }
  206. public function constant(){
  207. return json([
  208. 'no_type'=>MobileConstant::getNoType(),
  209. ]);
  210. }
  211. public function status(){
  212. return \app\common\model\MobileOrder::flowStatus();
  213. }
  214. public function edit($ids=null){
  215. if($this->request->isGet()){
  216. $mobile=$this->model->find($ids);
  217. if(!$this->super){
  218. // $mobile['status'] = $mobile['proxy_status'];
  219. $mobile['sort'] = $mobile['sort_proxy'];
  220. }
  221. $proxy_id = $this->auth->id;
  222. $templates = MobileFlowAreaTemplate::where('status', 0)->where(function ($query) use($proxy_id){
  223. if(!$this->super){
  224. return $query->where('proxy_id', $proxy_id);
  225. }
  226. })->order('create_time asc')->select();
  227. $this->assign('templates', $templates);
  228. $this->assign('row',$mobile);
  229. return view();
  230. }else{
  231. $data=input('row/a');
  232. self::$rule['status']=['in:'.implode(',',array_keys(\app\common\model\Mobile::flowStatus()))];
  233. // self::$rule['product_no'] = ['require', 'unique:mobile,product_no,'.$ids];
  234. $this->validate($data,self::$rule);
  235. $describe=$data['describe']??'';
  236. $free_app=$data['free_app']??'';
  237. $content=$data['content']??'';
  238. $flow_images=$data['images']??[];
  239. $mobiles=$this->model->whereIn('id',$ids)->select();
  240. Db::startTrans();
  241. try{
  242. foreach ($mobiles as $mobile) {
  243. $sort = $mobile['sort'];
  244. foreach (self::$rule as $key=>$r){
  245. if(in_array($key,$this->model->getTableInfo('','fields'))) {
  246. $mobile[$key] = $data[$key];
  247. }
  248. }
  249. if(!$this->super){
  250. // $mobile['proxy_status'] = $mobile['status'];
  251. $mobile['sort_proxy'] = $data['sort'];
  252. $mobile['sort'] = $sort;
  253. // unset($mobile['status']);
  254. }
  255. $mobile->save();
  256. $mobile->info->save(compact('describe','free_app','content','flow_images'));
  257. $goods = [];
  258. foreach(Admin::getSubs() as $key=>$val){
  259. if($proxyStatus = MobileProxyStatus::where('proxy_id', $key)->where('mobile_id', $mobile->id)->find()){
  260. if($mobile['status'] == 2 && $proxyStatus['proxy_status'] != 2) $proxyStatus->save(['proxy_status'=>2]);
  261. }
  262. else{
  263. $goods[$key]['mobile_id'] = $mobile->id;
  264. $goods[$key]['proxy_id'] = $key;
  265. $goods[$key]['proxy_status'] = 0;
  266. }
  267. }
  268. if($goods) (new MobileProxyStatus())->saveAll($goods);
  269. }
  270. Db::commit();
  271. }
  272. catch(\Exception $e){
  273. Db::rollback();
  274. $this->error('编辑失败');
  275. }
  276. $this->success();
  277. }
  278. }
  279. public function sort(){
  280. $id=input('id/d');
  281. $sort=input('sort/d');
  282. $mobile=\app\admin\model\Mobile::beauti(2)->find($id);
  283. if($mobile){
  284. if(!$this->super){
  285. $mobile['sort_proxy'] = $sort;
  286. }
  287. else{
  288. $mobile['sort'] = $sort;
  289. }
  290. $mobile->save();
  291. }
  292. $this->success();
  293. }
  294. protected function buildindexparams($searchfields = null, $relationSearch = null)
  295. {
  296. $searchfields = is_null($searchfields) ? $this->searchFields : $searchfields;
  297. $relationSearch = is_null($relationSearch) ? $this->relationSearch : $relationSearch;
  298. $search = $this->request->get("search", '');
  299. $filter = $this->request->get("filter", '');
  300. $op = $this->request->get("op", '', 'trim');
  301. $sort = $this->request->get("sort", !empty($this->model) && $this->model->getPk() ? $this->model->getPk() : 'id');
  302. $order = $this->request->get("order", "DESC");
  303. $offset = $this->request->get("offset/d", 0);
  304. $limit = $this->request->get("limit/d", 999999);
  305. //新增自动计算页码
  306. $page = $limit ? intval($offset / $limit) + 1 : 1;
  307. if ($this->request->has("page")) {
  308. $page = $this->request->get("page/d", 1);
  309. }
  310. $this->request->get([config('paginate.var_page') => $page]);
  311. $filter = (array)json_decode($filter, true);
  312. $op = (array)json_decode($op, true);
  313. $filter = $filter ? $filter : [];
  314. $where = [];
  315. $alias = [];
  316. $bind = [];
  317. $name = '';
  318. $aliasName = '';
  319. if (!empty($this->model) && $this->relationSearch) {
  320. $name = $this->model->getTable();
  321. $alias[$name] = Loader::parseName(basename(str_replace('\\', '/', get_class($this->model))));
  322. $aliasName = $alias[$name] . '.';
  323. }
  324. $sortArr = explode(',', $sort);
  325. foreach ($sortArr as $index => & $item) {
  326. $item = stripos($item, ".") === false ? $aliasName . trim($item) : $item;
  327. }
  328. unset($item);
  329. $sort = implode(',', $sortArr);
  330. $adminIds = $this->getDataLimitAdminIds();
  331. if (is_array($adminIds)) {
  332. $where[] = [$aliasName . $this->dataLimitField, 'in', $adminIds];
  333. }
  334. if ($search) {
  335. $searcharr = is_array($searchfields) ? $searchfields : explode(',', $searchfields);
  336. foreach ($searcharr as $k => &$v) {
  337. $v = stripos($v, ".") === false ? $aliasName . $v : $v;
  338. }
  339. unset($v);
  340. $where[] = [implode("|", $searcharr), "LIKE", "%{$search}%"];
  341. }
  342. $index = 0;
  343. foreach ($filter as $k => $v) {
  344. if($k == 'proxy_id' && $v == '-100') continue;
  345. if($k=='rules'){
  346. continue;
  347. }
  348. if (!preg_match('/^[a-zA-Z0-9_\-\.]+$/', $k)) {
  349. continue;
  350. }
  351. if($k == 'status'){
  352. $k = 'mobile.status';
  353. }
  354. $sym = isset($op[$k]) ? $op[$k] : '=';
  355. if (stripos($k, ".") === false) {
  356. $k = $aliasName . $k;
  357. }
  358. $v = !is_array($v) ? trim($v) : $v;
  359. $sym = strtoupper(isset($op[$k]) ? $op[$k] : $sym);
  360. //null和空字符串特殊处理
  361. if (!is_array($v)) {
  362. if (in_array(strtoupper($v), ['NULL', 'NOT NULL'])) {
  363. $sym = strtoupper($v);
  364. }
  365. if (in_array($v, ['""', "''"])) {
  366. $v = '';
  367. $sym = '=';
  368. }
  369. }
  370. switch ($sym) {
  371. case '=':
  372. case '<>':
  373. $where[] = [$k, $sym, (string)$v];
  374. break;
  375. case 'LIKE':
  376. case 'NOT LIKE':
  377. case 'LIKE %...%':
  378. case 'NOT LIKE %...%':
  379. $where[] = [$k, trim(str_replace('%...%', '', $sym)), "%{$v}%"];
  380. break;
  381. case '>':
  382. case '>=':
  383. case '<':
  384. case '<=':
  385. $where[] = [$k, $sym, intval($v)];
  386. break;
  387. case 'FINDIN':
  388. case 'FINDINSET':
  389. case 'FIND_IN_SET':
  390. $v = is_array($v) ? $v : explode(',', str_replace(' ', ',', $v));
  391. $findArr = array_values($v);
  392. foreach ($findArr as $idx => $item) {
  393. $bindName = "item_" . $index . "_" . $idx;
  394. $bind[$bindName] = $item;
  395. $where[] = "FIND_IN_SET(:{$bindName}, `" . str_replace('.', '`.`', $k) . "`)";
  396. }
  397. break;
  398. case 'IN':
  399. case 'IN(...)':
  400. case 'NOT IN':
  401. case 'NOT IN(...)':
  402. $where[] = [$k, str_replace('(...)', '', $sym), is_array($v) ? $v : explode(',', $v)];
  403. break;
  404. case 'BETWEEN':
  405. case 'NOT BETWEEN':
  406. $arr = array_slice(explode(',', $v), 0, 2);
  407. if (stripos($v, ',') === false || !array_filter($arr)) {
  408. continue 2;
  409. }
  410. //当出现一边为空时改变操作符
  411. if ($arr[0] === '') {
  412. $sym = $sym == 'BETWEEN' ? '<=' : '>';
  413. $arr = $arr[1];
  414. } elseif ($arr[1] === '') {
  415. $sym = $sym == 'BETWEEN' ? '>=' : '<';
  416. $arr = $arr[0];
  417. }
  418. $where[] = [$k, $sym, $arr];
  419. break;
  420. case 'RANGE':
  421. case 'NOT RANGE':
  422. $v = str_replace(' - ', ',', $v);
  423. $arr = array_slice(explode(',', $v), 0, 2);
  424. if (stripos($v, ',') === false || !array_filter($arr)) {
  425. continue 2;
  426. }
  427. //当出现一边为空时改变操作符
  428. if ($arr[0] === '') {
  429. $sym = $sym == 'RANGE' ? '<=' : '>';
  430. $arr = $arr[1];
  431. } elseif ($arr[1] === '') {
  432. $sym = $sym == 'RANGE' ? '>=' : '<';
  433. $arr = $arr[0];
  434. }
  435. $tableArr = explode('.', $k);
  436. if (count($tableArr) > 1 && $tableArr[0] != $name && !in_array($tableArr[0], $alias) && !empty($this->model)) {
  437. //修复关联模型下时间无法搜索的BUG
  438. $relation = Loader::parseName($tableArr[0], 1, false);
  439. $alias[$this->model->$relation()->getTable()] = $tableArr[0];
  440. }
  441. $where[] = [$k, str_replace('RANGE', 'BETWEEN', $sym) . ' TIME', $arr];
  442. break;
  443. case 'NULL':
  444. case 'IS NULL':
  445. case 'NOT NULL':
  446. case 'IS NOT NULL':
  447. $where[] = [$k, strtolower(str_replace('IS ', '', $sym))];
  448. break;
  449. default:
  450. break;
  451. }
  452. $index++;
  453. }
  454. if (!empty($this->model)) {
  455. $this->model->alias($alias);
  456. }
  457. if(isset($filter['rules']) && $filter['rules']){
  458. $temp=[];
  459. foreach (MobileConstant::getFilters()[$filter['rules']] as $pos=>$column){
  460. $temp[]=$column;
  461. }
  462. $where[]=[implode("|",$temp),1];
  463. }
  464. $model = $this->model;
  465. $where = function ($query) use ($where, $alias, $bind, &$model) {
  466. if (!empty($model)) {
  467. $model->alias($alias);
  468. $model->bind($bind);
  469. }
  470. foreach ($where as $k => $v) {
  471. if (is_array($v)) {
  472. call_user_func_array([$query, 'where'], $v);
  473. } else {
  474. $query->where($v);
  475. }
  476. }
  477. };
  478. return [$where, $sort, $order, $offset, $limit, $page, $alias, $bind];
  479. }
  480. /**
  481. * 下架
  482. */
  483. public function multi_down($ids){
  484. $super = $this->super;
  485. $flow=$this->model
  486. ->whereIn('id',$ids)
  487. ->where(function($q){
  488. if(!$this->super) $q->where('proxy_id', $this->auth->id)->whereOr('proxy_id is null');
  489. })
  490. ->select();
  491. foreach ($flow as $mobile){
  492. if($this->super || $mobile['proxy_id'] == $this->auth->id){
  493. $mobile->flowMakeDown();
  494. }
  495. elseif(!$this->super && !$mobile['proxy_id']){ //代理商改主营商品
  496. if($proxyStatus = $mobile->proxyStatus()->where('proxy_id', $this->auth->id)->find()){
  497. $proxyStatus->proxy_status = 2;
  498. $proxyStatus->save();
  499. }
  500. else{
  501. $mobile->proxyStatus()->where('proxy_id', $this->auth->id)->save(['proxy_id'=>$this->auth->id, 'proxy_status'=>2]);
  502. }
  503. }
  504. // else{
  505. // $mobile->flowMakeDownProxy();
  506. // }
  507. }
  508. $this->success();
  509. }
  510. /**
  511. * 上架
  512. */
  513. public function multi_up($ids){
  514. $flow=$this->model
  515. ->whereIn('id',$ids)
  516. ->where(function($q){
  517. if(!$this->super) $q->where('proxy_id', $this->auth->id)->whereOr('proxy_id is null');
  518. })
  519. ->select();
  520. foreach ($flow as $mobile){
  521. if($this->super || $mobile['proxy_id'] == $this->auth->id){
  522. $mobile->flowMakeUp();
  523. }
  524. elseif(!$this->super && !$mobile['proxy_id']){ //代理商改主营商品
  525. if($proxyStatus = $mobile->proxyStatus()->where('proxy_id', $this->auth->id)->find()){
  526. $proxyStatus->proxy_status = 0;
  527. $proxyStatus->save();
  528. // $mobile->proxyStatus()->where('proxy_id', $this->auth->id)->save(['proxy_status'=>2]);
  529. }
  530. else{
  531. $mobile->proxyStatus()->where('proxy_id', $this->auth->id)->save(['proxy_id'=>$this->auth->id, 'proxy_status'=>0]);
  532. }
  533. }
  534. // else{
  535. // $mobile->flowMakeUpProxy();
  536. // }
  537. }
  538. $this->success();
  539. }
  540. /**
  541. * wanglu 2023/02/23
  542. * 复制商品
  543. */
  544. public function copy_goods($ids = 0)
  545. {
  546. Db::startTrans();
  547. try{
  548. $mobile = $this->model->with('info')->find($ids)->toArray();
  549. $info = $mobile['info'];
  550. unset($mobile['id']);
  551. unset($mobile['info']);
  552. unset($info['id']);
  553. unset($info['mobile_id']);
  554. foreach ($mobile as $key=>$r){
  555. $this->model[$key] = $r;
  556. }
  557. $this->model['proxy_id'] = null;
  558. if(!in_array(1, $this->auth->getGroupIds())){
  559. $this->model['proxy_id'] = $this->auth->id;
  560. }
  561. $this->model['type']=\app\common\model\Mobile::FLOW;
  562. $this->model->save();
  563. $this->model->info()->save($info);
  564. if($this->super){
  565. $goods = [];
  566. foreach(Admin::getSubs() as $key=>$val){
  567. $goods[$key]['mobile_id'] = $this->model->id;
  568. $goods[$key]['proxy_id'] = $key;
  569. $goods[$key]['proxy_status'] = 0;
  570. }
  571. (new MobileProxyStatus())->saveAll($goods);
  572. }else{
  573. // print_r($this->auth->id);
  574. // return false;
  575. $goods = [];
  576. $goods['mobile_id'] = $this->model->id;
  577. $goods['proxy_id'] = $this->auth->id;
  578. $goods['proxy_status'] = 0;
  579. (new MobileProxyStatus())->save($goods);
  580. }
  581. Db::commit();
  582. }
  583. catch(\Exception $e){
  584. Db::rollback();
  585. dump($e->getMessage());
  586. $this->error('复制失败');
  587. }
  588. $this->success();
  589. }
  590. /**
  591. * 删除
  592. */
  593. public function del($ids = "")
  594. {
  595. if (!$this->request->isPost()) {
  596. $this->error(__("Invalid parameters"));
  597. }
  598. $ids = $ids ? $ids : $this->request->post("ids");
  599. if ($ids) {
  600. $pk = $this->model->getPk();
  601. $adminIds = $this->getDataLimitAdminIds();
  602. if (is_array($adminIds)) {
  603. $this->model->where($this->dataLimitField, 'in', $adminIds);
  604. }
  605. $list = $this->model->where($pk, 'in', $ids)->where(function($q){
  606. if(!$this->super) $q->where('proxy_id', $this->auth->id);
  607. })->select();
  608. $count = 0;
  609. Db::startTrans();
  610. try {
  611. foreach ($list as $k => $v) {
  612. $count += $v->delete();
  613. }
  614. Db::commit();
  615. } catch (PDOException $e) {
  616. Db::rollback();
  617. $this->error($e->getMessage());
  618. } catch (Exception $e) {
  619. Db::rollback();
  620. $this->error($e->getMessage());
  621. }
  622. if ($count) {
  623. $this->success();
  624. } else {
  625. $this->error(__('No rows were deleted'));
  626. }
  627. }
  628. $this->error(__('Parameter %s can not be empty', 'ids'));
  629. }
  630. }