审查视图

app/portal/controller/OrderpageController.php 11.9 KB
5  
anyv authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php
// +----------------------------------------------------------------------
// | bronet [ 以客户为中心 以奋斗者为本 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.bronet.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
namespace app\portal\controller;

use cmf\controller\WeChatBaseController;
use think\Db;

class OrderpageController extends WeChatBaseController{

    /**
anyv authored
17
     * 显示平台订单页
5  
anyv authored
18 19 20
     */
    public function order_page(){
anyv authored
21 22
        $indet_id = $this -> request -> param();
        $uid = cmf_get_current_user_id();
7  
anyv authored
23 24 25
        if(!empty($indet_id['address_id'])){
            $address = Db::name('address') -> where('id',$indet_id['address_id']) -> find();
            $this -> assign('address',$address);
anyv authored
26
        }else{
7  
anyv authored
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
            $address = Db::name('address') -> where("uid=".$uid." and default_address=1 and delete_time = 0") -> find();
            if(empty($address)){
                $this -> assign('address',4);
            }else{
                $address_arr = explode(',',$address['detailed']);
                $address['detailed'] = $address_arr[0].$address_arr[1];
                $indet_data = Db::name('indent') -> where("id",$indet_id['indet_id']) -> find();
                if($indet_data['state'] == 4){
                    $indet_data_update['id'] = $indet_id['indet_id'];
                    $indet_data_update['indent_address'] = $address['id'];
                    $indet_data_update['name'] = $address['name'];
                    $indet_data_update['phone'] = $address['phone'];
                    Db::name('indent')  -> update($indet_data_update);
                }
                $this -> assign('address',$address);
anyv authored
42 43 44 45 46 47 48 49 50 51 52 53 54
            }
        }

        $data = Db::name('indent_goods') -> where('indent_id',$indet_id['indet_id']) -> select() -> toArray();
        foreach ($data as $key => $val){
            $pricing = explode('.',$val['pricing']);
            $data[$key]['pricing0'] = $pricing[0];
            $data[$key]['pricing1'] = $pricing[1];
        }
        $money = Db::name('indent') -> where('id',$indet_id['indet_id']) -> find();
        $this -> assign('money',$money['money']);
        $this -> assign('data',$data);
        $this -> assign('indent_id',$indet_id['indet_id']);
5  
anyv authored
55 56 57 58
        return $this -> fetch();

    }
anyv authored
59
    /**
anyv authored
60
     * 显示业务员统一订单页mmmmm
anyv authored
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
     */
    public function order_salesman_ty(){

        $indet_id = $this -> request -> param();
        $data = Db::name('indent_goods') -> where('indent_id',$indet_id['indet_id']) -> select() -> toArray();
        foreach ($data as $key => $val){
            $pricing = explode('.',$val['price']);
            $data[$key]['price0'] = $pricing[0];
            $data[$key]['price1'] = $pricing[1];
        }
        $money = Db::name('indent') -> where('id',$indet_id['indet_id']) -> find();
        $money['money'] = explode('.',$money['money']);
        $this -> assign('money',$money['money']);
        $this -> assign('data',$data);
        $courier = Db::name('money_ratio') -> where('id',1) -> find();
        $this -> assign('courier',$courier['courier']);
        $this -> assign('indent_id',$indet_id['indet_id']);
anyv authored
78 79 80 81 82 83 84 85 86 87 88 89 90
        //判断这个用户所属哪个业务员
        $uid = cmf_get_current_user_id();
        $user = Db::name('my_user') -> where('uid',$uid) -> find();
        //当当前用户为老师时
        if($user['status'] == 3){
            $salesman = Db::name('my_user') -> where('id',$user['pid']) -> find();
        }
        //当前用户为学生时
        if($user['status'] == 4){
            $teacher = Db::name('my_user') -> where('id',$user['pid']) -> find();
            $salesman = Db::name('my_user') -> where('id',$teacher['pid']) -> find();
        }
        //查询这个用户下添加的学校
2  
anyv authored
91
        $school = Db::name('school') -> where("uid",$salesman['uid']) -> select() -> toArray();
5  
anyv authored
92 93 94 95 96 97 98 99 100

        if(!empty($school)){
            $grade_class = Db::name('grade_class') -> where("school_id",$school[0]['id']) -> select();

            foreach ($grade_class as $key => $val){
                $class = explode('-',$val['class']);
                for($i=$class[0];$i<=$class[1];$i++){
                    $grade_class_show[] = $val['grade'].' - '.$i."班";
                }
anyv authored
101
            }
5  
anyv authored
102
anyv authored
103
        }
5  
anyv authored
104
anyv authored
105
        $this -> assign('school',$school);
5  
anyv authored
106
        $this -> assign('grade_class_show',!empty($grade_class_show) ? $grade_class_show : '');
anyv authored
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
        return $this -> fetch();

    }

    /**
     * 商品数量加一
     */
    public function shop_cart_numadd(){

        $id = $_POST['id'];
        $data = Db::name('indent_goods') -> where('id',$id) -> find();
        if($data['number']<200){
            $res = Db::name('indent_goods') -> where('id',$id) -> setInc('number');
            $indent_id = Db::name('indent_goods') -> where('id',$id) -> find();
            Db::name('indent') -> where('id',$indent_id['indent_id']) -> setInc('money',$_POST['price']);
        }
        return true;

    }

    /**
     * 商品数量减一
     */
    public function shop_cart_numdec(){

        $id = $_POST['id'];
        $data = Db::name('indent_goods') -> where('id',$id) -> find();
        if($data['number']>1){
            Db::name('indent_goods') -> where('id',$id) -> setDec('number');
            $indent_id = Db::name('indent_goods') -> where('id',$id) -> find();
            Db::name('indent') -> where('id',$indent_id['indent_id']) -> setDec('money',$_POST['price']);
        }
        return true;

    }

    /**
     * 显示业务员快递订单页
     */
    public function order_salesman_kd(){

        $uid = cmf_get_current_user_id();
        $indent_id = $this -> request -> param();
        $money = Db::name('indent') -> where("id =".$indent_id['indet_id']) -> find();
        $indent_goods_data = Db::name('indent_goods') -> where('indent_id',$indent_id['indet_id']) -> select();
        $this -> assign('data',$indent_goods_data);
        $courier = Db::name('money_ratio') -> where('id',1) -> find();
        $this -> assign('courier',$courier['courier']);
        $money['money'] = $money['money']+$courier['courier'];
        $this -> assign('money',$money['money']);
anyv authored
158
        $address = Db::name('address') -> where("uid=".$uid." and default_address=1 and delete_time = 0") -> find();
anyv authored
159 160 161
        if(empty($address)){
            $this -> assign('address',4);
        }else{
5  
anyv authored
162
            $address_arr = explode(',',$address['detailed']);
anyv authored
163 164 165 166
            $address['detailed'] = $address_arr[0].$address_arr[1];
            $indet_data = Db::name('indent') -> where("id",$indent_id['indet_id']) -> find();
            if($indet_data['state'] == 4){
                $indet_data_update['id'] = $indent_id['indet_id'];
5  
anyv authored
167
                $indet_data_update['indent_address'] = $address['id'];
anyv authored
168 169 170 171 172 173 174 175 176 177 178
                $indet_data_update['name'] = $address['name'];
                $indet_data_update['phone'] = $address['phone'];
                Db::name('indent')  -> update($indet_data_update);
            }
            $this -> assign('address',$address);
        }
        $this -> assign('indet_id',$indent_id['indet_id']);
        return $this -> fetch();

    }
5  
anyv authored
179 180 181 182 183
    /**
     * 业务员快递去支付
     */
    public function salesman_go_pay(){
5  
anyv authored
184
        $_POST['is_courier'] = 2;
5  
anyv authored
185
        $data_update = Db::name('indent') -> update($_POST);
4  
anyv authored
186
       return true;
5  
anyv authored
187 188

    }
anyv authored
189
anyv authored
190 191 192 193 194 195 196 197 198 199 200 201 202 203
    /**
     * 取消支付时
     */
    public function cancel_pay(){

        $indent_id = $this -> request -> param();
        $data = Db::name('indent') -> where('id',$indent_id['id']) -> find();
        $money_ratio = Db::name('money_ratio') -> where('id',1) -> find();
        if($data['indent_type'] == 2 && $data['is_courier'] == 2){
            Db::name('indent') -> where('id',$indent_id['id']) -> setDec('money',$money_ratio['courier']);
        }
        $this -> redirect('index/index');

    }
anyv authored
204
5  
anyv authored
205 206 207 208 209
    /**
     * 平台商品去支付时 更新买家留言
     */
    public function goods_leave_word_update(){
anyv authored
210
        $_POST['is_courier'] = 2;
5  
anyv authored
211
        $data = Db::name('indent') -> update($_POST);
4  
anyv authored
212
        return true;
5  
anyv authored
213 214

    }
anyv authored
215
anyv authored
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
    /**
     * 点击学校时获取年级班级
     */
    public function get_grade_class(){

        $school_id = $_POST['id'];
        $grade_class = Db::name('grade_class') -> where("school_id",$school_id) -> select() -> toArray();
        if(!empty($grade_class)){
            foreach ($grade_class as $key => $val){
                $class = explode('-',$val['class']);
                for($i=$class[0];$i<=$class[1];$i++){
                    $grade_class_show[] = $val['grade'].' - '.$i."班";
                }
            }
            return json_encode($grade_class_show);
        }else{
            return false;
        }

    }

    /**
     * 业务员统一配送页去支付
     */
    public function salesman_ty_go_pay(){

        $_POST['is_courier'] = 1;
        $school_class = explode(' ',$_POST['school_class']);
        $_POST['school'] = $school_class[0];
        $_POST['grade'] = $school_class[1];
        $_POST['class'] = $school_class[3];
        $indent_data['id'] = $_POST['id'];
        $indent_data['region'] = $_POST['region'];
        $indent_data['name'] = $_POST['name'];
        $indent_data['phone'] = $_POST['phone'];
        $indent_data['is_courier'] = $_POST['is_courier'];
        $indent_data['school'] = $_POST['school'];
        $indent_data['grade'] = $_POST['grade'];
        $indent_data['class'] = $_POST['class'];
        $indent_data['leave_word'] = $_POST['leave_word'];
        $data = Db::name('indent') -> update($indent_data);
        if($data){
           return true;
        }else{
            return false;
        }

    }
anyv authored
264
anyv authored
265 266 267 268 269
    /**
     * 显示收货地址
     */
    public function go_add_address(){
7  
anyv authored
270
        $indent_id = $this -> request -> param();
anyv authored
271 272
        $uid = cmf_get_current_user_id();
        $data = Db::name('address') -> where("delete_time = 0 and uid =".$uid) ->  select() -> toArray();
5  
anyv authored
273
        $this -> assign('indent_id',$indent_id['indet_id']);
anyv authored
274 275 276 277
        $this -> assign('data',$data);
        return $this -> fetch();

    }
anyv authored
278
279
    public function get_school(){
王晓刚 authored
280 281
        $user_id = cmf_get_current_user_id();
        $my_user = Db::name('my_user')->where('uid',$user_id)->find();
王晓刚 authored
282
        $my_user2 = Db::name('my_user')->where('id',$my_user['pid'])->find();
283 284 285 286 287
        $area = $this->request->param('area',0);
        if(empty($area)){
            $this->error('缺少必要参数');
        }
        $where['region'] = ['like',"%$area%"];
王晓刚 authored
288
        $where['uid'] = ['eq',$my_user2['uid']];
289 290 291 292
        $data = Db::name('school')->where($where)->select();
        $this->success('SUCCESS','',$data);
    }
5  
anyv authored
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
    /**
     * 新增地址页
     */
    public function add_shop_address(){

        if($this -> request -> isPost()){
            $uid = cmf_get_current_user_id();
            $_POST['uid'] = $uid;
            $add = Db::name('address') -> insert($_POST);
            if($add){
                return true;
            }else{
                return false;
            }
        }else{
            $indent_id = $this -> request -> param();
            $this -> assign('indent_id',$indent_id['indet_id']);
            return $this -> fetch();
        }

    }

    /**
     * 编辑地址
     */
    public function address_edit(){

        if($this -> request -> isPost()){
            $data_update = Db::name('address') -> update($_POST);
            if($data_update){
                return true;
            }else{
                return false;
            }
        }else{
            $id = $this -> request -> param();
            $data = Db::name('address') -> where('id',$id['id']) -> find();
            $this -> assign('data',$data);
            $this -> assign('indent_id',$id['indet_id']);
            return $this -> fetch();
        }

    }
5  
anyv authored
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351














}