Produceorder.php 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\library\Auth;
  4. use app\admin\model\Admin;
  5. use app\admin\model\MobileOrderAdmin;
  6. use app\admin\model\MobileOrderRefundLog;
  7. use app\admin\model\MobileOrderSubAnchor;
  8. use app\admin\model\ShortcutContent;
  9. use app\common\controller\Backend;
  10. use app\common\model\Area;
  11. use app\common\model\LogisticsCompany;
  12. use app\common\model\MobileOrder;
  13. use app\common\model\MobileOrderOperation;
  14. use app\common\service\MobileOrderExport;
  15. use app\common\service\TransferCheck;
  16. use app\common\service\ZopOrderService;
  17. use app\common\validate\RefundValidate;
  18. use app\service\byte_dance\ByteDanceSettle;
  19. use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
  20. use PhpOffice\PhpSpreadsheet\Reader\Csv;
  21. use PhpOffice\PhpSpreadsheet\Reader\Xls;
  22. use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
  23. use think\Db;
  24. use think\db\Query;
  25. use think\exception\PDOException;
  26. use think\exception\ValidateException;
  27. use think\Loader;
  28. /**
  29. *
  30. *
  31. * @icon fa fa-circle-o
  32. */
  33. class Produceorder extends Backend
  34. {
  35. protected $noNeedRight=['status','pay_type'];
  36. /**
  37. * MobileOrder模型对象
  38. * @var \app\admin\model\MobileOrder
  39. */
  40. protected $model = null;
  41. protected $proxy = 0;
  42. public function _initialize()
  43. {
  44. parent::_initialize();
  45. $this->model = new \app\admin\model\MobileOrder;
  46. $this->assign('status',\app\common\model\MobileOrder::$status);
  47. $this->assign('logistics_list',json_encode(LogisticsCompany::all()));
  48. if(in_array(2, $this->auth->getGroupIds())){
  49. $this->proxy = 1;
  50. $this->assign('status',\app\common\model\MobileOrder::$GongYSStatus);
  51. }
  52. $platformSourceList = [
  53. '1' => '自动生产',
  54. '0' => '手动生产',
  55. ];
  56. $this->assign('platformSourceList', $platformSourceList);
  57. }
  58. public function import()
  59. {
  60. $file = $this->request->request('file');
  61. if (!$file) {
  62. $this->error(__('Parameter %s can not be empty', 'file'));
  63. }
  64. $file=parse_url($file,PHP_URL_PATH);
  65. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  66. if (!is_file($filePath)) {
  67. $this->error(__('No results were found'));
  68. }
  69. //实例化reader
  70. $ext = pathinfo($filePath, PATHINFO_EXTENSION);
  71. if (!in_array($ext, ['csv', 'xls', 'xlsx'])) {
  72. $this->error(__('Unknown data format'));
  73. }
  74. if ($ext === 'csv') {
  75. $file = fopen($filePath, 'r');
  76. $filePath = tempnam(sys_get_temp_dir(), 'import_csv');
  77. $fp = fopen($filePath, "w");
  78. $n = 0;
  79. while ($line = fgets($file)) {
  80. $line = rtrim($line, "\n\r\0");
  81. $encoding = mb_detect_encoding($line, ['utf-8', 'gbk', 'latin1', 'big5']);
  82. if ($encoding != 'utf-8') {
  83. $line = mb_convert_encoding($line, 'utf-8', $encoding);
  84. }
  85. if ($n == 0 || preg_match('/^".*"$/', $line)) {
  86. fwrite($fp, $line . "\n");
  87. } else {
  88. fwrite($fp, '"' . str_replace(['"', ','], ['""', '","'], $line) . "\"\n");
  89. }
  90. $n++;
  91. }
  92. fclose($file) || fclose($fp);
  93. $reader = new Csv();
  94. } elseif ($ext === 'xls') {
  95. $reader = new Xls();
  96. } else {
  97. $reader = new Xlsx();
  98. }
  99. //导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
  100. $importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment';
  101. $table = $this->model->getQuery()->getTable();
  102. $database = \think\Config::get('database.database');
  103. $fieldArr = [];
  104. $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]);
  105. foreach ($list as $k => $v) {
  106. if ($importHeadType == 'comment') {
  107. $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME'];
  108. } else {
  109. $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME'];
  110. }
  111. }
  112. //加载文件
  113. $insert = [];
  114. try {
  115. if (!$PHPExcel = $reader->load($filePath)) {
  116. $this->error(__('Unknown data format'));
  117. }
  118. $currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
  119. $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
  120. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  121. $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
  122. $fields = [];
  123. for ($currentRow = 1; $currentRow <= 1; $currentRow++) {
  124. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  125. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  126. $fields[] = $val;
  127. }
  128. }
  129. for ($currentRow = 2; $currentRow <= $allRow; $currentRow++) {
  130. $values = [];
  131. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  132. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  133. $values[] = is_null($val) ? '' : $val;
  134. }
  135. $row = [];
  136. $temp = array_combine($fields, $values);
  137. foreach ($temp as $k => $v) {
  138. if (isset($fieldArr[$k]) && $k !== '') {
  139. $row[$fieldArr[$k]] = $v;
  140. }
  141. }
  142. if ($row) {
  143. $insert[] = $row;
  144. }
  145. }
  146. } catch (Exception $exception) {
  147. $this->error($exception->getMessage());
  148. }
  149. if (!$insert) {
  150. $this->error(__('No rows were updated'));
  151. }
  152. try {
  153. //是否包含admin_id字段
  154. $has_admin_id = false;
  155. foreach ($fieldArr as $name => $key) {
  156. if ($key == 'admin_id') {
  157. $has_admin_id = true;
  158. break;
  159. }
  160. }
  161. if ($has_admin_id) {
  162. $auth = Auth::instance();
  163. foreach ($insert as &$val) {
  164. if (!isset($val['admin_id']) || empty($val['admin_id'])) {
  165. $val['admin_id'] = $auth->isLogin() ? $auth->id : 0;
  166. }
  167. $val['is_auto'] = 0;
  168. }
  169. }
  170. (new MobileOrder)->insertAll($insert);
  171. } catch (PDOException $exception) {
  172. $msg = $exception->getMessage();
  173. if (preg_match("/.+Integrity constraint violation: 1062 Duplicate entry '(.+)' for key '(.+)'/is", $msg, $matches)) {
  174. $msg = "导入失败,包含【{$matches[1]}】的记录已存在";
  175. };
  176. $this->error($msg);
  177. } catch (Exception $e) {
  178. $this->error($e->getMessage());
  179. }
  180. $this->success();
  181. }
  182. /**
  183. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  184. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  185. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  186. */
  187. /**
  188. * 查看
  189. */
  190. public function index()
  191. {
  192. //当前是否为关联查询
  193. $this->relationSearch = true;
  194. //设置过滤方法
  195. $this->request->filter(['strip_tags', 'trim']);
  196. $map=[];
  197. if($this->admin('is_sub')){
  198. $map['s_id']=$this->admin('id');
  199. }
  200. //if(!$this->admin('is_manager')){
  201. // $map['s_id']=$this->admin('id');
  202. //}
  203. $export=input('export');
  204. if($export){
  205. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  206. $list = $this->model
  207. ->where($where)
  208. ->where($map)
  209. ->where('type',1)
  210. // ->where(['platform_source'=>'敢探号','api_goods_id'=>123564678989,'or'])
  211. ->whereOr('platform_source','敢探号')
  212. ->whereOr('api_goods_id','123564678989')
  213. ->where(function($q) {
  214. //供应商
  215. if($this->proxy){
  216. return $q->where('mobile_order.admin_id', $this->auth->id);
  217. }
  218. })
  219. ->order($sort, $order)
  220. ->paginate($limit);
  221. return MobileOrderExport::export($list,$this->admin());
  222. }
  223. if ($this->request->isAjax()) {
  224. //如果发送的来源是Selectpage,则转发到Selectpage
  225. if ($this->request->request('keyField')) {
  226. return $this->selectpage();
  227. }
  228. // status需要组装的搜索条件
  229. $filter = json_decode($this->request->get('filter'),true);
  230. $op = json_decode($this->request->get('op'),true);
  231. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  232. if($this->admin('is_manager')){
  233. // 注销关联 ,'refund_log.refunduser'
  234. $relation=['operation','operation.admin','admin','admin.admin','refund_log',
  235. 'sub_remark','sub_remark.admin','anchor','sub_anchor','sub_anchor.mobileAnchor','proxy','payment'];
  236. }else{
  237. // 注销关联 ,'refund_log.refunduser'
  238. $relation=['admin','admin.admin','refund_log','sub_remark'=>function(Query $query){
  239. $query->where('sub_admin_id',$this->auth->id);
  240. },'sub_remark.admin','anchor','sub_anchor','sub_anchor.mobileAnchor','proxy','payment'];
  241. }
  242. $list = $this->model
  243. ->where($where)
  244. ->where($map)
  245. ->where('type',1)
  246. // ->where(['platform_source'=>'敢探号','api_goods_id'=>123564678989,'or'])
  247. ->where(function($q) {
  248. //供应商
  249. if($this->proxy){
  250. return $q->where('mobile_order.admin_id', $this->auth->id);
  251. }
  252. })
  253. ->where(function ($q){
  254. $q->whereOr('platform_source','敢探号')->whereOr('api_goods_id','123564678989');
  255. })
  256. // ->whereOr('platform_source','敢探号')
  257. ->order($sort, $order)
  258. ->paginate($limit);
  259. // print_r($list->getLastSql());
  260. $upStatus=[];
  261. if($list->items()) {
  262. $upStatus = \app\admin\model\Mobile::whereIn('id', array_column($list->items(), 'mobile_id'))->where('status', '<>',0)->column('id');
  263. }
  264. foreach ($list as $row) {
  265. $row['pay_link']=h5_link("oder-detail/{$row['id']}");
  266. $row->append(['phone_order_count']);
  267. $row['mobile_can_up']=!in_array($row['mobile_id'],$upStatus);
  268. if($row['s_id']) {
  269. $row['s_name'] = Admin::where('id', $row['s_id'])->value('nickname');
  270. }else{
  271. $row['s_name']='';
  272. }
  273. }
  274. $extend=[];
  275. $amountMap=[];
  276. $amountMap['type']=1;
  277. if(!$this->admin('is_manager')){
  278. $amountMap['s_id']=$this->admin('id');
  279. }
  280. /*$amountBase=$this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_base');
  281. $amountDi=$this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_di');
  282. $extend['total']=bcsub($amountBase,$amountDi);*/
  283. $extend['total']=$this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_base');
  284. $extend['alipay']=$this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type',2)->sum('amount');
  285. $extend['wechat']=$this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type',1)->sum('amount');
  286. $extend['jd']=$this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type',3)->sum('amount');
  287. $extend['dy']=$this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type',4)->sum('amount');
  288. $extend['ks']=$this->model->filterSaled()->where($where)->where($amountMap)->where('pay_type',5)->sum('amount');
  289. $extend['di']=$this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_di');
  290. $extend['profit']=$this->model->filterSaled()->where($where)->where($amountMap)->sum('amount_profit');
  291. $extend['refund']=$this->model->where($where)->where($amountMap)->sum('amount_refund');
  292. // select count(id) as total,status from mobile_order where type=1 GROUP BY status; 角标查询
  293. if (isset($filter['status'])){
  294. unset($filter['status']);
  295. unset($op['status']);
  296. }
  297. $this->request->get(['filter'=>json_encode($filter)]);
  298. $this->request->get(['op'=>json_encode($op)]);
  299. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  300. // if($this->admin('is_manager')){
  301. // $relation=['mobile','anchor'];
  302. // }else{
  303. // $relation=['mobile'];
  304. // }
  305. $status_list = $this->model
  306. //->with($relation)
  307. ->field('count(mobile_order.id) as total,mobile_order.status')
  308. ->where($where)
  309. ->where($map)
  310. ->where('mobile_order.type',1)
  311. ->where(function($q) {
  312. //供应商
  313. if($this->proxy){
  314. return $q->where('mobile_order.admin_id', $this->auth->id)->whereIn('status',[15,17,20,25,60]);
  315. }
  316. })
  317. ->group('mobile_order.status')
  318. ->select();
  319. $status_10_count=0;
  320. if (!$this->proxy) {
  321. // 状态10的数据统计
  322. $status_10_count = $this->model
  323. // ->with($relation)
  324. ->where($where)
  325. ->whereNotIn('status', [0, 50, 90])
  326. ->where($map)
  327. ->where('mobile_order.type', 1)
  328. ->where(function ($q) {
  329. //供应商
  330. if ($this->proxy) {
  331. return $q->where('mobile_order.admin_id', $this->auth->id);
  332. }
  333. })->count();
  334. }
  335. $result = array("total" => $list->total(), "rows" => $list->items(),'extend'=>$extend,'status_list'=>$status_list,'status_10_count'=>$status_10_count);
  336. $result['link']=$this->request->url().'&export=1';
  337. return json($result);
  338. }
  339. // print_r(123);
  340. // exit();
  341. $this->assign('admins',Admin::getAdmins());
  342. $this->assign('subs',Admin::getSubs());
  343. $this->assign('is_proxy',$this->proxy);
  344. $this->assignconfig('is_proxy',$this->proxy);
  345. return $this->view->fetch();
  346. }
  347. protected function buildparams($searchfields = null, $relationSearch = null)
  348. {
  349. $searchfields = is_null($searchfields) ? $this->searchFields : $searchfields;
  350. $relationSearch = is_null($relationSearch) ? $this->relationSearch : $relationSearch;
  351. $search = $this->request->get("search", '');
  352. $filter = $this->request->get("filter", '');
  353. $op = $this->request->get("op", '', 'trim');
  354. $sort = $this->request->get("sort", !empty($this->model) && $this->model->getPk() ? $this->model->getPk() : 'id');
  355. $order = $this->request->get("order", "DESC");
  356. $offset = $this->request->get("offset/d", 0);
  357. $limit = $this->request->get("limit/d", 999999);
  358. //新增自动计算页码
  359. $page = $limit ? intval($offset / $limit) + 1 : 1;
  360. if ($this->request->has("page")) {
  361. $page = $this->request->get("page/d", 1);
  362. }
  363. $this->request->get([config('paginate.var_page') => $page]);
  364. $filter = (array)json_decode($filter, true);
  365. $op = (array)json_decode($op, true);
  366. $filter = $filter ? $filter : [];
  367. $where = [];
  368. $alias = [];
  369. $bind = [];
  370. $name = '';
  371. $aliasName = '';
  372. if (!empty($this->model) && $this->relationSearch) {
  373. $name = $this->model->getTable();
  374. $alias[$name] = Loader::parseName(basename(str_replace('\\', '/', get_class($this->model))));
  375. $aliasName = $alias[$name] . '.';
  376. }
  377. $sortArr = explode(',', $sort);
  378. foreach ($sortArr as $index => & $item) {
  379. $item = stripos($item, ".") === false ? $aliasName . trim($item) : $item;
  380. }
  381. unset($item);
  382. $sort = implode(',', $sortArr);
  383. $adminIds = $this->getDataLimitAdminIds();
  384. if (is_array($adminIds)) {
  385. $where[] = [$aliasName . $this->dataLimitField, 'in', $adminIds];
  386. }
  387. if ($search) {
  388. $searcharr = is_array($searchfields) ? $searchfields : explode(',', $searchfields);
  389. foreach ($searcharr as $k => &$v) {
  390. $v = stripos($v, ".") === false ? $aliasName . $v : $v;
  391. }
  392. unset($v);
  393. $where[] = [implode("|", $searcharr), "LIKE", "%{$search}%"];
  394. }
  395. $index = 0;
  396. foreach ($filter as $k => $v) {
  397. if (!preg_match('/^[a-zA-Z0-9_\-\.]+$/', $k)) {
  398. continue;
  399. }
  400. $sym = isset($op[$k]) ? $op[$k] : '=';
  401. if (stripos($k, ".") === false) {
  402. $k = $aliasName . $k;
  403. }
  404. $v = !is_array($v) ? trim($v) : $v;
  405. $sym = strtoupper(isset($op[$k]) ? $op[$k] : $sym);
  406. //null和空字符串特殊处理
  407. if (!is_array($v)) {
  408. if (in_array(strtoupper($v), ['NULL', 'NOT NULL'])) {
  409. $sym = strtoupper($v);
  410. }
  411. if (in_array($v, ['""', "''"])) {
  412. $v = '';
  413. $sym = '=';
  414. }
  415. }
  416. switch ($sym) {
  417. case '=':
  418. case '<>':
  419. $where[] = [$k, $sym, (string)$v];
  420. break;
  421. case 'LIKE':
  422. case 'NOT LIKE':
  423. case 'LIKE %...%':
  424. case 'NOT LIKE %...%':
  425. $where[] = [$k, trim(str_replace('%...%', '', $sym)), "%{$v}%"];
  426. break;
  427. case '>':
  428. case '>=':
  429. case '<':
  430. case '<=':
  431. $where[] = [$k, $sym, intval($v)];
  432. break;
  433. case 'FINDIN':
  434. case 'FINDINSET':
  435. case 'FIND_IN_SET':
  436. $v = is_array($v) ? $v : explode(',', str_replace(' ', ',', $v));
  437. $findArr = array_values($v);
  438. foreach ($findArr as $idx => $item) {
  439. $bindName = "item_" . $index . "_" . $idx;
  440. $bind[$bindName] = $item;
  441. $where[] = "FIND_IN_SET(:{$bindName}, `" . str_replace('.', '`.`', $k) . "`)";
  442. }
  443. break;
  444. case 'IN':
  445. case 'IN(...)':
  446. case 'NOT IN':
  447. case 'NOT IN(...)':
  448. $where[] = [$k, str_replace('(...)', '', $sym), is_array($v) ? $v : explode(',', $v)];
  449. break;
  450. case 'BETWEEN':
  451. case 'NOT BETWEEN':
  452. $arr = array_slice(explode(',', $v), 0, 2);
  453. if (stripos($v, ',') === false || !array_filter($arr)) {
  454. continue 2;
  455. }
  456. //当出现一边为空时改变操作符
  457. if ($arr[0] === '') {
  458. $sym = $sym == 'BETWEEN' ? '<=' : '>';
  459. $arr = $arr[1];
  460. } elseif ($arr[1] === '') {
  461. $sym = $sym == 'BETWEEN' ? '>=' : '<';
  462. $arr = $arr[0];
  463. }
  464. $where[] = [$k, $sym, $arr];
  465. break;
  466. case 'RANGE':
  467. case 'NOT RANGE':
  468. $v = str_replace(' - ', ',', $v);
  469. $arr = array_slice(explode(',', $v), 0, 2);
  470. if (stripos($v, ',') === false || !array_filter($arr)) {
  471. continue 2;
  472. }
  473. //当出现一边为空时改变操作符
  474. if ($arr[0] === '') {
  475. $sym = $sym == 'RANGE' ? '<=' : '>';
  476. $arr = $arr[1];
  477. } elseif ($arr[1] === '') {
  478. $sym = $sym == 'RANGE' ? '>=' : '<';
  479. $arr = $arr[0];
  480. }
  481. $tableArr = explode('.', $k);
  482. if (count($tableArr) > 1 && $tableArr[0] != $name && !in_array($tableArr[0], $alias) && !empty($this->model)) {
  483. //修复关联模型下时间无法搜索的BUG
  484. $relation = Loader::parseName($tableArr[0], 1, false);
  485. $alias[$this->model->$relation()->getTable()] = $tableArr[0];
  486. }
  487. $where[] = [$k, str_replace('RANGE', 'BETWEEN', $sym) . ' TIME', $arr];
  488. break;
  489. case 'NULL':
  490. case 'IS NULL':
  491. case 'NOT NULL':
  492. case 'IS NOT NULL':
  493. $where[] = [$k, strtolower(str_replace('IS ', '', $sym))];
  494. break;
  495. default:
  496. break;
  497. }
  498. $index++;
  499. }
  500. if (!empty($this->model)) {
  501. $this->model->alias($alias);
  502. }
  503. $model = $this->model;
  504. $where = function (Query $query) use ($where, $alias, $bind, &$model) {
  505. if (!empty($model)) {
  506. $model->alias($alias);
  507. $model->bind($bind);
  508. }
  509. foreach ($where as $k => $v) {
  510. if (is_array($v)) {
  511. if($v[0]=='rules.rule'){
  512. $query->whereExists("select * from mobile_order_rules where mobile_order_rules.mobile_order_id=mobile_order.id and rule='{$v[2]}'");
  513. continue;
  514. }elseif ($v[0]=='admin.admin_id'){
  515. $query->whereExists("select * from mobile_order_admin where mobile_order_admin.mobile_order_id=mobile_order.id and admin_id={$v[2]}");
  516. continue;
  517. }elseif ($v[0]=='mobile_order.sub_mobile_anchor_id'){
  518. $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]}");
  519. continue;
  520. }elseif ($v[0]=='status'){
  521. $v[0]='mobile_order.status';
  522. }elseif ($v[0]=='create_time'){
  523. $v[0]='mobile_order.create_time';
  524. }elseif ($v[0]=='update_time'){
  525. $v[0]='mobile_order.update_time';
  526. }elseif ($v[0]=='mobile_order.status' && $v[2]==10){
  527. $query->whereNotIn('status',[0,50,90]);
  528. continue;
  529. }
  530. call_user_func_array([$query, 'where'], $v);
  531. } else {
  532. $query->where($v);
  533. }
  534. }
  535. };
  536. return [$where, $sort, $order, $offset, $limit, $page, $alias, $bind];
  537. }
  538. /**
  539. * 添加
  540. */
  541. public function add()
  542. {
  543. if ($this->request->isPost()) {
  544. $params = $this->request->post("row/a");
  545. if ($params) {
  546. $params = $this->preExcludeFields($params);
  547. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  548. $params[$this->dataLimitField] = $this->auth->id;
  549. }
  550. $result = false;
  551. Db::startTrans();
  552. try {
  553. //是否采用模型验证
  554. if ($this->modelValidate) {
  555. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  556. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
  557. $this->model->validateFailException(true)->validate($validate);
  558. }
  559. // $params['city'] = implode('/', Area::getTreeId($params['city']));
  560. $params['city'] = implode(',',Area::getTreeId(explode('/',$params['city'])[2]));
  561. $params['status'] = 10;
  562. $result = MobileOrder::insert($params);
  563. // exit();
  564. // $result = $this->model->allowField(true)->save($params);
  565. Db::commit();
  566. } catch (ValidateException $e) {
  567. Db::rollback();
  568. $this->error($e->getMessage());
  569. } catch (PDOException $e) {
  570. Db::rollback();
  571. $this->error($e->getMessage());
  572. } catch (Exception $e) {
  573. Db::rollback();
  574. throw $e;
  575. //$this->error($e->getMessage());
  576. }
  577. if ($result !== false) {
  578. $this->success();
  579. } else {
  580. $this->error(__('No rows were inserted'));
  581. }
  582. }
  583. $this->error(__('Parameter %s can not be empty', ''));
  584. }
  585. return $this->view->fetch();
  586. }
  587. public function edit($ids = null)
  588. {
  589. $model=$this->model->find($ids);
  590. $originStatus=$model['status'];
  591. $row=$model->toArray();
  592. if($this->request->isGet()){
  593. $row['address']=$model->originData()['address'];
  594. $row['city']=\app\common\model\Area::getNameString($row['city'],'/');
  595. $this->assign('row',$row);
  596. return view();
  597. }else{
  598. $field=[
  599. 'name',
  600. 'phone',
  601. 'id_no',
  602. 'address',
  603. 'trans_no',
  604. 'trans_id',
  605. 'status',
  606. 'city',
  607. ];
  608. $data=input('row/a');
  609. Db::startTrans();
  610. if(isset($data['city'])){
  611. $data['city']=\app\common\model\Area::whereIn('name|shortname',str_replace('/',',',$data['city']))->column('id');
  612. }
  613. $this->validate($data,[
  614. 'status'=>'in:'.implode(',',array_keys(\app\common\model\MobileOrder::$status))
  615. ]);
  616. foreach ($data as $key=>$value){
  617. if(in_array($key,$field)) {
  618. $model[$key] = $value;
  619. }
  620. }
  621. MobileOrderAdmin::add($model,$originStatus!=$model['status'],$this->auth->id);
  622. $model->save();
  623. // 只有未推送过, 并且产品信息已绑定的订单才推送
  624. if ($model->is_push_zop == 0 && $model->api_goods_id > 0) {
  625. ZopOrderService::push($ids);
  626. }
  627. Db::commit();
  628. $this->success('');
  629. }
  630. }
  631. public function refund($ids){
  632. $model=$this->model->find($ids);
  633. $this->assign('row',$model);
  634. if($this->request->isGet()){
  635. return view();
  636. }else{
  637. $data=input('row/a');
  638. $this->validate($data,RefundValidate::class);
  639. Db::startTrans();
  640. $model=$this->model->where('id',$ids)->lock(true)->findOrFail();
  641. $model->makeRefund('admin',$this->admin(),$data);
  642. Db::commit();
  643. $this->success();
  644. }
  645. }
  646. public function status(){
  647. return \app\common\model\MobileOrder::$status;
  648. }
  649. public function pay_type(){
  650. return \app\common\model\MobileOrder::$payTypes;
  651. }
  652. public function add_operation(){
  653. $id=input('ids/d');
  654. if($this->request->isGet()){
  655. $this->assign('shortcut',ShortcutContent::getList());
  656. return view();
  657. }else{
  658. $content=input('row.content');
  659. $this->validate(compact('content'),[
  660. 'content'=>'max:250',
  661. ]);
  662. MobileOrderOperation::create([
  663. 'mobile_order_id'=>$id,
  664. 'admin_id'=>$this->auth->id,
  665. 'content'=>$content,
  666. ]);
  667. $this->success();
  668. }
  669. }
  670. public function send(){
  671. $id=input('ids/d');
  672. if($this->request->isGet()){
  673. $row=$this->model->find($id);
  674. $this->assign('row',$row);
  675. return view();
  676. }else{
  677. $data=input('row/a');
  678. Db::startTrans();
  679. $row=$this->model->lock(true)->findOrFail($id);
  680. $row->dealSend($data['trans_no'],$data['trans_id']);
  681. Db::commit();
  682. $this->success();
  683. }
  684. }
  685. #展示开卡资料
  686. public function show_open_data($id){
  687. $row=$this->model->find($id);
  688. return view('',compact('row'));
  689. }
  690. public function see_logistics($ids){
  691. $order=$this->model->find($ids);
  692. $data=TransferCheck::instance()->setNo($order['trans_no'])->setName($order['name'])->setPhone($order['phone'])->setLogisticsCompany(LogisticsCompany::get($order['trans_id']))->get();
  693. $this->assign('data',$data);
  694. return view('mobile_order/see_logistics');
  695. }
  696. #备注
  697. public function sub_remark($id){
  698. $order=$this->model->find($id);
  699. if($this->admin('is_sub') && $this->auth->id!=$order['s_id']){
  700. $this->error('操作失败(a)');
  701. }
  702. if($this->request->isGet()){
  703. return view();
  704. }else{
  705. $data=input('row/a');
  706. $this->validate($data,[
  707. 'content|备注'=>['require','max:50'],
  708. ]);
  709. $order->subRemark()->save([
  710. 'sub_admin_id'=>$this->auth->id,
  711. 'content'=>$data['content'],
  712. ]);
  713. $this->success();
  714. }
  715. }
  716. public function set_anchor($ids){
  717. $order=$this->model->find($ids);
  718. if(!$order){
  719. $this->error('订单不存在');
  720. }
  721. if($this->request->isGet()){
  722. if($this->admin('is_manager')){
  723. $anchor_id=$order['mobile_anchor_id'];
  724. $this->assign('mobile_anchor_id',$anchor_id);
  725. }
  726. $sub_anchor_id=$order->subAnchor()->value('sub_mobile_anchor_id');
  727. $this->assign('sub_mobile_anchor_id',$sub_anchor_id);
  728. $this->assign('order',$order);
  729. return view('sub_anchor');
  730. }else{
  731. $data=input('row/a');
  732. if(!empty($data['mobile_anchor_id']) && !\app\admin\model\MobileAnchor::find($data['mobile_anchor_id'])){
  733. $this->error('主播不存在');
  734. }
  735. if(!empty($data['sub_mobile_anchor_id']) && !\app\admin\model\MobileAnchor::find($data['sub_mobile_anchor_id'])){
  736. $this->error('主播不存在');
  737. }
  738. if($this->admin('is_manager')){
  739. if(!empty($data['mobile_anchor_id'])){
  740. $order['mobile_anchor_id']=$data['mobile_anchor_id'];
  741. if(!$order->save()){
  742. $this->error('保存失败');
  743. }
  744. }
  745. if(!empty($data['sub_mobile_anchor_id'])){
  746. MobileOrderSubAnchor::sync($order,$data['sub_mobile_anchor_id']);
  747. }
  748. }elseif ($this->admin('is_sub') && $this->admin('id')==$order['s_id']){
  749. if(!empty($data['sub_mobile_anchor_id'])){
  750. if($order->subAnchor()->find()){
  751. $this->error('无法再次设置');
  752. }
  753. MobileOrderSubAnchor::sync($order,$data['sub_mobile_anchor_id']);
  754. }
  755. }
  756. $this->success();
  757. }
  758. }
  759. public function mobile_up($ids){
  760. $order=$this->model->find($ids);
  761. $mobile=$order->mobile()->find();
  762. if($this->request->isGet()) {
  763. $this->assign('row', $mobile);
  764. $this->assign('disabled', 1);
  765. $this->assign('otherSubDisabled', 1);
  766. return view();
  767. }else{
  768. if($mobile){
  769. $mobile->again_sell();
  770. }
  771. $this->success();
  772. }
  773. }
  774. public function refund_log(){
  775. if($this->request->isAjax()){
  776. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  777. $this->relationSearch=true;
  778. /*$limit=input('limit',10);
  779. $offset=input('offset',0);*/
  780. $filter=json_decode(input('filter'),true)?:[];
  781. $map=[];
  782. if(!empty($filter['od.mobile_id'])){
  783. $map['mobile_order.mobile_id']=['eq',$filter['od.mobile_id']];
  784. }
  785. if(!empty($filter['od.s_id'])){
  786. $map['mobile_order.s_id']=['eq',$filter['od.s_id']];
  787. }
  788. if(isset($filter['pass'])){
  789. $map['pass']=['eq',$filter['pass']];
  790. }
  791. if(!empty($filter['od.no'])){
  792. $map['mobile_order.no']=['like',"%{$filter['od.no']}%"];
  793. }
  794. if(!empty($filter['od.order_no'])){
  795. $map['mobile_order.order_no']=['like',"%{$filter['od.order_no']}%"];
  796. }
  797. if(!empty($filter['reason'])){
  798. $map['reason']=['like',"%{$filter['reason']}%"];
  799. }
  800. if(!empty($filter['admin.nickname'])){
  801. $map['admin.nickname']=['like',"%{$filter['admin.nickname']}%"];
  802. }
  803. if(!empty($filter['od.amount'])){
  804. $amountArr=explode(',',$filter['od.amount']);
  805. if(empty($amountArr[0])){
  806. $amountArr[0]=0;
  807. }
  808. if(empty($amountArr[1])){
  809. $amountArr[1]=10000000000000;
  810. }
  811. $map['mobile_order.amount']=['between',$amountArr];
  812. }
  813. if(!empty($filter['amount_backend'])){
  814. $amountArr=explode(',',$filter['amount_backend']);
  815. if(empty($amountArr[0])){
  816. $amountArr[0]=0;
  817. }
  818. if(empty($amountArr[1])){
  819. $amountArr[1]=10000000000000;
  820. }
  821. $map['amount_backend']=['between',$amountArr];
  822. }
  823. $log=(new MobileOrderRefundLog)->getTable();
  824. if(!empty($filter['create_time'])){
  825. list($s,$e)=explode(' - ',$filter['create_time']);
  826. $map["{$log}.create_time"]=['between',[strtotime($s),strtotime($e)]];
  827. }
  828. //$page=$offset/$limit+1;
  829. $data=MobileOrderRefundLog::where($map)
  830. ->where(function (Query $query){
  831. if(!$this->admin('is_manager')){
  832. $query->where('mobile_order.s_id',$this->admin('id'));
  833. }
  834. })
  835. ->with(['od','admin'])
  836. ->order('id','desc')
  837. ->paginate($limit,false);
  838. /* foreach ($data as $model){
  839. $model->setAttr('s_name',Admin::where('id',$model['od']['s_id'])->value('nickname'));
  840. }*/
  841. return json([
  842. 'total'=>$data->total(),
  843. 'rows'=>$data->items(),
  844. 'filter'=>$filter,
  845. ]);
  846. }
  847. return $this->fetch();
  848. }
  849. #dy结算
  850. public function dy_settle(){
  851. $id=input('ids');
  852. if(empty($id)){
  853. $this->error('id必须');
  854. }
  855. Db::startTrans();
  856. $order=$this->model->lock(true)->find($id);
  857. if(!$order){
  858. $this->error('订单不存在');
  859. }
  860. $order->dySettle();
  861. Db::commit();
  862. $this->success();
  863. }
  864. public function aaa(){
  865. $admin = admin::where('proxy',0)
  866. ->where('sub',1)
  867. ->field(['id','nickname'])
  868. ->select();
  869. return "$admin";
  870. }
  871. /**
  872. * 重新提交
  873. *
  874. * @return void
  875. */
  876. public function resubmit()
  877. {
  878. $id=input('ids');
  879. if(empty($id)){
  880. $this->error('id必须');
  881. }
  882. $result = ZopOrderService::push($id);
  883. if ($result['code'] != 0) {
  884. $this->error($result['message']);
  885. }
  886. $this->success();
  887. }
  888. }