Produceorder.php 41 KB

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