OrderController.php 18.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 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 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
<?php
namespace app\order\controller;
use app\coupons\model\CouponModel;
use app\order\model\OrderModel;
use cmf\controller\HomeBaseController;
use think\Db;

/**
 * @title 订单模块
 */
class OrderController extends HomeBaseController
{

    function _initialize()
    {
        require_once EXTEND_PATH . '/Payment.php';
    }

    /**
     * @title 下单页面
     * @description 默认访问接口
     * @author sᴏᴜʟ ᴏғ ᴄɪɴᴅᴇʀ
     * @url /order/Order/confirm
     * @method POST
     *
     * @param name:activity_id  type:int require:1 default:19 desc:上一页选中的活动id
     * @param name:schedule_id  type:int require:1 default:68 desc:上一页选中的批次id
     * @param name:num  type:int require:1 default:2 desc:上一页选中的购买数量
     */
    public function confirm()
    {
        $request = request();
        $post = $request->param();
        $coupons = new CouponModel;
        $post['num'] = (request()->param('num') == null) ? 1 : request()->param('num');
        $couponsList = $coupons->orderCoupon($post['activity_id'], $post['schedule_id'], $post['num'], session('user.id'));
        $schedule = Db::name('activity_schedule')
            ->field('id as schedule_id,start_time,end_time,maximum,real_join_num,addition_join_num,price')
            ->where(['activity_id' => $post['activity_id']])
            ->select();
        $total = 0;
        $choose = [];
        foreach ($schedule as $k => $v) {
            $v['start_time'] = date('Y.m.d', $v['start_time']);
            $v['end_time'] = date('Y.m.d', $v['end_time']);
            if ($v['schedule_id'] == $post['schedule_id']) {
                $allowMaximum = $v['maximum'] - ($v['real_join_num'] + $v['addition_join_num']);
                $total = $v['price'] * $post['num'];
                $choose = [
                    'schedule_id' => $post['schedule_id'],
                    'time_text' => $v['start_time'] . ' 至 ' . $v['end_time'],
                    'num' => $post['num'],
                    'allowMaximum' => $allowMaximum
                ];
            }
            unset($v['real_join_num']);
            unset($v['addition_join_num']);
            unset($v['maximum']);
            $schedule[$k] = $v;
        }
        $result = [
            'is_first' => Db::name('user')->where(['id' => session('user.id')])->value('is_first'),
            'activity' => Db::name('activity')->field('id as activity_id,name, is_down_payment as type')->where(['id' => $post['activity_id']])->find(),
            'schedule' => $schedule,
            'choose' => $choose,
            'coupons' => $couponsList,
            'down_price' => Db::name('activity')->where(['id' => $post['activity_id']])->value('down_price') * $post['num'],
            'total' => $total
        ];
        if (request()->isPost()) {
            echo json_encode(['data' => $result, 'code' => 20000]);
            exit();
        } else {
            require_once EXTEND_PATH . '/WeChatCommon.php';
            $wx = new \WeChatCommon();
            return $this->fetch(':confirm', [
                'data' => $result,
                'js_sdk' => $wx->js_sdk()
            ]);
        }
    }

    /**
     * @title 提交订单
     * @description 默认访问接口
     * @author sᴏᴜʟ ᴏғ ᴄɪɴᴅᴇʀ
     * @url /order/Order/done
     * @method POST
     *
     * @param name:activity_id  type:int require:1 default:19 desc:活动id
     * @param name:schedule_id  type:int require:1 default:68 desc:批次id
     * @param name:num  type:int require:1 default:2 desc:购买数量
     * @param name:escort  type:char require:1 default:同行人id字符串(逗号分隔) desc:1,2,3
     * @param name:payment  type:int require:1 default:支付方式 desc:0余额,1微信,2支付宝
     * @param name:discount_coupon_id  type:int require:0 default:112 desc:优惠券id
     * @param name:room  type:char require:1 default:1 desc:房间信息
     * @param name:desc  type:text require:1 default:0 desc:商家备注
     */
    public function done()
    {
        $request = request();
        if ($request->isPost()) {
            $post = $request->param();
            $data['user_id'] = session('user.id');
            $data['order_sn'] = date('YmdHis') . rand(0, 9999);
            $data['activity_id'] = $post['activity_id'];
            $data['schedule_id'] = $post['schedule_id'];
            $data['add_time'] = time();
            $activity = Db::name('activity')->field('is_down_payment,down_price')->where(['id' => $post['activity_id']])->find();
            $data['order_type'] = $activity['is_down_payment'];
            $data['is_use_discount_coupon'] = (empty($post['discount_coupon_id'])) ? 0 : 1;
            $data['discount_coupon_id'] = $post['discount_coupon_id'];
            $data['payment'] = $post['payment'];
            $data['status'] = 1;
            $data['room'] = $post['room'];
            $data['desc'] = $post['desc'];
            $final_price = $this->getFinalPrice($data['activity_id'], $data['schedule_id'], $post['num'], $data['discount_coupon_id']);
            $data['order_amount'] = $final_price;
            $post['escort'] = substr($post['escort'], 0, strlen($post['escort']) - 1);
            if (empty($post['escort'])) {
                echo json_encode(['msg' => '请选择出行人', 'code' => 40000]);
                exit();
            }
            $this->checkOrder($data['schedule_id'], $data['payment'], $post['escort'], $post['num'], $final_price);
            Db::startTrans();
            if (Db::name('order_info')->insert($data)) {
                $oid = Db::name('order_info')->getLastInsID();
                $detail = [];
                $explode_escort = explode(',', $post['escort']);
                for ($i = 0; $i < $post['num']; $i++) {
                    $detail[$i] = [
                        'oid' => $oid,
                        'escort_id' => $explode_escort[$i],
                        'status' => 0
                    ];
                }
                if (Db::name('order_detail')->insertAll($detail)) {
                    //☆在这就要将优惠券变为已使用☆
                    if ($data['is_use_discount_coupon'] == 1 && !empty($data['discount_coupon_id'])) {
                        $coupons = [
                            'id' => $post['discount_coupon_id'],
                            'use_time' => time(),
                            'status' => 2
                        ];
                        if (!(Db::name('discount_coupon')->update($coupons))) {
                            Db::rollback();
                        }
                    }
                    //插入订单记录表(包含订单总价)
                    $log = [
                        'oid' => $oid,
                        'order_amount' => $final_price,
                        'type' => $data['order_type']
                    ];
                    if (Db::name('order_log')->insert($log)) {
                        Db::commit();
                        //首次下单状态改变
                        Db::name('user')->update(['id' => session('user.id'), 'is_first' => 0]);

                        //微信支付
                        if ($data['payment'] == 1) {
                            $info = [
                                'attach' => $oid,
                                'openid' => session('user.openid'),
                                'body' => '萨米户外',
                                'total_fee' => $final_price
                            ];
                            $this->success('微信支付', url('user/Center/orderDetail', ['oid' => $oid]), $this->wxPay($info));
                        } //支付宝支付
                        elseif ($data['payment'] == 2) {
                            echo json_encode(['msg' => '支付宝', 'url' => url('order/Order/temp', ['oid' => $oid, 'step' => 1]), 'code' => 20000]);
                            exit();
                        } //余额支付
                        elseif ($data['payment'] == 0) {
                            $model = new OrderModel;
                            if ($model->orderCallBack($oid)) {
                                echo json_encode(['msg' => '下单成功', 'code' => 20000, 'url' => url('user/Center/orderDetail', ['oid' => $oid])]);
                                exit();
                            } else {
                                echo json_encode(['msg' => '下单失败', 'code' => 40000]);
                                exit();
                            }
                        } else {
                            echo json_encode(['msg' => '未知错误', 'code' => 40000]);
                            exit();
                        }
                    }
                }
            } else {
                Db::rollback();
                echo json_encode(['msg' => '下单失败', 'code' => 40000]);
                exit();
            }
        } else {
            echo json_encode(['msg' => '非法操作', 'code' => 40000]);
            exit();
        }
    }

    //个人中心继续付款
    public function done2()
    {
        $request = request();
        if ($request->isPost()) {
            $oid = $request->param('oid');
            $info = Db::name('order_info')->alias('o')
                ->field('status,order_type,a.down_price,s.price')
                ->join('activity a', 'o.activity_id=a.id')
                ->join('activity_schedule s ', 'o.schedule_id=s.id')
                ->where(['o.id' => $oid])->find();
            $num = Db::name('order_detail')->where(['oid' => $oid, 'status' => ['neq', 2]])->count();
            if ($info['status'] == 1) {
                if ($info['order_type'] == 0) {
                    $order_amount = $num * $info['price'];
                } elseif ($info['order_type'] == 1) {
                    $order_amount = $num * $info['down_price'];
                } else {
                    echo json_encode(['msg' => '未知错误', 'code' => 40000]);
                    exit();
                }
            } elseif ($info['status'] == 3) {
                $order_amount = $num * $info['price'];
            } else {
                echo json_encode(['msg' => '未知错误', 'code' => 40000]);
                exit();
            }
            //再次支付的支付方式,先更新支付方式
            $payment = $request->param('payment');
            Db::name('order_info')->update(['id' => $oid, 'payment' => $payment]);
            if ($payment == 0) {
                $model = new OrderModel;
                $balance = Db::name('user')->where(['id' => session('user.id')])->value('balance');
                if ($balance < $order_amount) {
                    echo json_encode(['msg' => '您的余额不足', 'code' => 40000]);
                    exit();
                }
                if ($model->orderCallBack($oid, $order_amount)) {
                    //如果是有定金订单,则需要更新order_log
                    if ($info['order_type'] == 1) {
                        Db::name('order_log')->where(['oid' => $oid])->update(['order_amount' => $order_amount]);
                    }
                    echo json_encode(['msg' => '支付成功', 'code' => 20000, 'url' => url('user/Center/orderDetail', ['oid' => $oid])]);
                    exit();
                } else {
                    echo json_encode(['msg' => '支付失败', 'code' => 40000]);
                    exit();
                }
            } elseif ($payment == 1) {
                $data = [
                    'attach' => $oid,
                    'openid' => session('user.openid'),
                    'body' => '萨米户外',
                    'total_fee' => $order_amount
                ];
                echo json_encode(['msg' => '微信支付', 'data' => $this->wxPay($data), 'code' => 20000, 'url' => url('user/Center/orderDetail', ['oid' => $oid])]);
                exit();
            } elseif ($payment == 2) {
                echo json_encode(['msg' => '支付宝', 'url' => url('order/Order/temp', ['oid' => $oid, 'step' => 2]), 'code' => 20000]);
                exit();
            } else {
                echo json_encode(['msg' => '未知错误', 'code' => 40000]);
                exit();
            }
        } else {
            echo json_encode(['msg' => '非法操作', 'code' => 40000]);
            exit();
        }
    }


    /**
     * 计算订单最终价格
     * @param $activityId
     * @param $scheduleId
     * @param $num
     * @param null $discountCouponId
     * @return float|int|mixed
     * @throws \think\db\exception\DataNotFoundException
     * @throws \think\db\exception\ModelNotFoundException
     * @throws \think\exception\DbException
     */
    private function getFinalPrice($activityId, $scheduleId, $num, $discountCouponId = null)
    {
        $info = Db::name('activity')->field('is_down_payment,down_price')->where(['id' => $activityId])->find();
        //如果有定金则支付定金*数量
        if ($info['is_down_payment'] == 1) {
            $sum = $info['down_price'] * $num;
        } //如果没有定金则支付批次金额*数量
        else {
            $price = Db::name('activity_schedule')->where(['activity_id' => $activityId, 'id' => $scheduleId])->value('price');
            $sum = $price * $num;
        }
        //如果有使用优惠券
        if (!empty($discountCouponId)) {
            //判断该优惠券是否已使用
            $coupons = Db::name('discount_coupon')->field('status,reduce,overflow')->where(['id' => $discountCouponId])->find();
            if ($coupons['status'] == 1) {
                //是否符合满减
                if ($sum >= $coupons['overflow']) {
                    $sum -= $coupons['reduce'];
                }
            }
        }
        return $sum;
    }

    /**
     * 订单校验
     * @param $scheduleId
     * @param int $payment
     * @param $escort
     * @param $num
     * @param $finalPrice
     */
    private function checkOrder($scheduleId, $payment = 0, $escort, $num, $finalPrice)
    {
        if ($scheduleId == null) {
            echo json_encode(['msg' => '请选择活动批次', 'code' => 40000]);
            exit();
        }
        //判断活动是否过期
        if (Db::name('activity_schedule')->where(['id' => $scheduleId])->value('deadline') < time()) {
            echo json_encode(['msg' => '本次活动已过期,请重新选择', 'code' => 40000]);
            exit();
        }
        //判断出行人与购买数量是否匹配
        $escortNum = (strlen($escort) == 1) ? 1 : count(explode(',', $escort));
        if ($escortNum != $num) {
            echo json_encode(['msg' => '购买数量需与出行人数量一致', 'code' => 40000]);
            exit();
        }
        //判断支付方式
        if (($payment != 0 && $payment != 1 && $payment != 2 && $payment) || $payment == null) {
            echo json_encode(['msg' => '请选择支付方式', 'code' => 40000]);
            exit();
        }
        //判断用户余额能否支持余额支付
        if ($payment == 0) {
            if (Db::name('user')->where(['id' => session('user.id')])->value('balance') < $finalPrice) {
                echo json_encode(['msg' => '您的余额不足,请选择其他支付方式', 'code' => 40000]);
                exit();
            }
        }
    }

    //微信支付
    private function wxPay($info)
    {
        $pay = new \Payment($info['attach'], $info['openid'], $info['body'], 1/*$info['total_fee'] * 100*/);
        return $pay->pay();
    }

    public function notify()
    {
        $pay = new \Payment();
        $return = $pay->handleNotify();
        if (!empty($return)) {
            $order = new OrderModel;
            $order->orderCallBack($return['attach'], $return['total_fee']);
        }
    }

    //微信支付宝中转页面
    public function temp()
    {
        if (cmf_is_wechat()) {
            return $this->fetch(':temp');
        } else {
            $request = request();
            $oid = $request->param('oid');
            $step = $request->param('step');
            $this->alipay($oid, $step);
        }
    }

    //欢迎支付宝支付
    private function alipay($oid, $step)
    {
        $info = Db::name('order_info')->alias('o')
            ->field('order_sn,status,order_type,a.down_price,s.price,a.name,s.start_time,s.end_time')
            ->join('activity a', 'o.activity_id=a.id')
            ->join('activity_schedule s ', 'o.schedule_id=s.id')
            ->where(['o.id' => $oid])->find();
        if ($step == 1) {
            $total_amount = Db::name('order_info')->where(['id' => $oid])->value('order_amount');
        } elseif ($step == 2) {
            $num = Db::name('order_detail')->where(['oid' => $oid, 'status' => ['neq', 2]])->count();
            if ($info['status'] == 1) {
                if ($info['order_type'] == 0) {
                    $order_amount = $num * $info['price'];
                } elseif ($info['order_type'] == 1) {
                    $order_amount = $num * $info['down_price'];
                } else {
                    $order_amount = 0;
                }
            } elseif ($info['status'] == 3) {
                $order_amount = $num * $info['price'];
            } else {
                $order_amount = 0;
            }
            $total_amount = $order_amount;
        } else {
            return false;
        }
        if (!cmf_is_wechat()) {
            header("Content-type: text/html; charset=utf-8");
            require_once EXTEND_PATH . '/alipay/wappay/service/AlipayTradeService.php';
            require_once EXTEND_PATH . '/alipay/wappay/buildermodel/AlipayTradeWapPayContentBuilder.php';
            require EXTEND_PATH . '/alipay/config.php';
            $out_trade_no = $info['order_sn'] . $step;
            $subject = $info['name'] . '(' . date('Y-m-d', $info['start_time']) . ')';
            $body = $info['name'] . '(' . date('Y-m-d', $info['start_time']) . ')';
            //超时时间
            $timeout_express = "1m";

            $payRequestBuilder = new \AlipayTradeWapPayContentBuilder();
            $payRequestBuilder->setBody($body);
            $payRequestBuilder->setSubject($subject);
            $payRequestBuilder->setOutTradeNo($out_trade_no);
            $payRequestBuilder->setTotalAmount(0.01);
            $payRequestBuilder->setTimeExpress($timeout_express);

            $payResponse = new \AlipayTradeService($config);
            $payResponse->wapPay($payRequestBuilder, $config['return_url'], $config['notify_url']);
        } else {
            $this->redirect(url('order/Order/alipayDo'));
        }
    }

    //支付宝异步回调
    public function alipayNotify()
    {
        print_r(cache('zfb'));
        $zfb = cache('zfb');
        $zfb['out_trade_no'] = '20185125101691';
        require EXTEND_PATH . '/alipay/config.php';
        require_once EXTEND_PATH . '/alipay/wappay/service/AlipayTradeService.php';
        $alipay = new \AlipayTradeService($config);
        $return = request()->param();
        //cache('zfb', $return);
        echo $alipay->check(1);
    }

}