|
@@ -1,255 +0,0 @@
|
|
|
-<?php
|
|
|
-
|
|
|
-// +----------------------------------------------------------------------
|
|
|
-// | ThinkAdmin
|
|
|
-// +----------------------------------------------------------------------
|
|
|
-// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
|
|
-// +----------------------------------------------------------------------
|
|
|
-// | 官方网站: http://demo.thinkadmin.top
|
|
|
-// +----------------------------------------------------------------------
|
|
|
-// | 开源协议 ( https://mit-license.org )
|
|
|
-// +----------------------------------------------------------------------
|
|
|
-// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
|
|
-// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
|
|
-// +----------------------------------------------------------------------
|
|
|
-
|
|
|
-namespace app\store\controller;
|
|
|
-
|
|
|
-use app\common\library\Common;
|
|
|
-use library\Controller;
|
|
|
-use library\tools\Express;
|
|
|
-use think\Db;
|
|
|
-
|
|
|
-/**
|
|
|
- * 订单记录管理
|
|
|
- * Class Order
|
|
|
- * @package app\store\controller
|
|
|
- */
|
|
|
-class Order extends Controller
|
|
|
-{
|
|
|
- /**
|
|
|
- * 绑定数据表
|
|
|
- * @var string
|
|
|
- */
|
|
|
- protected $table = 'q_order';
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单记录管理
|
|
|
- * @auth true
|
|
|
- * @menu true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function index()
|
|
|
- {
|
|
|
- $this->title = '订单记录管理';
|
|
|
- $query = $this->_query($this->table);
|
|
|
- $array = $this->statistical_order_info();
|
|
|
- $this->assign('a',$array);
|
|
|
- if (isset($_GET['order_no']) && $_GET['order_no']){
|
|
|
- $query->where('a.order_no',$_GET['order_no']);
|
|
|
- }
|
|
|
- if (isset($_GET['status']) && $_GET['status']!=''){
|
|
|
- $query->where('a.status',$_GET['status']);
|
|
|
- }
|
|
|
- if (isset($_GET['pay_type']) && $_GET['pay_type']){
|
|
|
- $query->where('a.pay_type',$_GET['pay_type']);
|
|
|
- }
|
|
|
- if (isset($_GET['name']) && $_GET['name']){
|
|
|
- $query->where('a.name','like','%'.$_GET['name'].'%');
|
|
|
- }
|
|
|
- if (isset($_GET['phone']) && $_GET['phone']){
|
|
|
- $query->where('a.phone','like','%'.$_GET['phone'].'%');
|
|
|
- }
|
|
|
- if (isset($_GET['user_info']) && $_GET['user_info']){
|
|
|
- $query->where('b.nickname|b.phone|a.user_id','like','%'.$_GET['user_info'].'%');
|
|
|
- }
|
|
|
- if (isset($_GET['de_info']) && $_GET['de_info']){
|
|
|
- $query->where('c.name|a.designer_id','like','%'.$_GET['de_info'].'%');
|
|
|
- }
|
|
|
- if (isset($_GET['create_at']) && $_GET['create_at']){
|
|
|
- $time = explode(' - ',$_GET['create_at']);
|
|
|
- $start_date_time = $time[0].' 00:00:00';
|
|
|
- $end_date_time = $time[1].' 23:59:59';
|
|
|
- $query->whereBetweenTime('a.create_at',$start_date_time,$end_date_time);
|
|
|
- }
|
|
|
- if (isset($_GET['pay_at']) && $_GET['pay_at']){
|
|
|
- $time = explode(' - ',$_GET['pay_at']);
|
|
|
- $start_time = strtotime("$time[0] 00:00:00");
|
|
|
- $end_time = strtotime("$time[1] 23:59:59");
|
|
|
- $query->whereBetweenTime('a.pay_time',$start_time,$end_time);
|
|
|
- }
|
|
|
- $query->alias('a')
|
|
|
- ->join('q_user b','a.user_id=b.id')
|
|
|
- ->join('q_user c','a.designer_id=c.id')
|
|
|
- ->field('a.*,b.nickname,b.phone,c.name as designer_name,c.phone as designer_phone')
|
|
|
- ->order('a.id desc')
|
|
|
- ->page();
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public function statistical_order_info(){
|
|
|
- $array = array();
|
|
|
- $array['all_order'] = $this->byWhere()->count();
|
|
|
- $array['all_price'] = $this->byWhere()->where('a.status','not in',array('0','4'))->sum('a.price');
|
|
|
- $array['weixin_all_price'] = $this->byWhere()->where('a.status','not in',array('0','4'))->where('a.pay_type','weixin')->sum('a.price');
|
|
|
- $array['zfb_all_price'] = $this->byWhere()->where('a.status','not in',array('0','4'))->where('a.pay_type','zfb')->sum('a.price');
|
|
|
- return $array;
|
|
|
- }
|
|
|
-
|
|
|
- public function byWhere(){
|
|
|
- $model = Db::name($this->table)->alias('a')
|
|
|
- ->join('q_user b','a.user_id=b.id')
|
|
|
- ->join('q_user c','a.designer_id=c.id');
|
|
|
- if (isset($_GET['order_no']) && $_GET['order_no']){
|
|
|
- $model->where('a.order_no',$_GET['order_no']);
|
|
|
- }
|
|
|
- if (isset($_GET['status']) && $_GET['status']!=''){
|
|
|
- $model->where('a.status',$_GET['status']);
|
|
|
- }
|
|
|
- if (isset($_GET['pay_type']) && $_GET['pay_type']){
|
|
|
- $model->where('a.pay_type',$_GET['pay_type']);
|
|
|
- }
|
|
|
- if (isset($_GET['name']) && $_GET['name']){
|
|
|
- $model->where('a.name','like','%'.$_GET['name'].'%');
|
|
|
- }
|
|
|
- if (isset($_GET['phone']) && $_GET['phone']){
|
|
|
- $model->where('a.phone','like','%'.$_GET['phone'].'%');
|
|
|
- }
|
|
|
- if (isset($_GET['user_info']) && $_GET['user_info']){
|
|
|
- $model->where('b.nickname|b.phone|a.user_id','like','%'.$_GET['user_info'].'%');
|
|
|
- }
|
|
|
- if (isset($_GET['de_info']) && $_GET['de_info']){
|
|
|
- $model->where('c.name|a.designer_id','like','%'.$_GET['de_info'].'%');
|
|
|
- }
|
|
|
- if (isset($_GET['create_at']) && $_GET['create_at']){
|
|
|
- $time = explode(' - ',$_GET['create_at']);
|
|
|
- $start_date_time = $time[0].' 00:00:00';
|
|
|
- $end_date_time = $time[1].' 23:59:59';
|
|
|
- $model->whereBetweenTime('a.create_at',$start_date_time,$end_date_time);
|
|
|
- }
|
|
|
- if (isset($_GET['pay_at']) && $_GET['pay_at']){
|
|
|
- $time = explode(' - ',$_GET['pay_at']);
|
|
|
- $start_time = strtotime("$time[0] 00:00:00");
|
|
|
- $end_time = strtotime("$time[1] 23:59:59");
|
|
|
- $model->whereBetweenTime('a.pay_time',$start_time,$end_time);
|
|
|
- }
|
|
|
- return $model;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单列表处理
|
|
|
- * @param array $data
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- */
|
|
|
- protected function _index_page_filter(array &$data)
|
|
|
- {
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单详情页
|
|
|
- */
|
|
|
- public function order_detail(){
|
|
|
- $this->_form($this->table, 'order_detail');
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单修改
|
|
|
- */
|
|
|
- public function order_edit(){
|
|
|
- $this->title = '编辑信息';
|
|
|
- $this->_form($this->table, 'edit');
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 表单数据处理
|
|
|
- * @param array $data
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- protected function _form_filter(&$data)
|
|
|
- {
|
|
|
- if ($this->request->isGet()) {
|
|
|
-
|
|
|
- $serv = explode('-',$data['servicing_time']);
|
|
|
- $data['servicing_time'] = $serv['0'].' - '.$serv[1];
|
|
|
- $this->data = $data;
|
|
|
- //订单记录
|
|
|
- $order_status = Db::name('q_order_status')->where('oid',$data['id'])->order('change_time asc')->select();
|
|
|
- $this->orderstatus = $order_status;
|
|
|
-
|
|
|
- //省
|
|
|
- $province = Db::name('q_area')->where('level',1)->select();
|
|
|
- $this->province = $province;
|
|
|
- //市
|
|
|
- $pid = Db::name('q_area')->where('name',$data['province'])->value('id');
|
|
|
- $city = Db::name('q_area')->where('level',2)->where('pid',$pid)->select();
|
|
|
- $this->city = $city;
|
|
|
- //区
|
|
|
- $pid2 = Db::name('q_area')->where('name',$data['city'])->value('id');
|
|
|
- $area = Db::name('q_area')->where('level',3)->where('pid',$pid2)->select();
|
|
|
- $this->area = $area;
|
|
|
- }elseif ($this->request->isPost()) {
|
|
|
- if (isset($data['province'])){
|
|
|
- $data['province'] = Db::name('q_area')->where('id',$data['province'])->value('name');
|
|
|
- }
|
|
|
- if (isset($data['city'])){
|
|
|
- $data['city'] = Db::name('q_area')->where('id',$data['city'])->value('name');
|
|
|
- }
|
|
|
- if (isset($data['area'])){
|
|
|
- $data['area'] = Db::name('q_area')->where('id',$data['area'])->value('name');
|
|
|
- }
|
|
|
- $serv = explode(' - ',$data['servicing_time']);
|
|
|
- $data['servicing_time'] = $serv[0].'-'.$serv[1];
|
|
|
- if ($data['pay_price1']!=$data['pay_price']){
|
|
|
- Common::order_status($data['id'],'后台修改支付金额'.$data['pay_price1'].'为'.$data['pay_price']);
|
|
|
- }
|
|
|
- unset($data['price1']);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 订单记录
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\db\exception\DataNotFoundException
|
|
|
- * @throws \think\db\exception\ModelNotFoundException
|
|
|
- * @throws \think\exception\DbException
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function order_status()
|
|
|
- {
|
|
|
- $id = $this->app->request->get('id');
|
|
|
- $this->assign('id',$id);
|
|
|
- $post = $this->app->request->post();
|
|
|
- if (isset($post['id']) && $post['id']){
|
|
|
- Db::name($this->table)->where('id',$post['id'])->update(['remark'=>$post['remark']]);
|
|
|
- $this->success('编辑成功!');
|
|
|
- }else{
|
|
|
- $this->_form($this->table, 'order_status');
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 取消订单
|
|
|
- * @auth true
|
|
|
- * @throws \think\Exception
|
|
|
- * @throws \think\exception\PDOException
|
|
|
- */
|
|
|
- public function cancel_order()
|
|
|
- {
|
|
|
- $this->_save($this->table, ['status' => '5','cancel_reason'=>'后台取消订单']);
|
|
|
- }
|
|
|
-
|
|
|
-}
|