MobileOrderFlow.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\Admin;
  4. use app\admin\model\MobileOrderAdmin;
  5. use app\admin\model\ShortcutContent;
  6. use app\common\controller\Backend;
  7. use app\common\model\LogisticsCompany;
  8. use app\common\model\MobileOrder;
  9. use app\common\model\MobileOrderOperation;
  10. use app\common\service\MobileOrderExport;
  11. use app\common\service\Refund;
  12. use app\service\GantanhaoService;
  13. use think\Db;
  14. use think\db\Query;
  15. use think\Loader;
  16. /**
  17. *
  18. *
  19. * @icon fa fa-circle-o
  20. */
  21. class MobileOrderFlow extends Backend
  22. {
  23. protected $noNeedRight=['status','pay_type'];
  24. /**
  25. * MobileOrder模型对象
  26. * @var \app\admin\model\MobileOrder
  27. */
  28. protected $model = null;
  29. public function _initialize()
  30. {
  31. parent::_initialize();
  32. $this->model = new \app\admin\model\MobileOrder;
  33. $this->assign('status',$this->status());
  34. $this->assign('logistics_list',json_encode(LogisticsCompany::all()));
  35. $this->assign('brands', \app\admin\model\Mobile::$flowBrand);
  36. }
  37. public function import()
  38. {
  39. $this->error('');
  40. }
  41. /**
  42. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  43. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  44. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  45. */
  46. /**
  47. * 查看
  48. */
  49. public function index()
  50. {
  51. //当前是否为关联查询
  52. $this->relationSearch = true;
  53. //设置过滤方法
  54. $this->request->filter(['strip_tags', 'trim']);
  55. $map=[];
  56. if(!$this->admin('is_manager')){
  57. $map['s_id']=$this->admin('id');
  58. }
  59. $export=input('export');
  60. if($export){
  61. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  62. $list = $this->model
  63. ->with(['info','operation','operation.admin','admin','admin.admin', 'mobile'])
  64. ->where($where)
  65. ->where($map)
  66. ->where('mobile_order.type',2)
  67. ->order($sort, $order)
  68. ->paginate($limit);
  69. return MobileOrderExport::export($list,$this->admin());
  70. }
  71. if ($this->request->isAjax()) {
  72. //如果发送的来源是Selectpage,则转发到Selectpage
  73. if ($this->request->request('keyField')) {
  74. return $this->selectpage();
  75. }
  76. // status需要组装的搜索条件
  77. $filter = json_decode($this->request->get('filter'),true);
  78. $op = json_decode($this->request->get('op'),true);
  79. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  80. if($this->admin('is_manager')){
  81. $relation=['info','operation','operation.admin','admin','admin.admin','sub_remark','sub_remark.admin','anchor'];
  82. }else{
  83. $relation=['info','admin','admin.admin','sub_remark','sub_remark.admin'];
  84. }
  85. $relation=array_merge($relation,['sub_anchor','sub_anchor.mobileAnchor', 'mobile']);
  86. $list = $this->model
  87. ->with($relation)
  88. ->where($where)
  89. ->where($map)
  90. ->where('mobile_order.type',2)
  91. ->order($sort, $order)
  92. // ->fetchSql()
  93. // ->select();
  94. ->paginate($limit);
  95. // dump($list);exit;
  96. foreach ($list as $row) {
  97. $row->append(['phone_order_flow_count']);
  98. if($row['s_id']) {
  99. $row['s_name'] = Admin::where('id', $row['s_id'])->value('nickname');
  100. }else{
  101. $row['s_name']='';
  102. }
  103. $row['gantanhao_data'] = $row['gantanhao_data'] ? json_decode($row['gantanhao_data'], true) : '';
  104. $row['gantanhao_data_notify'] = $row['gantanhao_data_notify'] ? json_decode($row['gantanhao_data_notify'], true) : '';
  105. }
  106. // select count(id) as total,status from mobile_order where type=2 GROUP BY status;
  107. if (isset($filter['status'])){
  108. unset($filter['status']);
  109. unset($op['status']);
  110. }
  111. $this->request->get(['filter'=>json_encode($filter)]);
  112. $this->request->get(['op'=>json_encode($op)]);
  113. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  114. // if($this->admin('is_manager')){
  115. // $relation=['mobile','anchor'];
  116. // }else{
  117. // $relation=['mobile'];
  118. // }
  119. $status_list = $this->model
  120. ->with($relation)
  121. ->field('count(mobile_order.id) as total,mobile_order.status')
  122. ->where($where)
  123. ->where($map)
  124. ->where('mobile_order.type',2)
  125. ->group('mobile_order.status')
  126. ->select();
  127. $extend=[];
  128. $result = array("total" => $list->total(), "rows" => $list->items(),'extend'=>$extend,'status_list'=>$status_list);
  129. $result['link']=$this->request->url().'&export=1';
  130. return json($result);
  131. }
  132. $this->assign('admins',Admin::getAdmins());
  133. $this->assign('subs',Admin::getSubs());
  134. return $this->view->fetch();
  135. }
  136. protected function buildparams($searchfields = null, $relationSearch = null)
  137. {
  138. $searchfields = is_null($searchfields) ? $this->searchFields : $searchfields;
  139. $relationSearch = is_null($relationSearch) ? $this->relationSearch : $relationSearch;
  140. $search = $this->request->get("search", '');
  141. $filter = $this->request->get("filter", '');
  142. $op = $this->request->get("op", '', 'trim');
  143. $sort = $this->request->get("sort", !empty($this->model) && $this->model->getPk() ? $this->model->getPk() : 'id');
  144. $order = $this->request->get("order", "DESC");
  145. $offset = $this->request->get("offset/d", 0);
  146. $limit = $this->request->get("limit/d", 999999);
  147. //新增自动计算页码
  148. $page = $limit ? intval($offset / $limit) + 1 : 1;
  149. if ($this->request->has("page")) {
  150. $page = $this->request->get("page/d", 1);
  151. }
  152. $this->request->get([config('paginate.var_page') => $page]);
  153. $filter = (array)json_decode($filter, true);
  154. $op = (array)json_decode($op, true);
  155. $filter = $filter ? $filter : [];
  156. $where = [];
  157. $alias = [];
  158. $bind = [];
  159. $name = '';
  160. $aliasName = '';
  161. if (!empty($this->model) && $this->relationSearch) {
  162. $name = $this->model->getTable();
  163. $alias[$name] = Loader::parseName(basename(str_replace('\\', '/', get_class($this->model))));
  164. $aliasName = $alias[$name] . '.';
  165. }
  166. $sortArr = explode(',', $sort);
  167. foreach ($sortArr as $index => & $item) {
  168. $item = stripos($item, ".") === false ? $aliasName . trim($item) : $item;
  169. }
  170. unset($item);
  171. $sort = implode(',', $sortArr);
  172. $adminIds = $this->getDataLimitAdminIds();
  173. if (is_array($adminIds)) {
  174. $where[] = [$aliasName . $this->dataLimitField, 'in', $adminIds];
  175. }
  176. if ($search) {
  177. $searcharr = is_array($searchfields) ? $searchfields : explode(',', $searchfields);
  178. foreach ($searcharr as $k => &$v) {
  179. $v = stripos($v, ".") === false ? $aliasName . $v : $v;
  180. }
  181. unset($v);
  182. $where[] = [implode("|", $searcharr), "LIKE", "%{$search}%"];
  183. }
  184. $index = 0;
  185. foreach ($filter as $k => $v) {
  186. if (!preg_match('/^[a-zA-Z0-9_\-\.]+$/', $k)) {
  187. continue;
  188. }
  189. $sym = isset($op[$k]) ? $op[$k] : '=';
  190. if (stripos($k, ".") === false) {
  191. $k = $aliasName . $k;
  192. }
  193. $v = !is_array($v) ? trim($v) : $v;
  194. $sym = strtoupper(isset($op[$k]) ? $op[$k] : $sym);
  195. //null和空字符串特殊处理
  196. if (!is_array($v)) {
  197. if (in_array(strtoupper($v), ['NULL', 'NOT NULL'])) {
  198. $sym = strtoupper($v);
  199. }
  200. if (in_array($v, ['""', "''"])) {
  201. $v = '';
  202. $sym = '=';
  203. }
  204. }
  205. switch ($sym) {
  206. case '=':
  207. case '<>':
  208. $where[] = [$k, $sym, (string)$v];
  209. break;
  210. case 'LIKE':
  211. case 'NOT LIKE':
  212. case 'LIKE %...%':
  213. case 'NOT LIKE %...%':
  214. $where[] = [$k, trim(str_replace('%...%', '', $sym)), "%{$v}%"];
  215. break;
  216. case '>':
  217. case '>=':
  218. case '<':
  219. case '<=':
  220. $where[] = [$k, $sym, intval($v)];
  221. break;
  222. case 'FINDIN':
  223. case 'FINDINSET':
  224. case 'FIND_IN_SET':
  225. $v = is_array($v) ? $v : explode(',', str_replace(' ', ',', $v));
  226. $findArr = array_values($v);
  227. foreach ($findArr as $idx => $item) {
  228. $bindName = "item_" . $index . "_" . $idx;
  229. $bind[$bindName] = $item;
  230. $where[] = "FIND_IN_SET(:{$bindName}, `" . str_replace('.', '`.`', $k) . "`)";
  231. }
  232. break;
  233. case 'IN':
  234. case 'IN(...)':
  235. case 'NOT IN':
  236. case 'NOT IN(...)':
  237. $where[] = [$k, str_replace('(...)', '', $sym), is_array($v) ? $v : explode(',', $v)];
  238. break;
  239. case 'BETWEEN':
  240. case 'NOT BETWEEN':
  241. $arr = array_slice(explode(',', $v), 0, 2);
  242. if (stripos($v, ',') === false || !array_filter($arr)) {
  243. continue 2;
  244. }
  245. //当出现一边为空时改变操作符
  246. if ($arr[0] === '') {
  247. $sym = $sym == 'BETWEEN' ? '<=' : '>';
  248. $arr = $arr[1];
  249. } elseif ($arr[1] === '') {
  250. $sym = $sym == 'BETWEEN' ? '>=' : '<';
  251. $arr = $arr[0];
  252. }
  253. $where[] = [$k, $sym, $arr];
  254. break;
  255. case 'RANGE':
  256. case 'NOT RANGE':
  257. $v = str_replace(' - ', ',', $v);
  258. $arr = array_slice(explode(',', $v), 0, 2);
  259. if (stripos($v, ',') === false || !array_filter($arr)) {
  260. continue 2;
  261. }
  262. //当出现一边为空时改变操作符
  263. if ($arr[0] === '') {
  264. $sym = $sym == 'RANGE' ? '<=' : '>';
  265. $arr = $arr[1];
  266. } elseif ($arr[1] === '') {
  267. $sym = $sym == 'RANGE' ? '>=' : '<';
  268. $arr = $arr[0];
  269. }
  270. $tableArr = explode('.', $k);
  271. if (count($tableArr) > 1 && $tableArr[0] != $name && !in_array($tableArr[0], $alias) && !empty($this->model)) {
  272. //修复关联模型下时间无法搜索的BUG
  273. $relation = Loader::parseName($tableArr[0], 1, false);
  274. $alias[$this->model->$relation()->getTable()] = $tableArr[0];
  275. }
  276. $where[] = [$k, str_replace('RANGE', 'BETWEEN', $sym) . ' TIME', $arr];
  277. break;
  278. case 'NULL':
  279. case 'IS NULL':
  280. case 'NOT NULL':
  281. case 'IS NOT NULL':
  282. $where[] = [$k, strtolower(str_replace('IS ', '', $sym))];
  283. break;
  284. default:
  285. break;
  286. }
  287. $index++;
  288. }
  289. if (!empty($this->model)) {
  290. $this->model->alias($alias);
  291. }
  292. $model = $this->model;
  293. $where = function (Query $query) use ($where, $alias, $bind, &$model) {
  294. if (!empty($model)) {
  295. $model->alias($alias);
  296. $model->bind($bind);
  297. }
  298. foreach ($where as $k => $v) {
  299. if (is_array($v)) {
  300. if ($v[0]=='admin.admin_id'){
  301. $query->whereExists("select * from mobile_order_admin where mobile_order_admin.mobile_order_id=mobile_order.id and admin_id={$v[2]}");
  302. continue;
  303. }elseif ($v[0]=='mobile_order.sub_mobile_anchor_id'){
  304. $query->whereExists("select * from mobile_order_sub_anchor where mobile_order_sub_anchor.mobile_order_id=mobile_order.id and sub_mobile_anchor_id={$v[2]}");
  305. continue;
  306. }
  307. call_user_func_array([$query, 'where'], $v);
  308. } else {
  309. $query->where($v);
  310. }
  311. }
  312. };
  313. return [$where, $sort, $order, $offset, $limit, $page, $alias, $bind];
  314. }
  315. public function edit($ids = null)
  316. {
  317. $model=$this->model->find($ids);
  318. $originStatus=$model['status'];
  319. $row=$model->toArray();
  320. if($this->request->isGet()){
  321. $row['address']=$model->originData()['address'];
  322. $row['city']=\app\common\model\Area::getNameString($row['city'],'/');
  323. $this->assign('row',$row);
  324. return view();
  325. }else{
  326. $field=[
  327. 'name',
  328. 'phone',
  329. 'id_no',
  330. 'address',
  331. 'trans_no',
  332. 'trans_id',
  333. 'status',
  334. 'city',
  335. ];
  336. $data=input('row/a');
  337. if(isset($data['city'])){
  338. $data['city']=\app\common\model\Area::whereIn('name|shortname',str_replace('/',',',$data['city']))->column('id');
  339. }
  340. $this->validate($data,[
  341. 'status'=>'in:'.implode(',',array_keys($this->status()))
  342. ]);
  343. foreach ($data as $key=>$value){
  344. if(in_array($key,$field)) {
  345. $model[$key] = $value;
  346. }
  347. }
  348. MobileOrderAdmin::add($model,$originStatus!=$model['status'],$this->auth->id);
  349. $model->save();
  350. $this->success('');
  351. }
  352. }
  353. public function status(){
  354. $status=\app\common\model\MobileOrder::flowStatus();
  355. return $status;
  356. }
  357. public function pay_type(){
  358. return \app\common\model\MobileOrder::$payTypes;
  359. }
  360. public function add_operation(){
  361. $id=input('ids/d');
  362. if($this->request->isGet()){
  363. $this->assign('shortcut',ShortcutContent::getList());
  364. return view();
  365. }else{
  366. $content=input('row.content');
  367. $this->validate(compact('content'),[
  368. 'content'=>'max:250',
  369. ]);
  370. MobileOrderOperation::create([
  371. 'mobile_order_id'=>$id,
  372. 'admin_id'=>$this->auth->id,
  373. 'content'=>$content,
  374. ]);
  375. $this->success();
  376. }
  377. }
  378. public function send(){
  379. $id=input('ids/d');
  380. if($this->request->isGet()){
  381. $row=$this->model->find($id);
  382. $this->assign('row',$row);
  383. return view();
  384. }else{
  385. $data=input('row/a');
  386. Db::startTrans();
  387. $row=$this->model->lock(true)->findOrFail($id);
  388. $row->dealSend($data['trans_no'],$data['trans_id']);
  389. Db::commit();
  390. $this->success();
  391. }
  392. }
  393. #备注
  394. public function sub_remark($id){
  395. $order=$this->model->filterFlow()->find($id);
  396. if($this->request->isGet()){
  397. return view('mobile_order/sub_remark');
  398. }else{
  399. $data=input('row/a');
  400. $this->validate($data,[
  401. 'content|备注'=>['require','max:50'],
  402. ]);
  403. $order->subRemark()->save([
  404. 'sub_admin_id'=>$this->auth->id,
  405. 'content'=>$data['content'],
  406. ]);
  407. $this->success();
  408. }
  409. }
  410. #展示开卡资料
  411. public function show_open_data($id){
  412. $row=$this->model->find($id);
  413. return view('', compact('row'));
  414. }
  415. // 重新提交敢探号
  416. public function resubmit(){
  417. $id=input('ids/d');
  418. if($this->request->isGet()){
  419. $this->error();
  420. return ;
  421. }else{
  422. $mobileOrder = new MobileOrder;
  423. $mobileOrder=$mobileOrder::with(['info'])->where('id',$id)->find();
  424. try {
  425. GantanhaoService::orderPurchase($mobileOrder);
  426. }catch (\Exception $e){
  427. $this->error($e->getMessage());
  428. }
  429. $this->success('ok',null,$mobileOrder);
  430. }
  431. }
  432. }