123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?php
- /*
- * @Author: xiaohai zmhwork@qq.com
- * @Date: 2025-03-14 17:27:51
- * @LastEditors: xiaohai zmhwork@qq.com
- * @LastEditTime: 2025-03-24 20:54:33
- * @FilePath: \opkpm\app\shop\controller\order\OrderRenew.php
- * @Description: 续费订单
- */
-
- namespace app\shop\controller\order;
-
- use app\common\basics\ShopBase;
- use app\common\server\JsonServer;
- use app\shop\logic\order\OrderRenewLogic;
- use Nette\Utils\Json;
-
- class OrderRenew extends ShopBase
- {
- public function lists()
- {
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- $get['shop_id'] = $this->shop_id;
- return JsonServer::success('', OrderRenewLogic::lists($get));
- }
-
- //自动取消订单
- $shop_id = $this->shop_id;
- OrderRenewLogic::cancelOrder($shop_id);
-
-
- return view('');
- }
-
- public function renewLists()
- {
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- $get['shop_id'] = $this->shop_id;
- $get['type_id'] = $this->shop['hksy_type'];
- return JsonServer::success('', OrderRenewLogic::renewLists($get));
- }
-
- return view('');
- }
-
- public function renewLog()
- {
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- $get['shop_id'] = $this->shop_id;
- $get['type_id'] = 1;
- return JsonServer::success('', OrderRenewLogic::renewLog($get));
- }
-
- return view('');
- }
-
- public function renewMonthLog()
- {
- if ($this->request->isAjax()) {
- $get = $this->request->get();
- $get['shop_id'] = $this->shop_id;
- $get['type_id'] = 2;
- return JsonServer::success('', OrderRenewLogic::renewLog($get));
- }
-
- return view('');
- }
-
- public function buy()
- {
- $get = $this->request->get();
- $get['shop_id'] = $this->shop_id;
- $id = $get['id'] ?? 0;
- $data = OrderRenewLogic::buy($id);
-
- return view('', ['detail' => $data]);
- }
-
- public function add()
- {
- if ($this->request->isPost()) {
- $post = $this->request->post();
- $post['shop_id'] = $this->shop_id;
- $data = OrderRenewLogic::add($post);
- if (!$data) {
- return JsonServer::error(OrderRenewLogic::getError());
- }
-
- return JsonServer::success('', $data);
- }
-
- return JsonServer::error('请求方式错误');
- }
-
- public function cancel()
- {
- if ($this->request->isPost()) {
- $post = $this->request->post();
- $post['shop_id'] = $this->shop_id;
- $data = OrderRenewLogic::cancel($post);
- if (!$data) {
- return JsonServer::error(OrderRenewLogic::getError());
- }
-
- return JsonServer::success('操作成功');
- }
-
- return JsonServer::error('请求方式错误');
- }
-
- public function payPage()
- {
- $get = $this->request->get();
- $get['shop_id'] = $this->shop_id;
- $data = OrderRenewLogic::payPage($get);
-
- if($data[0] === 1){
- return JsonServer::error($data[1]);
- }
-
- return view('', ['detail' => $data[1]]);
- }
-
- public function payWay()
- {
- if ($this->request->isPost()) {
- $post = $this->request->post();
- $post['shop_id'] = $this->shop_id;
- $data = OrderRenewLogic::payWay($post);
- if (!$data) {
- return JsonServer::error(OrderRenewLogic::getError());
- }
-
- return JsonServer::success('', ['page' => $data]);
- }
-
- return JsonServer::error('请求方式错误');
- }
- }
|