123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- <?php
- /*
- * 虚拟订单
- */
- namespace app\home\controller;
- use think\facade\Db;
- use think\facade\View;
- use think\facade\Lang;
- /**
- * ============================================================================
- * DSMall多用户商城
- * ============================================================================
- * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
- * 网站地址: http://www.csdeshang.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
- * 不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * 控制器
- */
- class Sellerstoreorder extends BaseSeller
- {
- public function initialize()
- {
- parent::initialize();
- Lang::load(base_path() . 'home/lang/' . config('lang.default_lang') . '/sellervrorder.lang.php');
- }
- /**
- * 订单列表
- *
- */
- public function index()
- {
- //上级店铺id
- $store_id = session('store_id');
- $store_arr = Db::name('store')->field('store_id,store_name')
- ->where('p_id', $store_id)
- ->whereOr('store_id', $store_id)
- ->select();
- View::assign('store_arr', $store_arr);
- $store_ids = $store_arr->column('store_id');
- $store_column = [];
- foreach ($store_arr as $store) {
- $store_column[$store['store_id']] = $store['store_name'];
- }
- //店铺搜索条件
- $store_id_input = input('param.store_id', 0);
- if (!empty($store_id_input)) {
- if (in_array($store_id_input, $store_ids)) {
- $store_ids = [$store_id_input];
- } else {
- $store_ids = [0];
- }
- }
- View::assign('store_id_input', $store_id_input);
- $model = model('StoreOrder');
- $condition = [];
- $condition[] = ['store_id', 'in', $store_ids];
- $order_sn = input('get.order_sn');
- if ($order_sn != '') {
- $condition[] = ['order_sn', '=', $order_sn];
- }
- $buyer_name = input('get.buyer_name');
- if ($buyer_name != '') {
- $condition[] = ['buyer_name', '=', $buyer_name];
- }
- $allow_state_array = ['state_new', 'state_success', 'state_cancel'];
- $state_type = input('param.state_type');
- if (in_array($state_type, $allow_state_array)) {
- $condition[] = ['order_state', '=', str_replace($allow_state_array, [ORDER_STATE_NEW, ORDER_STATE_SUCCESS, ORDER_STATE_CANCEL], $state_type)];
- $condition[] = ['is_refund', '=', 2];
- } else {
- $state_type = 'store_order';
- }
- $query_start_date = input('get.query_start_date');
- $query_end_date = input('get.query_end_date');
- if ($query_start_date) {
- $condition[] = ['add_time', '>=', strtotime($query_start_date)];
- }
- if ($query_end_date) {
- $condition[] = ['add_time', '<=', strtotime($query_end_date)];
- }
- $is_refund = input('param.is_refund');
- if ($is_refund == 1) {
- $state_type = 'order_refund';
- $condition[] = ['is_refund', '=', 1];
- }
- $order_list = $model->getOrderList($condition, 20, '*', 'id desc', 0, ['member']);
- View::assign('show_page', $model->page_info->render());
- foreach ($order_list as $key => $order) {
- //店铺名称
- $order_list[$key]['store_name'] = $store_column[$order['store_id']];
- }
- View::assign('order_list', $order_list);
- /* 设置卖家当前菜单 */
- $this->setSellerCurMenu('sellerstoreorder');
- /* 设置卖家当前栏目 */
- $this->setSellerCurItem($state_type);
- return View::fetch($this->template_dir . 'index');
- }
- /**
- * 订单详情
- *
- */
- public function show_order()
- {
- $order_id = intval(input('param.id'));
- if ($order_id <= 0) {
- $this->error(lang('miss_order_number'));
- }
- $order_model = model('StoreOrder');
- $order_info = $order_model->getOrderInfo(['id' => $order_id], ['store', 'member']);
- $order_info['deduction_amount'] = number_format($order_info['deduction_amount'], 2);
- View::assign('order_info', $order_info);
- View::assign('order_info', $order_info);
- $this->setSellerCurMenu('sellerstoreorder');
- $this->setSellerCurItem('store_order');
- return View::fetch($this->template_dir . 'show_order');
- }
- /**
- * 订单状态操作
- *
- */
- public function change_state()
- {
- $model = model('StoreOrder');
- $condition = [];
- $condition[] = ['id', '=', intval(input('param.id'))];
- $condition[] = ['store_id', '=', session('store_id')];
- $state_type = input('param.state_type');
- if ($state_type == 'order_cancel') {
- $model->where($condition)->update(['order_state' => 0]);
- }
- ds_json_encode(10000, '操作成功');
- }
- /**
- * 栏目菜单
- */
- function getSellerItemList()
- {
- $menu_array = [
- [
- 'name' => 'store_order',
- 'text' => lang('ds_member_path_all_order'),
- 'url' => (string)url('Sellerstoreorder/index'),
- ],
- [
- 'name' => 'state_new',
- 'text' => lang('ds_member_path_wait_pay'),
- 'url' => (string)url('Sellerstoreorder/index', ['state_type' => 'state_new']),
- ],
- [
- 'name' => 'state_success',
- 'text' => lang('ds_member_path_finished'),
- 'url' => (string)url('Sellerstoreorder/index', ['state_type' => 'state_success']),
- ],
- [
- 'name' => 'state_cancel',
- 'text' => lang('ds_member_path_canceled'),
- 'url' => (string)url('Sellerstoreorder/index', ['state_type' => 'state_cancel']),
- ],
- [
- 'name' => 'order_refund',
- 'text' => lang('已退款'),
- 'url' => (string)url('Sellerstoreorder/index', ['is_refund' => '1']),
- ],
- ];
- return $menu_array;
- }
- public function export()
- {
- //上级店铺id
- $store_id = session('store_id');
- $store_arr = Db::name('store')->field('store_id,store_name')
- ->where('p_id', $store_id)
- ->whereOr('store_id', $store_id)
- ->select();
- $store_ids = $store_arr->column('store_id');
- $store_column = [];
- foreach ($store_arr as $store) {
- $store_column[$store['store_id']] = $store['store_name'];
- }
- //店铺搜索条件
- $store_id_input = input('param.store_id', 0);
- if (!empty($store_id_input)) {
- if (in_array($store_id_input, $store_ids)) {
- $store_ids = [$store_id_input];
- } else {
- $store_ids = [0];
- }
- }
- $model = model('StoreOrder');
- $condition = [];
- $condition[] = ['store_id', 'in', $store_ids];
- $ids = input('get.ids');
- if (!empty($ids)) {
- $condition[] = ['id', 'in', explode(',', $ids)];
- }
- $order_sn = input('get.order_sn');
- if ($order_sn != '') {
- $condition[] = ['order_sn', '=', $order_sn];
- }
- $buyer_name = input('get.buyer_name');
- if ($buyer_name != '') {
- $condition[] = ['buyer_name', '=', $buyer_name];
- }
- $allow_state_array = ['state_new', 'state_success', 'state_cancel'];
- $state_type = input('param.state_type');
- if (in_array($state_type, $allow_state_array)) {
- $condition[] = ['order_state', '=', str_replace($allow_state_array, [ORDER_STATE_NEW, ORDER_STATE_SUCCESS, ORDER_STATE_CANCEL], $state_type)];
- $condition[] = ['is_refund', '=', 2];
- }
- $query_start_date = input('get.query_start_date');
- $query_end_date = input('get.query_end_date');
- if ($query_start_date) {
- $condition[] = ['add_time', '>=', strtotime($query_start_date)];
- }
- if ($query_end_date) {
- $condition[] = ['add_time', '<=', strtotime($query_end_date)];
- }
- $is_refund = input('param.is_refund');
- if ($is_refund == 1) {
- $condition[] = ['is_refund', '=', 1];
- }
- $order_list = $model->getOrderList($condition, 0, '*', 'id desc', 0, ['member']);
- foreach ($order_list as $key => $order) {
- //店铺名称
- $order_list[$key]['store_name'] = $store_column[$order['store_id']];
- }
- $this->createExcel($order_list);
- }
- /**
- * 生成excel
- *
- * @param array $data
- */
- private function createExcel($data = [])
- {
- Lang::load(base_path() . 'admin/lang/' . config('lang.default_lang') . '/export.lang.php');
- $excel_obj = new \excel\Excel();
- $excel_data = [];
- //设置样式
- $excel_obj->setStyle(['id' => 's_title', 'Font' => ['FontName' => '宋体', 'Size' => '12', 'Bold' => '1']]);
- //header
- $excel_data[0][] = ['styleid' => 's_title', 'data' => lang('exp_od_no')];
- $excel_data[0][] = ['styleid' => 's_title', 'data' => lang('exp_od_store')];
- $excel_data[0][] = ['styleid' => 's_title', 'data' => lang('exp_od_buyer')];
- $excel_data[0][] = ['styleid' => 's_title', 'data' => '手机号'];
- $excel_data[0][] = ['styleid' => 's_title', 'data' => lang('exp_od_xtimd')];
- $excel_data[0][] = ['styleid' => 's_title', 'data' => lang('exp_od_count')];
- $excel_data[0][] = ['styleid' => 's_title', 'data' => lang('exp_od_paytype')];
- $excel_data[0][] = ['styleid' => 's_title', 'data' => lang('exp_od_state')];
- $excel_data[0][] = ['styleid' => 's_title', 'data' => lang('exp_od_storeid')];
- $excel_data[0][] = ['styleid' => 's_title', 'data' => lang('exp_od_buyerid')];
- //data
- foreach ((array)$data as $k => $v) {
- $tmp = [];
- $tmp[] = ['data' => $v['order_sn']];
- $tmp[] = ['data' => $v['store_name']];
- $tmp[] = ['data' => $v['buyer_name']];
- $tmp[] = ['data' => $v['extend_member']['member_mobile']];
- $tmp[] = ['data' => $v['add_time']];
- $tmp[] = ['format' => 'Number', 'data' => ds_price_format($v['order_amount'])];
- $tmp[] = ['data' => get_order_payment_name($v['payment_code'])];
- $tmp[] = ['data' => get_order_state($v)];
- $tmp[] = ['data' => $v['store_id']];
- $tmp[] = ['data' => $v['buyer_id']];
- $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));
- }
- }
|