| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace app\controller\api\store\order;
- use app\common\repositories\store\order\PresellOrderRepository;
- use app\common\repositories\store\order\StoreOrderRepository;
- use ln\basic\BaseController;
- use think\App;
- use think\exception\ValidateException;
- class PresellOrder extends BaseController
- {
- protected $repository;
- public function __construct(App $app, PresellOrderRepository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- public function pay($id)
- {
- $type = $this->request->param('type');
- if (!in_array($type, StoreOrderRepository::PAY_TYPE))
- return app('json')->fail('请选择正确的支付方式');
- $order = $this->repository->userOrder($this->request->uid(), intval($id));
- if (!$order)
- throw new ValidateException('尾款订单不存在');
- if ($order->paid)
- throw new ValidateException('已支付');
- if (!$order->status)
- throw new ValidateException('尾款订单以失效');
- if (strtotime($order->final_start_time) > time())
- throw new ValidateException('未到尾款支付时间');
- if (strtotime($order->final_end_time) < time())
- throw new ValidateException('已过尾款支付时间');
- $order->pay_type = array_search($type, StoreOrderRepository::PAY_TYPE);
- $order->save();
- if ($order['pay_price'] == 0) {
- $this->repository->paySuccess($order);
- return app('json')->status('success', '支付成功', ['order_id' => $order['presell_order_id']]);
- }
- try {
- return $this->repository->pay($type, $this->request->userInfo(), $order, $this->request->param('return_url'), $this->request->isApp());
- } catch (\Exception $e) {
- return app('json')->status('error', $e->getMessage(), ['order_id' => $order->presell_order_id]);
- }
- }
- }
|