123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377 |
- <?php
- namespace app\admin\controller;
- use think\facade\View;
- use think\facade\Lang;
- use think\facade\Db;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 控制器
- */
- class Order extends AdminControl
- {
- const EXPORT_SIZE = 1000;
- public function initialize()
- {
- parent::initialize();
- Lang::load(base_path() . 'admin/lang/' . config('lang.default_lang') . '/vrorder.lang.php');
- }
- public function index()
- {
- $order_model = model('order');
- $condition = array();
- $order_sn = input('param.order_sn');
- if ($order_sn) {
- $condition[] = array('order_sn', '=', $order_sn);
- }
- $store_name = input('param.store_name');
- if ($store_name) {
- $condition[] = array('store_name', '=', $store_name);
- }
- $order_state = input('param.order_state');
- if (in_array($order_state, array('0', '10', '20', '30', '40'))) {
- $condition[] = array('order_state', '=', $order_state);
- }
- $payment_code = input('param.payment_code');
- if ($payment_code) {
- $condition[] = array('payment_code', '=', $payment_code);
- }
- $buyer_name = input('param.buyer_name');
- if ($buyer_name) {
- $condition[] = array('buyer_name', '=', $buyer_name);
- }
- $query_start_time = input('param.query_start_time');
- $query_end_time = input('param.query_end_time');
- $if_start_time = preg_match('/^20\d{2}-\d{2}-\d{2}$/', $query_start_time);
- $if_end_time = preg_match('/^20\d{2}-\d{2}-\d{2}$/', $query_end_time);
- $start_unixtime = $if_start_time ? strtotime($query_start_time) : null;
- $end_unixtime = $if_end_time ? strtotime($query_end_time) : null;
- if ($start_unixtime) {
- $condition[] = array('add_time', '>=', $start_unixtime);
- }
- if ($end_unixtime) {
- $condition[] = array('add_time', '<=', $end_unixtime);
- }
- $order_list = $order_model->getOrderList($condition, 10);
- View::assign('show_page', $order_model->page_info->render());
- $order_group_list = array();
- foreach ($order_list as $order_id => $order_info) {
- //显示取消订单
- $order_list[$order_id]['if_cancel'] = $order_model->getOrderOperateState('system_cancel', $order_info);
- //显示收到货款
- $order_list[$order_id]['if_system_receive_pay'] = $order_model->getOrderOperateState('system_receive_pay', $order_info);
- $order_group_list[$order_info['pay_sn']]['order_list'][] = $order_list[$order_id];
- //如果有在线支付且未付款的订单则显示合并付款链接
- if (!isset($order_group_list[$order_info['pay_sn']]['pay_amount'])) {
- $order_group_list[$order_info['pay_sn']]['pay_amount'] = 0;
- }
- if ($order_info['order_state'] == ORDER_STATE_NEW || $order_info['order_state'] == ORDER_STATE_DEPOSIT || $order_info['order_state'] == ORDER_STATE_REST) {
- $order_group_list[$order_info['pay_sn']]['pay_amount'] += ($order_info['order_state'] == ORDER_STATE_DEPOSIT ? $order_info['presell_deposit_amount'] : ($order_info['order_amount'] - $order_info['presell_deposit_amount'] + $order_info['presell_pd_amount'] + $order_info['presell_rcb_amount'])) - $order_info['pd_amount'] - $order_info['rcb_amount'];
- }
- }
- //显示支付接口列表(搜索)
- $payment_list = model('payment')->getPaymentOpenList();
- View::assign('payment_list', $payment_list);
- View::assign('order_group_list', $order_group_list);
- View::assign('filtered', $condition ? 1 : 0); //是否有查询条件
- $this->setAdminCurItem('add');
- return View::fetch('index');
- }
- /**
- * 平台订单状态操作
- *
- */
- public function change_state()
- {
- $state_type = input('param.state_type');
- if ($state_type == 'cancel') {
- $order_id = intval(input('param.order_id'));
- if ($order_id <= 0) {
- $this->error(lang('miss_order_number'));
- }
- $order_model = model('order');
- //获取订单详细
- $condition = array();
- $condition[] = array('order_id', '=', $order_id);
- $order_info = $order_model->getOrderInfo($condition);
- $result = $this->_order_cancel($order_info);
- if (!$result['code']) {
- $this->error($result['msg']);
- } else {
- ds_json_encode(10000, $result['msg']);
- }
- } elseif ($state_type == 'receive_pay') {
- $result = $this->_order_receive_pay(input('param.'));
- if (!$result['code']) {
- $this->error($result['msg']);
- } else {
- dsLayerOpenSuccess($result['msg'], 'Order/index');
- }
- }
- }
- /**
- * 系统取消订单
- */
- private function _order_cancel($order_info)
- {
- $order_id = $order_info['order_id'];
- $order_model = model('order');
- $logic_order = model('order', 'logic');
- $if_allow = $order_model->getOrderOperateState('system_cancel', $order_info);
- if (!$if_allow) {
- return ds_callback(false, lang('no_right_operate'));
- }
- try {
- Db::startTrans();
- $logic_order->changeOrderStateCancel($order_info, 'system', $this->admin_info['admin_name']);
- } catch (\Exception $e) {
- Db::rollback();
- return ds_callback(false, $e->getMessage());
- }
- Db::commit();
- $this->log(lang('order_log_cancel') . ',' . lang('ds_order_sn') . ':' . $order_info['order_sn'], 1);
- return ds_callback(true, lang('ds_common_op_succ'));
- }
- /**
- * 系统收到货款
- * @throws Exception
- */
- private function _order_receive_pay($post)
- {
- $order_model = model('order');
- $logic_order = model('order', 'logic');
- $pay_sn = $post['pay_sn'];
- $pay_info = $order_model->getOrderpayInfo(array('pay_sn' => $pay_sn));
- if (empty($pay_info)) {
- return ds_callback(false, lang('no_right_operate'));
- }
- //取子订单列表
- $condition = array();
- $condition[] = array('pay_sn', '=', $pay_sn);
- $condition[] = array('order_state', 'in', array_values(array(ORDER_STATE_NEW, ORDER_STATE_PAY, ORDER_STATE_DEPOSIT, ORDER_STATE_REST)));
- $order_list = $order_model->getOrderList($condition, 0, 'order_id,order_state,payment_code,order_amount,rcb_amount,pd_amount,order_sn,presell_deposit_amount,presell_rcb_amount,presell_pd_amount');
- if (empty($order_list)) {
- return ds_callback(false, lang('no_right_operate'));
- }
- //重新计算在线支付金额
- $pay_amount_online = 0;
- //订单总支付金额(不包含货到付款)
- $pay_amount = 0;
- $order_sn_list = array();
- foreach ($order_list as $order_info) {
- $if_allow = $order_model->getOrderOperateState('system_receive_pay', $order_info);
- if (!$if_allow) {
- return ds_callback(false, lang('no_right_operate'));
- }
- $payed_amount = floatval($order_info['rcb_amount']) + floatval($order_info['pd_amount']);
- //计算相关支付金额
- if ($order_info['payment_code'] != 'offline') {
- if ($order_info['order_state'] == ORDER_STATE_NEW || $order_info['order_state'] == ORDER_STATE_REST) {
- $pay_amount_online += ds_price_format(floatval($order_info['order_amount']) - floatval($order_info['presell_deposit_amount']) + floatval($order_info['presell_rcb_amount']) + floatval($order_info['presell_pd_amount']) - $payed_amount);
- } else if ($order_info['order_state'] == ORDER_STATE_DEPOSIT) {
- $pay_amount_online += ds_price_format(floatval($order_info['presell_deposit_amount']) - $payed_amount);
- }
- $pay_amount += floatval($order_info['order_amount']);
- }
- $order_sn_list[] = $order_info['order_sn'];
- }
- if (!request()->isPost()) {
- View::assign('order_sn_list', implode('`', $order_sn_list));
- View::assign('pay_amount_online', ds_price_format($pay_amount_online));
- View::assign('pay_amount', ds_price_format($pay_amount));
- //显示支付接口列表
- $payment_list = model('payment')->getPaymentOpenList();
- //去掉预存款和货到付款
- foreach ($payment_list as $key => $value) {
- if ($value['payment_code'] == 'predeposit' || $value['payment_code'] == 'offline') {
- unset($payment_list[$key]);
- }
- }
- View::assign('payment_list', $payment_list);
- echo View::fetch('receive_pay');
- exit;
- } else {
- $order_list = $order_model->getOrderList(array(array('pay_sn', '=', $pay_sn), array('order_state', 'in', [ORDER_STATE_NEW, ORDER_STATE_DEPOSIT, ORDER_STATE_REST])));
- try {
- Db::startTrans();
- $logic_order->changeOrderReceivePay($order_list, 'system', $this->admin_info['admin_name'], $post);
- } catch (\Exception $e) {
- Db::rollback();
- return ds_callback(false, $e->getMessage());
- }
- Db::commit();
- $this->log('将订单改为已收款状态,' . lang('ds_order_sn') . ':' . implode('`', $order_sn_list), 1);
- return ds_callback(true, lang('ds_common_op_succ'));
- }
- }
- /**
- * 查看订单
- *
- */
- public function show_order()
- {
- $order_id = intval(input('param.order_id'));
- if ($order_id <= 0) {
- $this->error(lang('miss_order_number'));
- }
- $order_model = model('order');
- $order_info = $order_model->getOrderInfo(array('order_id' => $order_id), array('order_goods', 'order_common', 'store'));
- //订单变更日志
- $log_list = $order_model->getOrderlogList(array('order_id' => $order_info['order_id']));
- View::assign('order_log', $log_list);
- //退款退货信息
- $refundreturn_model = model('refundreturn');
- $condition = array();
- $condition[] = array('order_id', '=', $order_info['order_id']);
- $condition[] = array('seller_state', '=', 2);
- $condition[] = array('admin_time', '>', 0);
- $return_list = $refundreturn_model->getReturnList($condition);
- View::assign('return_list', $return_list);
- //退款信息
- $refund_list = $refundreturn_model->getRefundList(array_merge($condition, array(array('refund_type', '=', 1))));
- View::assign('refund_list', $refund_list);
- //卖家发货信息
- if (!empty($order_info['extend_order_common']['daddress_id'])) {
- $daddress_info = model('daddress')->getAddressInfo(array('daddress_id' => $order_info['extend_order_common']['daddress_id']));
- View::assign('daddress_info', $daddress_info);
- }
- View::assign('order_info', $order_info);
- return View::fetch('show_order');
- }
- /**
- * 导出
- *
- */
- public function export_step1()
- {
- $order_model = model('order');
- $condition = array();
- $order_sn = input('param.order_sn');
- if ($order_sn) {
- $condition[] = array('order_sn', '=', $order_sn);
- }
- $store_name = input('param.store_name');
- if ($store_name) {
- $condition[] = array('store_name', '=', $store_name);
- }
- $order_state = input('param.order_state');
- if (in_array($order_state, array('0', '10', '20', '30', '40'))) {
- $condition[] = array('order_state', '=', $order_state);
- }
- $payment_code = input('param.payment_code');
- if ($payment_code) {
- $condition[] = array('payment_code', '=', $payment_code);
- }
- $buyer_name = input('param.buyer_name');
- if ($buyer_name) {
- $condition[] = array('buyer_name', '=', $buyer_name);
- }
- $query_start_time = input('param.query_start_time');
- $query_end_time = input('param.query_end_time');
- $if_start_time = preg_match('/^20\d{2}-\d{2}-\d{2}$/', $query_start_time);
- $if_end_time = preg_match('/^20\d{2}-\d{2}-\d{2}$/', $query_end_time);
- $start_unixtime = $if_start_time ? strtotime($query_start_time) : null;
- $end_unixtime = $if_end_time ? strtotime($query_end_time) : null;
- if ($start_unixtime || $end_unixtime) {
- $condition[] = array('add_time', 'between', array($start_unixtime, $end_unixtime));
- }
- if (!is_numeric(input('param.page'))) {
- $count = $order_model->getOrderCount($condition);
- $export_list = array();
- if ($count > self::EXPORT_SIZE) { //显示下载链接
- $page = ceil($count / self::EXPORT_SIZE);
- for ($i = 1; $i <= $page; $i++) {
- $limit1 = ($i - 1) * self::EXPORT_SIZE + 1;
- $limit2 = $i * self::EXPORT_SIZE > $count ? $count : $i * self::EXPORT_SIZE;
- $export_list[$i] = $limit1 . ' ~ ' . $limit2;
- }
- View::assign('export_list', $export_list);
- return View::fetch('/public/excel');
- } else { //如果数量小,直接下载
- $data = $order_model->getOrderList($condition, 0, '*', 'order_id desc', self::EXPORT_SIZE);
- $this->createExcel($data);
- }
- } else { //下载
- $limit1 = (input('param.page') - 1) * self::EXPORT_SIZE;
- $limit2 = self::EXPORT_SIZE;
- $data = $order_model->getOrderList($condition, $limit2, '*', 'order_id desc');
- $this->createExcel($data);
- }
- }
- /**
- * 生成excel
- *
- * @param array $data
- */
- private function createExcel($data = array())
- {
- Lang::load(base_path() . 'admin/lang/' . config('lang.default_lang') . '/export.lang.php');
- $excel_obj = new \excel\Excel();
- $excel_data = array();
- //设置样式
- $excel_obj->setStyle(array('id' => 's_title', 'Font' => array('FontName' => '宋体', 'Size' => '12', 'Bold' => '1')));
- //header
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_no'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_store'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_buyer'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_xtimd'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_count'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_yfei'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_paytype'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_state'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_storeid'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_buyerid'));
- $excel_data[0][] = array('styleid' => 's_title', 'data' => lang('exp_od_bemail'));
- //data
- foreach ((array) $data as $k => $v) {
- $tmp = array();
- $tmp[] = array('data' => 'DS' . $v['order_sn']);
- $tmp[] = array('data' => $v['store_name']);
- $tmp[] = array('data' => $v['buyer_name']);
- $tmp[] = array('data' => date('Y-m-d H:i:s', $v['add_time']));
- $tmp[] = array('format' => 'Number', 'data' => ds_price_format($v['order_amount']));
- $tmp[] = array('format' => 'Number', 'data' => ds_price_format($v['shipping_fee']));
- $tmp[] = array('data' => get_order_payment_name($v['payment_code']));
- $tmp[] = array('data' => get_order_state($v));
- $tmp[] = array('data' => $v['store_id']);
- $tmp[] = array('data' => $v['buyer_id']);
- $tmp[] = array('data' => $v['buyer_email']);
- $excel_data[] = $tmp;
- }
- $excel_data = $excel_obj->charset($excel_data, CHARSET);
- $excel_obj->addArray($excel_data);
- $excel_obj->addWorksheet($excel_obj->charset(lang('exp_od_order'), CHARSET));
- $excel_obj->generateXML($excel_obj->charset(lang('exp_od_order'), CHARSET) . input('param.page') . '-' . date('Y-m-d-H', TIMESTAMP));
- }
- }
|