截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OrderRenew.php 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. /*
  3. * @Author: xiaohai zmhwork@qq.com
  4. * @Date: 2025-03-14 17:27:51
  5. * @LastEditors: xiaohai zmhwork@qq.com
  6. * @LastEditTime: 2025-03-24 20:54:33
  7. * @FilePath: \opkpm\app\shop\controller\order\OrderRenew.php
  8. * @Description: 续费订单
  9. */
  10. namespace app\shop\controller\order;
  11. use app\common\basics\ShopBase;
  12. use app\common\server\JsonServer;
  13. use app\shop\logic\order\OrderRenewLogic;
  14. use Nette\Utils\Json;
  15. class OrderRenew extends ShopBase
  16. {
  17. public function lists()
  18. {
  19. if ($this->request->isAjax()) {
  20. $get = $this->request->get();
  21. $get['shop_id'] = $this->shop_id;
  22. return JsonServer::success('', OrderRenewLogic::lists($get));
  23. }
  24. //自动取消订单
  25. $shop_id = $this->shop_id;
  26. OrderRenewLogic::cancelOrder($shop_id);
  27. return view('');
  28. }
  29. public function renewLists()
  30. {
  31. if ($this->request->isAjax()) {
  32. $get = $this->request->get();
  33. $get['shop_id'] = $this->shop_id;
  34. $get['type_id'] = $this->shop['hksy_type'];
  35. return JsonServer::success('', OrderRenewLogic::renewLists($get));
  36. }
  37. return view('');
  38. }
  39. public function renewLog()
  40. {
  41. if ($this->request->isAjax()) {
  42. $get = $this->request->get();
  43. $get['shop_id'] = $this->shop_id;
  44. $get['type_id'] = 1;
  45. return JsonServer::success('', OrderRenewLogic::renewLog($get));
  46. }
  47. return view('');
  48. }
  49. public function renewMonthLog()
  50. {
  51. if ($this->request->isAjax()) {
  52. $get = $this->request->get();
  53. $get['shop_id'] = $this->shop_id;
  54. $get['type_id'] = 2;
  55. return JsonServer::success('', OrderRenewLogic::renewLog($get));
  56. }
  57. return view('');
  58. }
  59. public function buy()
  60. {
  61. $get = $this->request->get();
  62. $get['shop_id'] = $this->shop_id;
  63. $id = $get['id'] ?? 0;
  64. $data = OrderRenewLogic::buy($id);
  65. return view('', ['detail' => $data]);
  66. }
  67. public function add()
  68. {
  69. if ($this->request->isPost()) {
  70. $post = $this->request->post();
  71. $post['shop_id'] = $this->shop_id;
  72. $data = OrderRenewLogic::add($post);
  73. if (!$data) {
  74. return JsonServer::error(OrderRenewLogic::getError());
  75. }
  76. return JsonServer::success('', $data);
  77. }
  78. return JsonServer::error('请求方式错误');
  79. }
  80. public function cancel()
  81. {
  82. if ($this->request->isPost()) {
  83. $post = $this->request->post();
  84. $post['shop_id'] = $this->shop_id;
  85. $data = OrderRenewLogic::cancel($post);
  86. if (!$data) {
  87. return JsonServer::error(OrderRenewLogic::getError());
  88. }
  89. return JsonServer::success('操作成功');
  90. }
  91. return JsonServer::error('请求方式错误');
  92. }
  93. public function payPage()
  94. {
  95. $get = $this->request->get();
  96. $get['shop_id'] = $this->shop_id;
  97. $data = OrderRenewLogic::payPage($get);
  98. if($data[0] === 1){
  99. return JsonServer::error($data[1]);
  100. }
  101. return view('', ['detail' => $data[1]]);
  102. }
  103. public function payWay()
  104. {
  105. if ($this->request->isPost()) {
  106. $post = $this->request->post();
  107. $post['shop_id'] = $this->shop_id;
  108. $data = OrderRenewLogic::payWay($post);
  109. if (!$data) {
  110. return JsonServer::error(OrderRenewLogic::getError());
  111. }
  112. return JsonServer::success('', ['page' => $data]);
  113. }
  114. return JsonServer::error('请求方式错误');
  115. }
  116. }