refill_order_manual.php 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695
  1. <?php
  2. require_once(BASE_HELPER_PATH . '/refill/util.php');
  3. require_once(BASE_HELPER_PATH . '/algorithm.php');
  4. use refill\util;
  5. use refill;
  6. class refill_order_manualControl extends SystemControl
  7. {
  8. public function __construct()
  9. {
  10. parent::__construct();
  11. }
  12. public function indexOp()
  13. {
  14. $model_refill_order = Model('refill_order');
  15. $condition['inner_status'] = 0;
  16. $order_list = [];
  17. if (!empty($_GET['order_sn'])) {
  18. $condition['refill_order.order_sn'] = $_GET['order_sn'];
  19. $merchant_list = $this->merchants();
  20. $order_list = $model_refill_order->getMerchantOrderList($condition, 50,0, 'refill_order.*,vr_order.order_state', 'refill_order.order_time desc','',true);
  21. $order_list = $this->OrderDataFormat($order_list, $merchant_list);
  22. }
  23. Tpl::output('order_list', $order_list);
  24. Tpl::showpage('refill.order.manual.index');
  25. }
  26. public function notify_manual_merchantOp()
  27. {
  28. $order_id = $_GET['order_id'];
  29. $type = $_GET['type'];
  30. $mod_order = Model('vr_order');
  31. $order_info = $mod_order->getOrderInfo(['order_id' => $order_id]);
  32. $mod_refill = Model('refill_order');
  33. $refill_info = Model('refill_order')->getOrderInfo(['order_id' => $order_id,'inner_status' => 0,'is_retrying' => 0]);
  34. if(empty($refill_info) || empty($order_info)) {
  35. showMessage('订单不存在,或不符合条件', '');
  36. }
  37. $fetch_order_ids = $this->check_fetch_order($order_id);
  38. if (in_array($order_id, $fetch_order_ids)) {
  39. showMessage('此订单不可手动操作,请联系抢单人员操作!');
  40. }
  41. $logic_vr_order = Logic("vr_order");
  42. if ($type == 'success') {
  43. $logic_vr_order->changeOrderStateSuccess($order_id,true);
  44. } elseif ($type == 'cancel') {
  45. $logic_vr_order->changeOrderStateCancel($order_info, '', "充值失败", true, true);
  46. } else {
  47. showMessage('手动操作类型错误', 'index.php?act=refill_order&op=index');
  48. }
  49. $this->manual_record([$refill_info], $type, $order_id, '手动强制处理');
  50. $this->log("手动强制处理,订单号:{$order_info['order_sn']}", 1);
  51. if($refill_info['notify_time'] == 0) {
  52. $mod_refill->edit($order_id, ['notify_state' =>1, 'notify_time' => time()]);
  53. }
  54. util::pop_queue_order($refill_info['mchid'],$refill_info['mch_order']);
  55. QueueClient::push("NotifyMerchantComplete", ['order_id' => $order_id, 'manual' => true]);
  56. showMessage('操作成功');
  57. }
  58. public function refill_order_batchOp()
  59. {
  60. $model_refill_order = Model('refill_order');
  61. $condition = [];
  62. $orders = [];
  63. $_GET['query_start_time'] = $_GET['query_start_time'] ?? date("Y-m-d 00:00:00");
  64. if (in_array($_GET['order_state'], ['0', '10', '20', '30', '40']))
  65. {
  66. $condition['vr_order.order_state'] = $_GET['order_state'];
  67. }
  68. if (!empty($_GET['mchid'])) {
  69. $condition['refill_order.mchid'] = $_GET['mchid'];
  70. }
  71. if (!empty($_GET['store_id'])) {
  72. $condition['vr_order.store_id'] = $_GET['store_id'];
  73. }
  74. //批量查询,二者都有,以卡号为主
  75. if(!empty($_GET['card_nos'])) {
  76. $card_nos = trim($_GET['card_nos'], ',');
  77. $condition['refill_order.card_no'] = ['in', $card_nos];
  78. } elseif (!empty($_GET['mch_orders'])) {
  79. $mch_orders = rtrim($_GET['mch_orders'], ',');
  80. $condition['refill_order.mch_order'] = ['in', $mch_orders];
  81. }
  82. if(!empty($_GET['order_sns'])) {
  83. $order_sns = trim($_GET['order_sns'], ',');
  84. $condition['refill_order.order_sn'] = ['in', $order_sns];
  85. }
  86. if (!empty($_GET['card_type'])) {
  87. if (in_array($_GET['card_type'], ['1', '2', '4', '5', '6', '7'])) {
  88. $condition['refill_order.card_type'] = intval($_GET['card_type']);
  89. }
  90. }
  91. $merchant_list = $this->merchants();
  92. $provider_list = $this->providers();
  93. if(!empty($condition)) {
  94. $condition['refill_order.inner_status'] = 0;
  95. $start_unixtime = intval(strtotime($_GET['query_start_time']));
  96. $end_unixtime = intval(strtotime($_GET['query_end_time']));
  97. if ($start_unixtime > 0 && $end_unixtime > $start_unixtime) {
  98. $condition['refill_order.order_time'] = [['egt', $start_unixtime], ['lt', $end_unixtime], 'and'];
  99. $condition['vr_order.add_time'] = [['egt', $start_unixtime],['lt', $end_unixtime], 'and'];
  100. } elseif ($start_unixtime > 0) {
  101. $condition['refill_order.order_time'] = ['egt', $start_unixtime];
  102. $condition['vr_order.add_time'] = ['egt', $start_unixtime];
  103. } elseif ($end_unixtime > 0) {
  104. $condition['refill_order.order_time'] = ['lt', $end_unixtime];
  105. } else {
  106. $start = strtotime(date('Y-m-d', time()));
  107. $condition['refill_order.order_time'] = ['egt', $start];
  108. $condition['vr_order.add_time'] = ['egt', $start];
  109. }
  110. $orders = $model_refill_order->getMerchantOrderList($condition, 400, 0,'refill_order.*,vr_order.order_state', 'refill_order.channel_name DESC ');
  111. $orders = $this->OrderDataFormat($orders, $merchant_list);
  112. $order_ids = array_column($orders,'order_id');
  113. $order_ids = $this->unique_array($order_ids);
  114. $refill_buyback_model = Model('refill_buyback');
  115. $buybacks = $refill_buyback_model->getBuyBackList(['order_id' => ['in',$order_ids], 'manual_type' => 'buyback']);
  116. $buyback_ids = array_column($buybacks, 'order_id');
  117. $buyback_ids = $this->int_array($buyback_ids);
  118. $buyback_ids = $this->unique_array($buyback_ids);
  119. foreach ($orders as $key => $order)
  120. {
  121. if($order['order_state'] != ORDER_STATE_SUCCESS) {
  122. $order[$key]['buyback'] = false;
  123. continue;
  124. }
  125. $order_id = intval($order['order_id']);
  126. if(algorithm::binary_search($buyback_ids,$order_id)) {
  127. $orders[$key]['buyback'] = true;
  128. }else{
  129. $orders[$key]['buyback'] = false;
  130. }
  131. }
  132. }
  133. Tpl::output('merchant_list', $merchant_list);
  134. Tpl::output('provider_list', $provider_list);
  135. Tpl::output('order_list', $orders);
  136. Tpl::output('show_page', $model_refill_order->showpage());
  137. Tpl::showpage('refill.order.batch');
  138. }
  139. public function refill_order_batch_disposeOp()
  140. {
  141. $oid_reader = function ($sids) {
  142. $sids = explode(',',$sids);
  143. $ids = $this->int_array($sids);
  144. return $this->unique_array($ids);
  145. };
  146. $oper_type = $_GET['type'];
  147. $order_ids = $oid_reader($_GET['order_id']);
  148. $cond = [];
  149. $cond['refill_order.order_id'] = ['in',$order_ids];
  150. $cond['refill_order.inner_status'] = 0;
  151. $cond['refill_order.is_retrying'] = 0;
  152. if ($oper_type == 'success' || $oper_type == 'cancel') {
  153. $cond['vr_order.order_state'] = ORDER_STATE_SEND;
  154. } elseif ($oper_type == 'buyback') {
  155. $cond['vr_order.order_state'] = ORDER_STATE_SUCCESS;
  156. }
  157. $model_refill_order = Model('refill_order');
  158. $orders = $model_refill_order->getMerchantOrderList($cond,'',0,'refill_order.*,vr_order.order_state,vr_order.buyer_id,vr_order.store_id','refill_order.order_id desc',2000);
  159. if(empty($orders)) {
  160. showMessage('操作数据为空');
  161. }
  162. if($oper_type == 'notify')
  163. {
  164. foreach ($orders as $order)
  165. {
  166. if ($order['order_state'] == ORDER_STATE_SEND) {
  167. QueueClient::push("QueryRefillState", ['order_id' => $order['order_id']]);
  168. } else {
  169. QueueClient::push("NotifyMerchantComplete", ['order_id' => $order['order_id'], 'manual' => true]);
  170. }
  171. }
  172. }
  173. elseif (in_array($oper_type, ['success', 'cancel', 'buyback'])) {
  174. $this->manual_record($orders, $oper_type, $order_ids, $_GET);
  175. }
  176. else {
  177. showMessage('手动操作类型错误');
  178. }
  179. showMessage('操作成功');
  180. }
  181. private function manual_record($orders, $oper_type, $order_ids, $input)
  182. {
  183. $admininfo = $this->getAdminInfo();
  184. $bz = empty($input['bz']) ? '' : $input['bz'];
  185. $buyback_ids = function ($order_ids, $oper_type) {
  186. $buybacks = Model('refill_buyback')->getBuyBackList(['order_id' => ['in', $order_ids], 'manual_type' => $oper_type]);
  187. $buyback_ids = array_column($buybacks, 'order_id');
  188. $buyback_ids = $this->int_array($buyback_ids);
  189. return $this->unique_array($buyback_ids);
  190. };
  191. $format_item = function ($order, $oper_type, $admininfo, $cur_time, $bz)
  192. {
  193. return ['order_id' => $order['order_id'],
  194. 'order_sn' => $order['order_sn'],
  195. 'order_time' => $order['order_time'],
  196. 'notify_time' => $order['notify_time'],
  197. 'manual_type' => $oper_type,
  198. 'admin_id' => $admininfo['id'],
  199. 'admin_name' => $admininfo['name'],
  200. 'act_time' => $cur_time,
  201. 'bz' => $bz];
  202. };
  203. if($oper_type == 'buyback')
  204. {
  205. $merge = $input['merge'];
  206. $mchids = array_column($orders, 'mchid');
  207. $mchids = $this->unique_array($mchids);
  208. if($merge > 0 && count($mchids) > 1) {
  209. showMessage('下游机构多家时,返销记录不可合并');
  210. }
  211. $merchant_list = $this->merchants(['mchid' => ['in', $mchids]]);
  212. foreach ($merchant_list as $merchant) {
  213. $merchants[$merchant['mchid']] = $merchant;
  214. }
  215. $store_ids = array_column($orders, 'store_id');
  216. $store_ids = $this->unique_array($store_ids);
  217. if($merge > 0 && count($store_ids) > 1) {
  218. showMessage('上游通道多家时,返销记录不可合并');
  219. }
  220. $provider_list = $this->providers(['refill_provider.store_id' => ['in', $store_ids]]);
  221. foreach ($provider_list as $provider) {
  222. $providers[$provider['store_id']] = $provider;
  223. }
  224. }
  225. $mod_buyback = Model('refill_buyback');
  226. $buyback_ids = $buyback_ids($order_ids, $oper_type);
  227. $fetch_order_ids = $this->check_fetch_order($order_ids);
  228. $fetch_order_ids = $this->unique_array($fetch_order_ids);
  229. $cur_time = time();
  230. if($oper_type == 'buyback')
  231. {
  232. $refill_evidence = [];
  233. $provider_amount = [];
  234. foreach ($orders as $order)
  235. {
  236. $order_id = intval($order['order_id']);
  237. if (algorithm::binary_search($buyback_ids, $order_id)) continue;
  238. $mchid = $order['mchid'];
  239. $merchant_info = $merchants[$mchid];
  240. $buyer_id = $order['buyer_id'];
  241. $store_id = $order['store_id'];
  242. $provider_info = $providers[$store_id];
  243. $account_id = $provider_info['account_id'];
  244. if (empty($mchid) || empty($buyer_id) || empty($store_id) || empty($account_id)) {
  245. Log::record("refill order manual err order_id:{$order_id}, order_sn:{$order['order_sn']}");
  246. continue;
  247. }
  248. try
  249. {
  250. $trans = new trans_wapper($mod_buyback, __METHOD__);
  251. $item = $mod_buyback->getOrder(['order_id' => $order_id, 'manual_type' => $oper_type], '*', true, true);
  252. if(!empty($item)) {
  253. $trans->commit();
  254. continue;
  255. }
  256. $insert_item = $format_item($order, $oper_type, $admininfo, $cur_time, $bz);
  257. $ret = $mod_buyback->insert($insert_item);
  258. if($ret)
  259. {
  260. $merchant_bz = "机构:{$mchid},订单号:{$order['mch_order']},卡号:{$order['card_no']},返销退款:{$order['mch_amount']}";
  261. $this->credit_save_money($order['mch_amount'], 'add', $buyer_id, $merchant_bz);
  262. if ($merge > 0) {
  263. $refill_evidence['mchid'] = $mchid;
  264. if (!array_key_exists('mch_amount', $refill_evidence)) {
  265. $refill_evidence['mch_amount'] = $order['mch_amount'];
  266. $refill_evidence['count'] = 1;
  267. } else {
  268. $refill_evidence['mch_amount'] += $order['mch_amount'];
  269. $refill_evidence['count'] += 1;
  270. }
  271. } else {
  272. $this->ct_refill_evidence(['mch_amount' => $order['mch_amount'], 'bz' => $merchant_bz], $merchant_info, $cur_time, $admininfo);
  273. }
  274. }
  275. if($ret)
  276. {
  277. $provider_bz = "通道:{$store_id},椰子单号:{$order['order_sn']},卡号:{$order['card_no']},返销退款:{$order['channel_amount']}";
  278. $this->credit_save_money($order['channel_amount'], 'add', $account_id, $provider_bz);
  279. if($merge > 0) {
  280. $provider_amount['store_id'] = $store_id;
  281. if (!array_key_exists('channel_amount', $provider_amount)) {
  282. $provider_amount['channel_amount'] = $order['channel_amount'];
  283. $provider_amount['count'] = 1;
  284. } else {
  285. $provider_amount['channel_amount'] += $order['channel_amount'];
  286. $provider_amount['count'] += 1;
  287. }
  288. }else{
  289. $this->ct_provider_amount(['channel_amount' => $order['channel_amount']], $provider_info, $cur_time, $admininfo);
  290. }
  291. }
  292. $trans->commit();
  293. }
  294. catch (Exception $e) {
  295. $trans->rollback();
  296. Log::record("manual_record err: {$e->getMessage()}", Log::ERR);
  297. }
  298. }
  299. if(!empty($refill_evidence)) {
  300. $merchant_bz = "机构:{$mchid},共返销单数:{$refill_evidence['count']},返销退款总金额:{$refill_evidence['mch_amount']}";
  301. $merchant_info = $merchants[$refill_evidence['mchid']];
  302. $this->ct_refill_evidence(['mch_amount' => $refill_evidence['mch_amount'], 'bz' => $merchant_bz], $merchant_info, $cur_time, $admininfo);
  303. }
  304. if(!empty($provider_amount)) {
  305. $provider_info = $providers[$store_id];
  306. $this->ct_provider_amount(['channel_amount' => $provider_amount['channel_amount']], $provider_info, $cur_time, $admininfo);
  307. }
  308. }
  309. else
  310. {
  311. foreach ($orders as $order)
  312. {
  313. $order_id = intval($order['order_id']);
  314. if (algorithm::binary_search($buyback_ids, $order_id)) continue;
  315. if (algorithm::binary_search($fetch_order_ids, $order_id)) continue;
  316. if ($oper_type == 'success') {
  317. refill\util::manual_success($order_id);
  318. } elseif ($oper_type == 'cancel') {
  319. refill\util::manual_cancel($order_id);
  320. } else {
  321. continue;
  322. }
  323. if (empty($bz)) {
  324. $bz = "批量处理页面,手动处理,操作人:{$admininfo['name']}";
  325. }
  326. $insert_item = $format_item($order, $oper_type, $admininfo, $cur_time, $bz);
  327. $ins[] = $insert_item;
  328. }
  329. if(!empty($ins)) {
  330. $mod_buyback->insertAll($ins);
  331. }
  332. }
  333. }
  334. public function set_cancel_orderOp()
  335. {
  336. $mod = Model('refill_order');
  337. $condition = [];
  338. $order_list = [];
  339. $mch_orderData = [];
  340. if(!empty($_GET['mchid'])) {
  341. $condition['mchid'] = $_GET['mchid'];
  342. }
  343. if (!empty($_GET['mch_orders'])) {
  344. $mch_orders = rtrim($_GET['mch_orders'],',');
  345. $condition['mch_order'] = ['in', $mch_orders];
  346. }
  347. $merchant_list = $this->merchants();
  348. if(!empty($condition)) {
  349. $condition['inner_status'] = 0;
  350. $order_list = $mod->getMerchantOrderList($condition, 200, 0,'refill_order.*,vr_order.order_state', 'refill_order.order_time desc');
  351. $order_list = $this->OrderDataFormat($order_list, $merchant_list);
  352. if(empty($mch_orders)) {
  353. $mch_orderData = [];
  354. }else{
  355. $mch_orderData = explode(',',$mch_orders);
  356. }
  357. foreach ($order_list as $order_id => $order) {
  358. $mch_order = $order['mch_order'];
  359. if(in_array($mch_order, $mch_orderData)) {
  360. $key = array_search($mch_order, $mch_orderData);
  361. unset($mch_orderData[$key]);
  362. }
  363. $order_list[$order_id]['can_cancel'] = $this->can_cancel_order($order);
  364. }
  365. }
  366. Tpl::output('noexist_mch_order', $mch_orderData);
  367. Tpl::output('merchant_list', $merchant_list);
  368. Tpl::output('list', $order_list);
  369. Tpl::output('show_page', $mod->showpage());
  370. Tpl::showpage('set.cancel.order');
  371. }
  372. public function order_cancel_disposeOp()
  373. {
  374. $order_ids = $_GET['order_ids'];
  375. $order_ids = explode(',', $order_ids);
  376. $condition['refill_order.order_id'] = ['in',$order_ids];
  377. $order_list = Model('refill_order')->getMerchantOrderList($condition,1000,0,'refill_order.*,vr_order.order_state');
  378. foreach ($order_list as $order) {
  379. if($this->can_cancel_order($order)) {
  380. $mchid = $order['mchid'];
  381. $mch_order = $order['mch_order'];
  382. refill\util::set_cancel_order($mchid,$mch_order);
  383. $this->log("拦截订单,订单号:{$order['order_sn']},商家单号:{$mch_order},机构编码:{$mchid}", 1);
  384. }
  385. }
  386. showMessage('操作成功');
  387. }
  388. private function can_cancel_order($order): bool
  389. {
  390. if($order['order_state'] == ORDER_STATE_SUCCESS) {
  391. return false;
  392. }
  393. if($order['order_state'] == ORDER_STATE_CANCEL && $order['is_retrying'] == 0) {
  394. return false;
  395. }
  396. return true;
  397. }
  398. private function transfer_orderData($input, $condition)
  399. {
  400. $mod = Model('refill_order');
  401. $cur_time = time();
  402. $start_day = $cur_time - 86400 * 2;
  403. if (!empty($input['mch_orders'])) {
  404. $mch_orders = rtrim($input['mch_orders'],',');
  405. $condition['refill_order.mch_order'] = ['in', $mch_orders];
  406. }
  407. if (!empty($input['card_nos'])) {
  408. $card_nos = rtrim($input['card_nos'],',');
  409. $condition['refill_order.card_no'] = ['in', $card_nos];
  410. }
  411. $merchant_list = $this->merchants();
  412. $transfer = new refill\transfer();
  413. $mMchid2Infos = $transfer->transfers();
  414. $mchids = [];
  415. foreach ($mMchid2Infos as $mch) {
  416. $mchids[] = $mch['transfer_mchid'];
  417. }
  418. // $mchids[] = 1092; //for test
  419. $condition['inner_status'] = 0;
  420. if(!empty($mchids)) {
  421. $condition['mchid'] = ['in', $mchids];
  422. }
  423. else {
  424. return [];
  425. }
  426. $condition['vr_order.add_time&vr_order.add_time'] = ['_multi' => true,
  427. ['egt', $start_day],
  428. ['lt', $cur_time]];
  429. $condition['refill_order.order_time&refill_order.order_time'] = ['_multi' => true,
  430. ['egt', $start_day],
  431. ['lt', $cur_time]];
  432. $order_list = $mod->getMerchantOrderList($condition, 200, 0,'refill_order.*,vr_order.order_state', 'refill_order.order_time desc');
  433. return $this->OrderDataFormat($order_list, $merchant_list);
  434. }
  435. public function transfer_orderOp()
  436. {
  437. $condition['vr_order.order_state'] = ORDER_STATE_SEND;
  438. $order_list = $this->transfer_orderData($_GET, $condition);
  439. Tpl::output('list', $order_list);
  440. Tpl::output('show_page', Model('')->showpage());
  441. Tpl::showpage('transfer.order');
  442. }
  443. public function transfer_order_disposeOp()
  444. {
  445. $type = $_GET['type'];
  446. $order_ids = $_GET['order_ids'];
  447. $order_ids = explode(',', $order_ids);
  448. $condition['refill_order.order_id'] = ['in',$order_ids];
  449. $order_list = Model('refill_order')->getMerchantOrderList($condition,1000,0,'refill_order.mchid,refill_order.mch_order,refill_order.order_id');
  450. foreach ($order_list as $order)
  451. {
  452. $mchid = $order['mchid'];
  453. $mch_order = $order['mch_order'];
  454. $order_id = $order['order_id'];
  455. if ($type === 'set_next_order') {
  456. refill\util::set_next_order($mchid, $mch_order);
  457. $this->log("预回调订单转快充,订单号:{$order['order_sn']},商家单号:{$mch_order},机构编码:{$mchid}");
  458. }
  459. elseif ($type === 'cancel_order_retry') {
  460. [$succ,$err] = refill\util::retry_canceled_order($order_id);
  461. $this->log("预回调订单失败补快充,订单号:{$order['order_sn']},商家单号:{$mch_order},机构编码:{$mchid} err:{$err}");
  462. } else {
  463. continue;
  464. }
  465. }
  466. showMessage('操作成功');
  467. }
  468. public function transfer_order_rechargeOp()
  469. {
  470. $condition['vr_order.order_state'] = ORDER_STATE_CANCEL;
  471. $order_list = $this->transfer_orderData($_GET, $condition);
  472. Tpl::output('list', $order_list);
  473. Tpl::output('show_page', Model('')->showpage());
  474. Tpl::showpage('transfer.order.recharge');
  475. }
  476. public function refill_buybackOp()
  477. {
  478. $model_refill_order = Model('refill_order');
  479. $_GET['query_start_time'] = $_GET['query_start_time'] ?? date("Y-m-d 00:00:00");
  480. if (!empty($_GET['mchid'])) {
  481. $condition['refill_order.mchid'] = $_GET['mchid'];
  482. }
  483. if (!empty($_GET['store_id'])) {
  484. $condition['vr_order.store_id'] = $_GET['store_id'];
  485. }
  486. if(!empty($_GET['card_nos'])) {
  487. $card_nos = trim($_GET['card_nos'], ',');
  488. $condition['refill_order.card_no'] = ['in', $card_nos];
  489. }
  490. if(!empty($_GET['order_sns'])) {
  491. $order_sns = trim($_GET['order_sns'], ',');
  492. $condition['refill_order.order_sn'] = ['in', $order_sns];
  493. }
  494. if(!empty($_GET['manual_type']))
  495. {
  496. $condition['manual_type'] = $_GET['manual_type'];
  497. }
  498. $start = intval(strtotime($_GET['query_start_time']));
  499. $end = intval(strtotime($_GET['query_end_time']));
  500. if ($end <= 0) {
  501. $end = time();
  502. }
  503. $condition['refill_buyback.act_time'] = [['egt', $start], ['lt', $end], 'and'];
  504. $condition['inner_status'] = 0;
  505. if(!empty($_GET['export']))
  506. {
  507. $this->Export($condition);
  508. return;
  509. }
  510. $merchant_list = $this->merchants();
  511. $order_list = $model_refill_order->getBuyBackList($condition, 200, 'refill_buyback.*,refill_order.*,vr_order.order_state', 'refill_buyback.act_time desc','',true);
  512. $order_list = $this->OrderDataFormat($order_list, $merchant_list);
  513. $provider_list = $this->providers();
  514. Tpl::output('provider_list', $provider_list);
  515. Tpl::output('merchant_list', $merchant_list);
  516. Tpl::output('order_list', $order_list);
  517. Tpl::output('show_page', $model_refill_order->showpage());
  518. Tpl::showpage('refill.buyback.order');
  519. }
  520. private function int_array($sids): array
  521. {
  522. $result = [];
  523. foreach ($sids as $sid) {
  524. $result[] = intval($sid);
  525. }
  526. return $result;
  527. }
  528. private function unique_array($ids): array
  529. {
  530. $ids = array_unique($ids);
  531. sort($ids);
  532. return $ids;
  533. }
  534. private function ct_provider_amount($params, $provider_info, $cur_time, $admininfo)
  535. {
  536. $input['provider_id'] = $provider_info['provider_id'];
  537. $input['memeber_id'] = $provider_info['account_id'];
  538. $input['amount'] = $params['channel_amount'];
  539. $input['operation'] = $admininfo['name'];
  540. $input['add_time'] = $cur_time;
  541. return Model('provider_amount')->addAmount($input);
  542. }
  543. private function ct_refill_evidence($params, $merchant_info, $cur_time, $admininfo)
  544. {
  545. $mem_info = Model('member')->getMemberInfo(['member_id' => $merchant_info['admin_id']], '*', true);
  546. $input['mchid'] = $merchant_info['mchid'];
  547. $input['mch_name'] = $merchant_info['name'];
  548. $input['member_id'] = $merchant_info['admin_id'];
  549. $input['amount'] = $params['mch_amount'];
  550. $input['bank_username'] = '椰子';
  551. $input['bank_name'] = '椰子退款';
  552. $input['bz'] = $params['bz'];
  553. $input['voucher_name'] = '/';
  554. $input['status'] = 2;
  555. $input['is_operation'] = 2;
  556. $input['add_time'] = $input['check_time'] = $cur_time;
  557. $input['after_available'] = ncPriceFormat($mem_info['available_predeposit'] + $params['mch_amount']);
  558. $input['admin_name'] = $admininfo['name'];
  559. $input['admin_id'] = $admininfo['id'];
  560. $input['add_type'] = 3;
  561. return Model('merchant')->addRefillEvidence($input);
  562. }
  563. private function Export($cond)
  564. {
  565. $result = Model('refill_order')->getAllBuyBackOrders($cond);
  566. $this->createExcel($result);
  567. }
  568. private function createExcel($data = [])
  569. {
  570. $merchant_list = $this->merchants();
  571. foreach ($merchant_list as $value) {
  572. $merchants[$value['mchid']] = $value;
  573. }
  574. Language::read('export');
  575. import('libraries.excel');
  576. $excel_obj = new Excel();
  577. $excel_data = [];
  578. //设置样式
  579. $excel_obj->setStyle(['id' => 's_title', 'Font' => ['FontName' => '宋体', 'Size' => '12', 'Bold' => '1']]);
  580. //header
  581. $excel_data[0][] = ['styleid' => 's_title', 'data' => '编号'];
  582. $excel_data[0][] = ['styleid' => 's_title', 'data' => '操作日期'];
  583. $excel_data[0][] = ['styleid' => 's_title', 'data' => '订单号'];
  584. $excel_data[0][] = ['styleid' => 's_title', 'data' => '机构编号'];
  585. $excel_data[0][] = ['styleid' => 's_title', 'data' => '机构名称'];
  586. $excel_data[0][] = ['styleid' => 's_title', 'data' => '充值卡号'];
  587. $excel_data[0][] = ['styleid' => 's_title', 'data' => '充值卡类型'];
  588. $excel_data[0][] = ['styleid' => 's_title', 'data' => '充值额度'];
  589. $excel_data[0][] = ['styleid' => 's_title', 'data' => '折扣后金额'];
  590. $excel_data[0][] = ['styleid' => 's_title', 'data' => '下单日期'];
  591. $excel_data[0][] = ['styleid' => 's_title', 'data' => '订单状态'];
  592. $excel_data[0][] = ['styleid' => 's_title', 'data' => '渠道单号'];
  593. $excel_data[0][] = ['styleid' => 's_title', 'data' => '渠道名称'];
  594. $excel_data[0][] = ['styleid' => 's_title', 'data' => '折后金额'];
  595. $excel_data[0][] = ['styleid' => 's_title', 'data' => '操作类型'];
  596. $excel_data[0][] = ['styleid' => 's_title', 'data' => '操作人'];
  597. $excel_data[0][] = ['styleid' => 's_title', 'data' => '备注'];
  598. //data
  599. foreach ((array)$data as $k => $v) {
  600. $tmp = [];
  601. $tmp[] = ['data' => $k+1];
  602. if (empty($v['act_time'])) {
  603. $tmp[] = ['data' => ''];
  604. } else {
  605. $tmp[] = ['data' => date('Y-m-d H:i:s', $v['act_time'])];
  606. }
  607. $tmp[] = ['data' => $v['order_sn']];
  608. $tmp[] = ['data' => $v['mchid']];
  609. $tmp[] = ['data' => $merchants[$v['mchid']]['company_name']];
  610. $tmp[] = ['data' => $v['card_no']];
  611. $tmp[] = ['data' => $this->scard_type($v['card_type'])];
  612. $tmp[] = ['data' => $v['refill_amount']];
  613. $tmp[] = ['data' => $v['mch_amount']];
  614. $tmp[] = ['data' => date('Y-m-d H:i:s', $v['order_time'])];
  615. $tmp[] = ['data' => orderState($v)];
  616. $tmp[] = ['data' => $v['ch_trade_no']];
  617. $tmp[] = ['data' => $v['channel_name']];
  618. $tmp[] = ['data' => $v['channel_amount']];
  619. $tmp[] = ['data' => $v['manual_type']];
  620. $tmp[] = ['data' => $v['admin_name']];
  621. $tmp[] = ['data' => $v['bz']];
  622. $excel_data[] = $tmp;
  623. }
  624. $excel_data = $excel_obj->charset($excel_data, CHARSET);
  625. $excel_obj->addArray($excel_data);
  626. $excel_obj->addWorksheet($excel_obj->charset(L('exp_od_order'), CHARSET));
  627. $excel_obj->generateXML('返销导出' . date('Y-m-d-H', time()));
  628. }
  629. }