MobileOrder.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\Admin;
  4. use app\admin\model\MobileOrderAdmin;
  5. use app\admin\model\MobileOrderRefundLog;
  6. use app\admin\model\MobileOrderSubAnchor;
  7. use app\admin\model\ShortcutContent;
  8. use app\common\controller\Backend;
  9. use app\common\model\LogisticsCompany;
  10. use app\common\model\MobileOrderOperation;
  11. use app\common\service\MobileOrderExport;
  12. use app\common\service\TransferCheck;
  13. use app\common\validate\RefundValidate;
  14. use app\service\byte_dance\ByteDanceSettle;
  15. use think\Db;
  16. use think\db\Query;
  17. use think\Loader;
  18. /**
  19. *
  20. *
  21. * @icon fa fa-circle-o
  22. */
  23. class MobileOrder extends Backend
  24. {
  25. protected $noNeedRight = ['status', 'pay_type'];
  26. /**
  27. * MobileOrder模型对象
  28. * @var \app\admin\model\MobileOrder
  29. */
  30. protected $model = null;
  31. protected $proxy = 0;
  32. public function _initialize()
  33. {
  34. parent::_initialize();
  35. $this->model = new \app\admin\model\MobileOrder;
  36. $this->assign('status', \app\common\model\MobileOrder::$status);
  37. $this->assign('logistics_list', json_encode(LogisticsCompany::all()));
  38. if (in_array(2, $this->auth->getGroupIds())) {
  39. $this->proxy = 1;
  40. $this->assign('status', \app\common\model\MobileOrder::$GongYSStatus);
  41. }
  42. }
  43. public function import()
  44. {
  45. $this->error('not support');
  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. //当前是否为关联查询
  58. $this->relationSearch = true;
  59. //设置过滤方法
  60. $this->request->filter(['strip_tags', 'trim']);
  61. $map = [];
  62. if ($this->admin('is_sub')) {
  63. $map['s_id'] = $this->admin('id');
  64. }
  65. //if(!$this->admin('is_manager')){
  66. // $map['s_id']=$this->admin('id');
  67. //}
  68. $export = input('export');
  69. if ($export) {
  70. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  71. $list = $this->model
  72. ->with(['info', 'operation', 'operation.admin', 'admin', 'admin.admin'])
  73. ->where($where)
  74. ->where($map)
  75. ->where('type', 1)
  76. ->where(function ($q) {
  77. //供应商
  78. if ($this->proxy) {
  79. return $q->where('mobile_order.admin_id', $this->auth->id);
  80. }
  81. })
  82. ->order($sort, $order)
  83. ->paginate($limit);
  84. return MobileOrderExport::export($list, $this->admin());
  85. }
  86. if ($this->request->isAjax()) {
  87. //如果发送的来源是Selectpage,则转发到Selectpage
  88. if ($this->request->request('keyField')) {
  89. return $this->selectpage();
  90. }
  91. // status需要组装的搜索条件
  92. $filter = json_decode($this->request->get('filter'), true);
  93. $op = json_decode($this->request->get('op'), true);
  94. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  95. if ($this->admin('is_manager')) {
  96. $relation = ['info', 'operation', 'operation.admin', 'admin', 'admin.admin', 'refund_log', 'refund_log.refunduser',
  97. 'sub_remark', 'sub_remark.admin', 'anchor', 'sub_anchor', 'sub_anchor.mobileAnchor', 'proxy', 'payment'];
  98. } else {
  99. $relation = ['info', 'admin', 'admin.admin', 'refund_log', 'refund_log.refunduser', 'sub_remark' => function (Query $query) {
  100. $query->where('sub_admin_id', $this->auth->id);
  101. }, 'sub_remark.admin', 'anchor', 'sub_anchor', 'sub_anchor.mobileAnchor', 'proxy', 'payment'];
  102. }
  103. $list = $this->model
  104. ->with($relation)
  105. ->where($where)
  106. ->where($map)
  107. ->where('type', 1)
  108. ->where(function ($q) {
  109. //供应商
  110. if ($this->proxy) {
  111. return $q->where('mobile_order.admin_id', $this->auth->id)->whereIn('status',[15,17,20,25,60]);
  112. }
  113. })
  114. ->order($sort, $order)
  115. ->paginate($limit);
  116. $upStatus = [];
  117. if ($list->items()) {
  118. $upStatus = \app\admin\model\Mobile::whereIn('id', array_column($list->items(), 'mobile_id'))->where('status', '<>', 0)->column('id');
  119. }
  120. foreach ($list as $row) {
  121. $row['pay_link'] = h5_link("oder-detail/{$row['id']}");
  122. $row->append(['phone_order_count']);
  123. $row['mobile_can_up'] = !in_array($row['mobile_id'], $upStatus);
  124. if ($row['s_id']) {
  125. $row['s_name'] = Admin::where('id', $row['s_id'])->value('nickname');
  126. } else {
  127. $row['s_name'] = '';
  128. }
  129. }
  130. $extend = [];
  131. $amountMap = [];
  132. $amountMap['type'] = 1;
  133. if (!$this->admin('is_manager')) {
  134. $amountMap['s_id'] = $this->admin('id');
  135. }
  136. /*$amountBase=$this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_base');
  137. $amountDi=$this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_di');
  138. $extend['total']=bcsub($amountBase,$amountDi);*/
  139. $extend['total'] = $this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_base');
  140. $extend['alipay'] = $this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type', 2)->sum('amount');
  141. $extend['wechat'] = $this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type', 1)->sum('amount');
  142. $extend['jd'] = $this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type', 3)->sum('amount');
  143. $extend['dy'] = $this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type', 4)->sum('amount');
  144. $extend['ks'] = $this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type', 5)->sum('amount');
  145. $extend['di'] = $this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_di');
  146. $extend['profit'] = $this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_profit');
  147. $extend['refund'] = $this->model->where($where)->where($amountMap)->sum('amount_refund');
  148. // select count(id) as total,status from mobile_order where type=1 GROUP BY status; 角标查询
  149. if (isset($filter['status'])) {
  150. unset($filter['status']);
  151. unset($op['status']);
  152. }
  153. $this->request->get(['filter' => json_encode($filter)]);
  154. $this->request->get(['op' => json_encode($op)]);
  155. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  156. // if($this->admin('is_manager')){
  157. // $relation=['mobile','anchor'];
  158. // }else{
  159. // $relation=['mobile'];
  160. // }
  161. $status_list = $this->model
  162. ->with($relation)
  163. ->field('count(mobile_order.id) as total,mobile_order.status')
  164. ->where($where)
  165. ->where($map)
  166. ->where('mobile_order.type', 1)
  167. ->where(function ($q) {
  168. //供应商
  169. if ($this->proxy) {
  170. return $q->where('mobile_order.admin_id', $this->auth->id)->whereIn('status',[15,17,20,25,60]);
  171. }
  172. })
  173. ->group('mobile_order.status')
  174. ->select();
  175. $status_10_count=0;
  176. if (!$this->proxy) {
  177. // 状态10的数据统计
  178. $status_10_count = $this->model
  179. ->with($relation)
  180. ->where($where)
  181. ->whereNotIn('status', [0, 50, 90])
  182. ->where($map)
  183. ->where('mobile_order.type', 1)
  184. ->where(function ($q) {
  185. //供应商
  186. if ($this->proxy) {
  187. return $q->where('mobile_order.admin_id', $this->auth->id);
  188. }
  189. })->count();
  190. }
  191. $result = array("total" => $list->total(), "rows" => $list->items(), 'extend' => $extend, 'status_list' => $status_list,'status_10_count'=>$status_10_count);
  192. $result['link'] = $this->request->url() . '&export=1';
  193. return json($result);
  194. }
  195. $this->assign('admins', Admin::getAdmins());
  196. $this->assign('subs', Admin::getSubs());
  197. $this->assign('is_proxy', $this->proxy);
  198. $this->assignconfig('is_proxy', $this->proxy);
  199. return $this->view->fetch();
  200. }
  201. protected function buildparams($searchfields = null, $relationSearch = null)
  202. {
  203. $searchfields = is_null($searchfields) ? $this->searchFields : $searchfields;
  204. $relationSearch = is_null($relationSearch) ? $this->relationSearch : $relationSearch;
  205. $search = $this->request->get("search", '');
  206. $filter = $this->request->get("filter", '');
  207. $op = $this->request->get("op", '', 'trim');
  208. $sort = $this->request->get("sort", !empty($this->model) && $this->model->getPk() ? $this->model->getPk() : 'id');
  209. $order = $this->request->get("order", "DESC");
  210. $offset = $this->request->get("offset/d", 0);
  211. $limit = $this->request->get("limit/d", 999999);
  212. //新增自动计算页码
  213. $page = $limit ? intval($offset / $limit) + 1 : 1;
  214. if ($this->request->has("page")) {
  215. $page = $this->request->get("page/d", 1);
  216. }
  217. $this->request->get([config('paginate.var_page') => $page]);
  218. $filter = (array)json_decode($filter, true);
  219. $op = (array)json_decode($op, true);
  220. $filter = $filter ? $filter : [];
  221. $where = [];
  222. $alias = [];
  223. $bind = [];
  224. $name = '';
  225. $aliasName = '';
  226. if (!empty($this->model) && $this->relationSearch) {
  227. $name = $this->model->getTable();
  228. $alias[$name] = Loader::parseName(basename(str_replace('\\', '/', get_class($this->model))));
  229. $aliasName = $alias[$name] . '.';
  230. }
  231. $sortArr = explode(',', $sort);
  232. foreach ($sortArr as $index => & $item) {
  233. $item = stripos($item, ".") === false ? $aliasName . trim($item) : $item;
  234. }
  235. unset($item);
  236. $sort = implode(',', $sortArr);
  237. $adminIds = $this->getDataLimitAdminIds();
  238. if (is_array($adminIds)) {
  239. $where[] = [$aliasName . $this->dataLimitField, 'in', $adminIds];
  240. }
  241. if ($search) {
  242. $searcharr = is_array($searchfields) ? $searchfields : explode(',', $searchfields);
  243. foreach ($searcharr as $k => &$v) {
  244. $v = stripos($v, ".") === false ? $aliasName . $v : $v;
  245. }
  246. unset($v);
  247. $where[] = [implode("|", $searcharr), "LIKE", "%{$search}%"];
  248. }
  249. $index = 0;
  250. foreach ($filter as $k => $v) {
  251. if (!preg_match('/^[a-zA-Z0-9_\-\.]+$/', $k)) {
  252. continue;
  253. }
  254. $sym = isset($op[$k]) ? $op[$k] : '=';
  255. if (stripos($k, ".") === false) {
  256. $k = $aliasName . $k;
  257. }
  258. $v = !is_array($v) ? trim($v) : $v;
  259. $sym = strtoupper(isset($op[$k]) ? $op[$k] : $sym);
  260. //null和空字符串特殊处理
  261. if (!is_array($v)) {
  262. if (in_array(strtoupper($v), ['NULL', 'NOT NULL'])) {
  263. $sym = strtoupper($v);
  264. }
  265. if (in_array($v, ['""', "''"])) {
  266. $v = '';
  267. $sym = '=';
  268. }
  269. }
  270. switch ($sym) {
  271. case '=':
  272. case '<>':
  273. $where[] = [$k, $sym, (string)$v];
  274. break;
  275. case 'LIKE':
  276. case 'NOT LIKE':
  277. case 'LIKE %...%':
  278. case 'NOT LIKE %...%':
  279. $where[] = [$k, trim(str_replace('%...%', '', $sym)), "%{$v}%"];
  280. break;
  281. case '>':
  282. case '>=':
  283. case '<':
  284. case '<=':
  285. $where[] = [$k, $sym, intval($v)];
  286. break;
  287. case 'FINDIN':
  288. case 'FINDINSET':
  289. case 'FIND_IN_SET':
  290. $v = is_array($v) ? $v : explode(',', str_replace(' ', ',', $v));
  291. $findArr = array_values($v);
  292. foreach ($findArr as $idx => $item) {
  293. $bindName = "item_" . $index . "_" . $idx;
  294. $bind[$bindName] = $item;
  295. $where[] = "FIND_IN_SET(:{$bindName}, `" . str_replace('.', '`.`', $k) . "`)";
  296. }
  297. break;
  298. case 'IN':
  299. case 'IN(...)':
  300. case 'NOT IN':
  301. case 'NOT IN(...)':
  302. $where[] = [$k, str_replace('(...)', '', $sym), is_array($v) ? $v : explode(',', $v)];
  303. break;
  304. case 'BETWEEN':
  305. case 'NOT BETWEEN':
  306. $arr = array_slice(explode(',', $v), 0, 2);
  307. if (stripos($v, ',') === false || !array_filter($arr)) {
  308. continue 2;
  309. }
  310. //当出现一边为空时改变操作符
  311. if ($arr[0] === '') {
  312. $sym = $sym == 'BETWEEN' ? '<=' : '>';
  313. $arr = $arr[1];
  314. } elseif ($arr[1] === '') {
  315. $sym = $sym == 'BETWEEN' ? '>=' : '<';
  316. $arr = $arr[0];
  317. }
  318. $where[] = [$k, $sym, $arr];
  319. break;
  320. case 'RANGE':
  321. case 'NOT RANGE':
  322. $v = str_replace(' - ', ',', $v);
  323. $arr = array_slice(explode(',', $v), 0, 2);
  324. if (stripos($v, ',') === false || !array_filter($arr)) {
  325. continue 2;
  326. }
  327. //当出现一边为空时改变操作符
  328. if ($arr[0] === '') {
  329. $sym = $sym == 'RANGE' ? '<=' : '>';
  330. $arr = $arr[1];
  331. } elseif ($arr[1] === '') {
  332. $sym = $sym == 'RANGE' ? '>=' : '<';
  333. $arr = $arr[0];
  334. }
  335. $tableArr = explode('.', $k);
  336. if (count($tableArr) > 1 && $tableArr[0] != $name && !in_array($tableArr[0], $alias) && !empty($this->model)) {
  337. //修复关联模型下时间无法搜索的BUG
  338. $relation = Loader::parseName($tableArr[0], 1, false);
  339. $alias[$this->model->$relation()->getTable()] = $tableArr[0];
  340. }
  341. $where[] = [$k, str_replace('RANGE', 'BETWEEN', $sym) . ' TIME', $arr];
  342. break;
  343. case 'NULL':
  344. case 'IS NULL':
  345. case 'NOT NULL':
  346. case 'IS NOT NULL':
  347. $where[] = [$k, strtolower(str_replace('IS ', '', $sym))];
  348. break;
  349. default:
  350. break;
  351. }
  352. $index++;
  353. }
  354. if (!empty($this->model)) {
  355. $this->model->alias($alias);
  356. }
  357. $model = $this->model;
  358. $where = function (Query $query) use ($where, $alias, $bind, &$model) {
  359. if (!empty($model)) {
  360. $model->alias($alias);
  361. $model->bind($bind);
  362. }
  363. foreach ($where as $k => $v) {
  364. if (is_array($v)) {
  365. if ($v[0] == 'rules.rule') {
  366. $query->whereExists("select * from mobile_order_rules where mobile_order_rules.mobile_order_id=mobile_order.id and rule='{$v[2]}'");
  367. continue;
  368. } elseif ($v[0] == 'admin.admin_id') {
  369. $query->whereExists("select * from mobile_order_admin where mobile_order_admin.mobile_order_id=mobile_order.id and admin_id={$v[2]}");
  370. continue;
  371. } elseif ($v[0] == 'mobile_order.sub_mobile_anchor_id') {
  372. $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]}");
  373. continue;
  374. } elseif ($v[0] == 'status') {
  375. $v[0] = 'mobile_order.status';
  376. } elseif ($v[0] == 'create_time') {
  377. $v[0] = 'mobile_order.create_time';
  378. } elseif ($v[0] == 'update_time') {
  379. $v[0] = 'mobile_order.update_time';
  380. } elseif ($v[0] == 'mobile_order.status' && $v[2] == 10) {
  381. $query->whereNotIn('status', [0, 50, 90]);
  382. continue;
  383. }
  384. call_user_func_array([$query, 'where'], $v);
  385. } else {
  386. $query->where($v);
  387. }
  388. }
  389. };
  390. return [$where, $sort, $order, $offset, $limit, $page, $alias, $bind];
  391. }
  392. public function edit($ids = null)
  393. {
  394. $model = $this->model->find($ids);
  395. $originStatus = $model['status'];
  396. $row = $model->toArray();
  397. if ($this->request->isGet()) {
  398. $row['address'] = $model->originData()['address'];
  399. $row['city'] = \app\common\model\Area::getNameString($row['city'], '/');
  400. $this->assign('row', $row);
  401. return view();
  402. } else {
  403. $field = [
  404. 'name',
  405. 'phone',
  406. 'id_no',
  407. 'address',
  408. 'trans_no',
  409. 'trans_id',
  410. 'status',
  411. 'city',
  412. ];
  413. $data = input('row/a');
  414. Db::startTrans();
  415. if (isset($data['city'])) {
  416. $data['city'] = \app\common\model\Area::whereIn('name|shortname', str_replace('/', ',', $data['city']))->column('id');
  417. }
  418. $this->validate($data, [
  419. 'status' => 'in:' . implode(',', array_keys(\app\common\model\MobileOrder::$status))
  420. ]);
  421. foreach ($data as $key => $value) {
  422. if (in_array($key, $field)) {
  423. $model[$key] = $value;
  424. }
  425. }
  426. MobileOrderAdmin::add($model, $originStatus != $model['status'], $this->auth->id);
  427. $model->save();
  428. Db::commit();
  429. $this->success('');
  430. }
  431. }
  432. public function refund($ids)
  433. {
  434. $model = $this->model->find($ids);
  435. $this->assign('row', $model);
  436. if ($this->request->isGet()) {
  437. return view();
  438. } else {
  439. $data = input('row/a');
  440. $this->validate($data, RefundValidate::class);
  441. Db::startTrans();
  442. $model = $this->model->where('id', $ids)->lock(true)->findOrFail();
  443. $model->makeRefund('admin', $this->admin(), $data);
  444. Db::commit();
  445. $this->success();
  446. }
  447. }
  448. public function status()
  449. {
  450. return \app\common\model\MobileOrder::$status;
  451. }
  452. public function pay_type()
  453. {
  454. return \app\common\model\MobileOrder::$payTypes;
  455. }
  456. public function add_operation()
  457. {
  458. $id = input('ids/d');
  459. if ($this->request->isGet()) {
  460. $this->assign('shortcut', ShortcutContent::getList());
  461. return view();
  462. } else {
  463. $content = input('row.content');
  464. $this->validate(compact('content'), [
  465. 'content' => 'max:250',
  466. ]);
  467. MobileOrderOperation::create([
  468. 'mobile_order_id' => $id,
  469. 'admin_id' => $this->auth->id,
  470. 'content' => $content,
  471. ]);
  472. $this->success();
  473. }
  474. }
  475. public function send()
  476. {
  477. $id = input('ids/d');
  478. if ($this->request->isGet()) {
  479. $row = $this->model->find($id);
  480. $this->assign('row', $row);
  481. return view();
  482. } else {
  483. $data = input('row/a');
  484. Db::startTrans();
  485. $row = $this->model->lock(true)->findOrFail($id);
  486. $row->dealSend($data['trans_no'], $data['trans_id']);
  487. Db::commit();
  488. $this->success();
  489. }
  490. }
  491. #展示开卡资料
  492. public function show_open_data($id)
  493. {
  494. $row = $this->model->find($id);
  495. return view('', compact('row'));
  496. }
  497. public function see_logistics($ids)
  498. {
  499. $order = $this->model->find($ids);
  500. $data = TransferCheck::instance()->setNo($order['trans_no'])->setName($order['name'])->setPhone($order['phone'])->setLogisticsCompany(LogisticsCompany::get($order['trans_id']))->get();
  501. $this->assign('data', $data);
  502. return view('mobile_order/see_logistics');
  503. }
  504. #备注
  505. public function sub_remark($id)
  506. {
  507. $order = $this->model->find($id);
  508. if ($this->admin('is_sub') && $this->auth->id != $order['s_id']) {
  509. $this->error('操作失败(a)');
  510. }
  511. if ($this->request->isGet()) {
  512. return view();
  513. } else {
  514. $data = input('row/a');
  515. $this->validate($data, [
  516. 'content|备注' => ['require', 'max:50'],
  517. ]);
  518. $order->subRemark()->save([
  519. 'sub_admin_id' => $this->auth->id,
  520. 'content' => $data['content'],
  521. ]);
  522. $this->success();
  523. }
  524. }
  525. public function set_anchor($ids)
  526. {
  527. $order = $this->model->find($ids);
  528. if (!$order) {
  529. $this->error('订单不存在');
  530. }
  531. if ($this->request->isGet()) {
  532. if ($this->admin('is_manager')) {
  533. $anchor_id = $order['mobile_anchor_id'];
  534. $this->assign('mobile_anchor_id', $anchor_id);
  535. }
  536. $sub_anchor_id = $order->subAnchor()->value('sub_mobile_anchor_id');
  537. $this->assign('sub_mobile_anchor_id', $sub_anchor_id);
  538. $this->assign('order', $order);
  539. return view('sub_anchor');
  540. } else {
  541. $data = input('row/a');
  542. if (!empty($data['mobile_anchor_id']) && !\app\admin\model\MobileAnchor::find($data['mobile_anchor_id'])) {
  543. $this->error('主播不存在');
  544. }
  545. if (!empty($data['sub_mobile_anchor_id']) && !\app\admin\model\MobileAnchor::find($data['sub_mobile_anchor_id'])) {
  546. $this->error('主播不存在');
  547. }
  548. if ($this->admin('is_manager')) {
  549. if (!empty($data['mobile_anchor_id'])) {
  550. $order['mobile_anchor_id'] = $data['mobile_anchor_id'];
  551. if (!$order->save()) {
  552. $this->error('保存失败');
  553. }
  554. }
  555. if (!empty($data['sub_mobile_anchor_id'])) {
  556. MobileOrderSubAnchor::sync($order, $data['sub_mobile_anchor_id']);
  557. }
  558. } elseif ($this->admin('is_sub') && $this->admin('id') == $order['s_id']) {
  559. if (!empty($data['sub_mobile_anchor_id'])) {
  560. if ($order->subAnchor()->find()) {
  561. $this->error('无法再次设置');
  562. }
  563. MobileOrderSubAnchor::sync($order, $data['sub_mobile_anchor_id']);
  564. }
  565. }
  566. $this->success();
  567. }
  568. }
  569. public function mobile_up($ids)
  570. {
  571. $order = $this->model->find($ids);
  572. $mobile = $order->mobile()->find();
  573. if ($this->request->isGet()) {
  574. $this->assign('row', $mobile);
  575. $this->assign('disabled', 1);
  576. $this->assign('otherSubDisabled', 1);
  577. return view();
  578. } else {
  579. if ($mobile) {
  580. $mobile->again_sell();
  581. }
  582. $this->success();
  583. }
  584. }
  585. public function refund_log()
  586. {
  587. if ($this->request->isAjax()) {
  588. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  589. $this->relationSearch = true;
  590. /*$limit=input('limit',10);
  591. $offset=input('offset',0);*/
  592. $filter = json_decode(input('filter'), true) ?: [];
  593. $map = [];
  594. if (!empty($filter['od.mobile_id'])) {
  595. $map['mobile_order.mobile_id'] = ['eq', $filter['od.mobile_id']];
  596. }
  597. if (!empty($filter['od.s_id'])) {
  598. $map['mobile_order.s_id'] = ['eq', $filter['od.s_id']];
  599. }
  600. if (isset($filter['pass'])) {
  601. $map['pass'] = ['eq', $filter['pass']];
  602. }
  603. if (!empty($filter['od.no'])) {
  604. $map['mobile_order.no'] = ['like', "%{$filter['od.no']}%"];
  605. }
  606. if (!empty($filter['od.order_no'])) {
  607. $map['mobile_order.order_no'] = ['like', "%{$filter['od.order_no']}%"];
  608. }
  609. if (!empty($filter['reason'])) {
  610. $map['reason'] = ['like', "%{$filter['reason']}%"];
  611. }
  612. if (!empty($filter['admin.nickname'])) {
  613. $map['admin.nickname'] = ['like', "%{$filter['admin.nickname']}%"];
  614. }
  615. if (!empty($filter['od.amount'])) {
  616. $amountArr = explode(',', $filter['od.amount']);
  617. if (empty($amountArr[0])) {
  618. $amountArr[0] = 0;
  619. }
  620. if (empty($amountArr[1])) {
  621. $amountArr[1] = 10000000000000;
  622. }
  623. $map['mobile_order.amount'] = ['between', $amountArr];
  624. }
  625. if (!empty($filter['amount_backend'])) {
  626. $amountArr = explode(',', $filter['amount_backend']);
  627. if (empty($amountArr[0])) {
  628. $amountArr[0] = 0;
  629. }
  630. if (empty($amountArr[1])) {
  631. $amountArr[1] = 10000000000000;
  632. }
  633. $map['amount_backend'] = ['between', $amountArr];
  634. }
  635. $log = (new MobileOrderRefundLog)->getTable();
  636. if (!empty($filter['create_time'])) {
  637. list($s, $e) = explode(' - ', $filter['create_time']);
  638. $map["{$log}.create_time"] = ['between', [strtotime($s), strtotime($e)]];
  639. }
  640. //$page=$offset/$limit+1;
  641. $data = MobileOrderRefundLog::where($map)
  642. ->where(function (Query $query) {
  643. if (!$this->admin('is_manager')) {
  644. $query->where('mobile_order.s_id', $this->admin('id'));
  645. }
  646. })
  647. ->with(['od', 'admin'])
  648. ->order('id', 'desc')
  649. ->paginate($limit, false);
  650. /* foreach ($data as $model){
  651. $model->setAttr('s_name',Admin::where('id',$model['od']['s_id'])->value('nickname'));
  652. }*/
  653. return json([
  654. 'total' => $data->total(),
  655. 'rows' => $data->items(),
  656. 'filter' => $filter,
  657. ]);
  658. }
  659. return $this->fetch();
  660. }
  661. #dy结算
  662. public function dy_settle()
  663. {
  664. $id = input('ids');
  665. if (empty($id)) {
  666. $this->error('id必须');
  667. }
  668. Db::startTrans();
  669. $order = $this->model->lock(true)->find($id);
  670. if (!$order) {
  671. $this->error('订单不存在');
  672. }
  673. $order->dySettle();
  674. Db::commit();
  675. $this->success();
  676. }
  677. }