123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- <?php
- namespace app\admin\controller;
- use think\facade\View;
- use think\facade\Lang;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 控制器
- */
- class Vrorder extends AdminControl
- {
- /**
- * 每次导出订单数量
- * @var int
- */
- 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()
- {
- $vrorder_model = model('vrorder');
- $condition = array();
- $order_sn = input('get.order_sn');
- if ($order_sn) {
- $condition[] = array('order_sn', '=', $order_sn);
- }
- $store_name = input('get.store_name');
- if ($store_name) {
- $condition[] = array('store_name', '=', $store_name);
- }
- $order_state = input('get.order_state');
- if (!empty($order_state)) {
- $condition[] = array('order_state', '=', intval($order_state));
- }
- $payment_code = input('get.payment_code');
- if ($payment_code) {
- $condition[] = array('payment_code', '=', $payment_code);
- }
- $buyer_name = input('get.buyer_name');
- if ($buyer_name) {
- $condition[] = array('buyer_name', '=', $buyer_name);
- }
- $query_start_time = input('get.query_start_time');
- $query_end_time = input('get.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) {
- $end_unixtime = $end_unixtime + 86399;
- $condition[] = array('add_time', '<=', $end_unixtime);
- }
- $order_list = $vrorder_model->getVrorderList($condition, 30);
- foreach ($order_list as $k => $order_info) {
- //显示取消订单
- $order_list[$k]['if_cancel'] = $vrorder_model->getVrorderOperateState('system_cancel', $order_info);
- //显示收到货款
- $order_list[$k]['if_system_receive_pay'] = $vrorder_model->getVrorderOperateState('system_receive_pay', $order_info);
- }
- //显示支付接口列表(搜索)
- $payment_list = model('payment')->getPaymentOpenList();
- View::assign('payment_list', $payment_list);
- View::assign('order_list', $order_list);
- View::assign('show_page', $vrorder_model->page_info->render());
- View::assign('filtered', $condition ? 1 : 0); //是否有查询条件
- $this->setAdminCurItem('index');
- return View::fetch('vr_order_index');
- }
- /**
- * 平台订单状态操作
- *
- */
- public function change_state()
- {
- $vrorder_model = model('vrorder');
- $condition = array();
- $condition[] = array('order_id', '=', intval(input('param.order_id')));
- $order_info = $vrorder_model->getVrorderInfo($condition);
- $state_type = input('param.state_type');
- if ($state_type == 'cancel') {
- $result = $this->_order_cancel($order_info);
- if (isset($result['code'])) {
- ds_json_encode('10000', $result['msg']);
- }
- } elseif ($state_type == 'receive_pay') {
- $result = $this->_order_receive_pay($order_info, input('post.'));
- if (isset($result['code'])) {
- dsLayerOpenSuccess($result['msg']);
- }
- }
- $this->error('操作出错', 'index');
- }
- /**
- * 系统取消订单
- * @param unknown $order_info
- */
- private function _order_cancel($order_info)
- {
- $vrorder_model = model('vrorder');
- $logic_vrorder = model('vrorder', 'logic');
- $if_allow = $vrorder_model->getVrorderOperateState('system_cancel', $order_info);
- if (!$if_allow) {
- return ds_callback(false, lang('no_right_operate'));
- }
- $this->log('关闭了虚拟订单,' . lang('ds_order_sn') . ':' . $order_info['order_sn'], 1);
- return $logic_vrorder->changeOrderStateCancel($order_info, 'store', lang('admin_cancel_vrorder'));
- }
- /**
- * 系统收到货款
- * @param unknown $order_info
- * @throws Exception
- */
- private function _order_receive_pay($order_info, $post)
- {
- $vrorder_model = model('vrorder');
- $logic_vrorder = model('vrorder', 'logic');
- $if_allow = $vrorder_model->getVrorderOperateState('system_receive_pay', $order_info);
- if (!$if_allow) {
- return ds_callback(false, lang('no_right_operate'));
- }
- if (!request()->post()) {
- View::assign('order_info', $order_info);
- //显示支付接口
- $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);
- $this->setAdminCurItem('submit');
- echo View::fetch('receive_pay');
- exit();
- } else {
- $this->log('将虚拟订单改为已收款状态,' . lang('ds_order_sn') . ':' . $order_info['order_sn'], 1);
- return $logic_vrorder->changeOrderStatePay($order_info, 'system', $post);
- }
- }
- /**
- * 查看订单
- *
- */
- public function show_order()
- {
- $order_id = intval(input('param.order_id'));
- if ($order_id <= 0) {
- $this->error(lang('miss_order_number'));
- }
- $vrorder_model = model('vrorder');
- $order_info = $vrorder_model->getVrorderInfo(array('order_id' => $order_id));
- if (empty($order_info)) {
- $this->error(lang('order_not_exist'));
- }
- //取兑换码列表
- $vr_code_list = $vrorder_model->getShowVrordercodeList(array('order_id' => $order_info['order_id']));
- $order_info['extend_vr_order_code'] = $vr_code_list;
- //显示取消订单
- $order_info['if_cancel'] = $vrorder_model->getVrorderOperateState('buyer_cancel', $order_info);
- //显示订单进行步骤
- $order_info['step_list'] = $vrorder_model->getVrorderStep($order_info);
- //显示系统自动取消订单日期
- if ($order_info['order_state'] == ORDER_STATE_NEW) {
- $order_info['order_cancel_day'] = $order_info['add_time'] + config('ds_config.order_auto_cancel_day') * 24 * 3600;
- }
- View::assign('order_info', $order_info);
- return View::fetch('view');
- }
- /**
- * 导出
- *
- */
- public function export_step1()
- {
- $vrorder_model = model('vrorder');
- $condition = array();
- if (input('param.order_sn')) {
- $condition[] = array('order_sn', '=', input('param.order_sn'));
- }
- if (input('param.store_name')) {
- $condition[] = array('store_name', '=', input('param.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);
- }
- if (input('param.payment_code')) {
- $condition[] = array('payment_code', '=', input('param.payment_code'));
- }
- if (input('param.buyer_name')) {
- $condition[] = array('buyer_name', '=', input('param.buyer_name'));
- }
- $if_start_time = preg_match('/^20\d{2}-\d{2}-\d{2}$/', input('param.query_start_time'));
- $if_end_time = preg_match('/^20\d{2}-\d{2}-\d{2}$/', input('param.query_end_time'));
- $start_unixtime = $if_start_time ? strtotime(input('param.query_start_time')) : null;
- $end_unixtime = $if_end_time ? strtotime(input('param.query_end_time')) : null;
- if ($start_unixtime) {
- $condition[] = array('add_time', '>=', $start_unixtime);
- }
- if ($end_unixtime) {
- $end_unixtime = $end_unixtime + 86399;
- $condition[] = array('add_time', '<=', $end_unixtime);
- }
- if (!is_numeric(input('param.page'))) {
- $count = $vrorder_model->getVrorderCount($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 = $vrorder_model->getVrorderList($condition, '', '*', 'order_id desc', self::EXPORT_SIZE);
- $this->createExcel($data);
- }
- } else { //下载
- $limit1 = (input('param.page') - 1) * self::EXPORT_SIZE;
- $limit2 = self::EXPORT_SIZE;
- $data = $vrorder_model->getVrorderList($condition, $limit2, '*', 'order_id desc');
- $this->createExcel($data);
- }
- }
- /**
- * 生成excel
- *
- * @param array $data
- */
- private function createExcel($data = array())
- {
- $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_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_mobile'));
- //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('data' => get_order_payment_name($v['payment_code']));
- $tmp[] = array('data' => $v['state_desc']);
- $tmp[] = array('data' => $v['store_id']);
- $tmp[] = array('data' => $v['buyer_id']);
- $tmp[] = array('data' => $v['buyer_phone']);
- $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));
- }
- protected function getAdminItemList()
- {
- $menu_array = array(
- array(
- 'name' => 'index', 'text' => lang('ds_manage'), 'url' => (string)url('Vrorder/index')
- )
- );
- if (request()->action() == 'change_state') {
- $menu_array[] = array(
- 'name' => 'submit', 'text' => lang('confirm_receive_pay'), 'url' => ''
- );
- }
- if (request()->action() == 'show_order') {
- $menu_array[] = array(
- 'name' => 'show_order', 'text' => lang('order_detail'), 'url' => ''
- );
- }
- return $menu_array;
- }
- }
|