123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <?php
- namespace app\controller\api\store\order;
- use ln\basic\BaseController;
- use app\common\repositories\store\order\StoreOrderProductRepository;
- use app\common\repositories\store\order\StoreOrderRepository;
- use app\common\repositories\store\order\StoreRefundOrderRepository;
- use app\common\repositories\store\shipping\ExpressRepository;
- use app\validate\api\BackGoodsValidate;
- use app\validate\api\StoreRefundOrderValidate;
- use ln\services\SwooleTaskService;
- use think\App;
- use function GuzzleHttp\Psr7\str;
- /**
- * Class StoreRefundOrder
- * @package app\controller\api\store\order
- * @author zfy
- * @day 2020/6/12
- */
- class StoreRefundOrder extends BaseController
- {
- /**
- * @var StoreRefundOrderRepository
- */
- protected $repository;
- /**
- * StoreRefundOrder constructor.
- * @param App $app
- * @param StoreRefundOrderRepository $repository
- */
- public function __construct(App $app, StoreRefundOrderRepository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * @param $id
- * @param StoreOrderRepository $orderRepository
- * @return mixed
- * @author zfy
- * @day 2020/6/12
- */
- public function batchProduct($id, StoreOrderRepository $orderRepository)
- {
- return app('json')->success($orderRepository->refundProduct($id, $this->request->uid()));
- }
- /**
- * @param $id
- * @param StoreOrderProductRepository $orderProductRepository
- * @param StoreOrderRepository $storeOrderRepository
- * @return \think\response\Json
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author zfy
- * @day 2020/9/2
- */
- public function product($id, StoreOrderProductRepository $orderProductRepository, StoreOrderRepository $storeOrderRepository)
- {
- $_id = (string)$this->request->param('ids', '');
- $ids = explode(',', $_id);
- if (!$_id || !count($ids))
- return app('json')->fail('请选择退款商品');
- $uid = $this->request->uid();
- $order = $storeOrderRepository->userOrder(intval($id), $uid);
- if (!$order)
- return app('json')->fail('订单状态有误');
- if (!$order->refund_status)
- return app('json')->fail('订单已过退款/退货期限');
- if ($order->status < 0) return app('json')->fail('订单已退款');
- if ($order->status == 10) return app('json')->fail('订单不支持退款');
- $product = $orderProductRepository->userRefundProducts($ids, $uid, intval($id));
- if (!$product)
- return app('json')->fail('商品不存在或已退款');
- if (count($product) != count($ids))
- return app('json')->fail('请选择正确的退款商品');
- $total_refund_price = $this->repository->getRefundTotalPrice($product);
- $postage_price = !$order->status ? floatval($order->pay_postage) : 0;
- $status = $order->status;
- $activity_type = $order->activity_type;
- return app('json')->success(compact('activity_type', 'total_refund_price', 'product', 'postage_price', 'status'));
- }
- /**
- * @param $id
- * @param StoreRefundOrderValidate $validate
- * @param StoreOrderRepository $orderRepository
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author zfy
- * @day 2020/6/12
- */
- public function refund($id, StoreRefundOrderValidate $validate, StoreOrderRepository $orderRepository)
- {
- $data = $this->request->params(['type', 'refund_type', 'num', 'ids', 'refund_message', 'mark', 'refund_price', 'pics']);
- $validate->check($data);
- $ids = explode(',', $data['ids']);
- $type = $data['type'];
- $num = $data['num'];
- unset($data['num'], $data['ids'], $data['type']);
- if ($type == 1 && count($ids) > 1)
- return app('json')->fail('请选择正确的退款商品');
- $uid = $this->request->uid();
- $order = $orderRepository->userOrder($id, $uid);
- if (!$order) return app('json')->fail('订单状态错误');
- if (!$order->refund_status)
- return app('json')->fail('订单已过退款/退货期限');
- if ($order->status < 0) return app('json')->fail('订单已退款');
- if ($order->status == 10) return app('json')->fail('订单不支持退款');
- if ($type == 1) {
- $refund = $this->repository->refund($order, (int)$ids[0], $num, $uid, $data);
- } else {
- $refund = $this->repository->refunds($order, $ids, $uid, $data);
- }
- return app('json')->success('申请退款成功', ['refund_order_id' => $refund->refund_order_id]);
- }
- /**
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author zfy
- * @day 2020/6/12
- */
- public function lst()
- {
- $type = $this->request->param('type');
- [$page, $limit] = $this->getPage();
- return app('json')->success($this->repository->userList([
- 'type' => $type,
- 'uid' => $this->request->uid(),
- 'is_del' => 0,
- ], $page, $limit));
- }
- /**
- * @param $id
- * @return mixed
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author zfy
- * @day 2020/6/12
- */
- public function detail($id)
- {
- $refund = $this->repository->userDetail(intval($id), $this->request->uid());
- if (!$refund)
- return app('json')->fail('退款单不存在');
- return app('json')->success($refund->toArray());
- }
- /**
- * @param $id
- * @return mixed
- * @throws \think\db\exception\DbException
- * @author zfy
- * @day 2020/6/12
- */
- public function del($id)
- {
- $this->repository->userDel(intval($id), $this->request->uid());
- return app('json')->success('删除成功');
- }
- public function back_goods($id, BackGoodsValidate $validate, ExpressRepository $expressRepository)
- {
- $data = $this->request->params(['delivery_type', 'delivery_id', 'delivery_phone', 'delivery_mark', 'delivery_pics']);
- $validate->check($data);
- if (!$expressRepository->merFieldExists('name', $data['delivery_type'], null, null, true))
- return app('json')->fail('不支持该快递公司');
- $this->repository->backGoods($this->request->uid(), $id, $data);
- return app('json')->success('提交成功');
- }
- public function express($id)
- {
- if (!$refund = $this->repository->getWhere(['status' => 2, 'refund_order_id' => $id, 'uid' => $this->request->uid()]))
- return app('json')->fail('退款单不存在');
- $express = $this->repository->express($id);
- return app('json')->success(compact('refund', 'express'));
- }
- }
|