MobileOrder.php 28 KB

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