|
@@ -0,0 +1,95 @@
|
|
|
|
+<?php
|
|
|
|
+namespace app\order\controller;
|
|
|
|
+use library\Controller;
|
|
|
|
+use think\Db;
|
|
|
|
+/**
|
|
|
|
+ * 二级市场订单
|
|
|
|
+ * Class Order
|
|
|
|
+ * @package app\order\controller
|
|
|
|
+ */
|
|
|
|
+class SecondaryOrder extends Controller
|
|
|
|
+{
|
|
|
|
+ protected $table = 'store_order_info_order';
|
|
|
|
+ /**
|
|
|
|
+ * 订单列表
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ */
|
|
|
|
+ public function index()
|
|
|
|
+ {
|
|
|
|
+ $this->title = '订单管理';
|
|
|
|
+ $this->order_status = ['待支付','已支付','已取消'];
|
|
|
|
+ $order_stat = Db::table($this->table)
|
|
|
|
+ ->where('status',1)
|
|
|
|
+ ->field('pay_price')
|
|
|
|
+ ->select();
|
|
|
|
+ $this->order_num = empty($order_stat) ? 0: count($order_stat);
|
|
|
|
+ $this->total_money = empty($order_stat) ? 0: array_sum(array_column($order_stat,'pay_price'));
|
|
|
|
+ $query = $this->_query($this->table);
|
|
|
|
+ $where = [];
|
|
|
|
+ if($this->request->request('tel'))$where[]= ['u.phone','like','%'.$this->request->request('tel').'%'];
|
|
|
|
+ if($this->request->request('user_name'))$where[]= ['u.name','like','%'.$this->request->request('user_name').'%'];
|
|
|
|
+ if($this->request->request('order_no')) $where[]= ['o.order_no','like','%'.$this->request->request('order_no').'%'];
|
|
|
|
+ if($this->request->request('order_status') > -1) $where[]= ['o.status','=',$this->request->request('order_status')];
|
|
|
|
+ $query->alias('o')
|
|
|
|
+ ->field('o.* , u.name as user_name ,u.phone')
|
|
|
|
+ ->join('store_member u',' o.mid = u.id ','LEFT');
|
|
|
|
+ if(!empty($where)) $query->where($where);
|
|
|
|
+ $query ->order('o.id desc')->page();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 订单详情
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ */
|
|
|
|
+ public function detail()
|
|
|
|
+ {
|
|
|
|
+ $this->order_status = ['待支付','已支付','已取消'];
|
|
|
|
+ $this->title = '订单详情';
|
|
|
|
+ $order_id = input('id');
|
|
|
|
+ $detail = Db::table('store_order o')
|
|
|
|
+ ->field('o.* , u.name as user_name ,u.phone')
|
|
|
|
+ ->join('store_member u',' o.mid = u.id ','LEFT')
|
|
|
|
+ ->where('o.id',$order_id)
|
|
|
|
+ ->find();
|
|
|
|
+ $detail['pro_info'] = json_decode($detail['pro_info'],true);
|
|
|
|
+ $detail['pay_type'] = $detail['pay_type']=='wx' ? '微信' : '支付宝';
|
|
|
|
+ $this->assign('detail',$detail);
|
|
|
|
+ $this->fetch('detail');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 订单发货
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+ public function deliver()
|
|
|
|
+ {
|
|
|
|
+ $this->title = '发货';
|
|
|
|
+ $this->express_company = Db::table('store_express_company')->field('id,express_title')->select();
|
|
|
|
+ $this->_form($this->table,'deliver');
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 表单数据处理
|
|
|
|
+ * @auth true
|
|
|
|
+ * @menu true
|
|
|
|
+ * @param array $data
|
|
|
|
+ */
|
|
|
|
+ protected function _form_filter(&$data)
|
|
|
|
+ {
|
|
|
|
+ if ($this->request->isPost() && $this->request->action() == 'deliver') {
|
|
|
|
+ $express_company = Db::table('store_express_company')->field('id,express_title')->find($data['express_company_id']);
|
|
|
|
+ $data['express_company_title'] = $express_company['express_title'] ? $express_company['express_title'] : '';
|
|
|
|
+ $data['express_send_at'] = date("Y-m-d H:i:s");
|
|
|
|
+ $data['express_state'] = 1;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+}
|