截流自动化的商城平台
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.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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-17 16:24:30
  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. return JsonServer::success('', OrderRenewLogic::renewLists($get));
  35. }
  36. return view('');
  37. }
  38. public function buy()
  39. {
  40. $get = $this->request->get();
  41. $get['shop_id'] = $this->shop_id;
  42. $id = $get['id'] ?? 0;
  43. $data = OrderRenewLogic::buy($id);
  44. return view('', ['detail' => $data]);
  45. }
  46. public function add()
  47. {
  48. if ($this->request->isPost()) {
  49. $post = $this->request->post();
  50. $post['shop_id'] = $this->shop_id;
  51. $data = OrderRenewLogic::add($post);
  52. if (!$data) {
  53. return JsonServer::error(OrderRenewLogic::getError());
  54. }
  55. return JsonServer::success('', $data);
  56. }
  57. return JsonServer::error('请求方式错误');
  58. }
  59. public function cancel()
  60. {
  61. if ($this->request->isPost()) {
  62. $post = $this->request->post();
  63. $post['shop_id'] = $this->shop_id;
  64. $data = OrderRenewLogic::cancel($post);
  65. if (!$data) {
  66. return JsonServer::error(OrderRenewLogic::getError());
  67. }
  68. return JsonServer::success('操作成功');
  69. }
  70. return JsonServer::error('请求方式错误');
  71. }
  72. public function payPage()
  73. {
  74. $get = $this->request->get();
  75. $get['shop_id'] = $this->shop_id;
  76. $data = OrderRenewLogic::payPage($get);
  77. if($data[0] === 1){
  78. return JsonServer::error($data[1]);
  79. }
  80. return view('', ['detail' => $data[1]]);
  81. }
  82. public function payWay()
  83. {
  84. if ($this->request->isPost()) {
  85. $post = $this->request->post();
  86. $post['shop_id'] = $this->shop_id;
  87. $data = OrderRenewLogic::payWay($post);
  88. if (!$data) {
  89. return JsonServer::error(OrderRenewLogic::getError());
  90. }
  91. return JsonServer::success('', ['page' => $data]);
  92. }
  93. return JsonServer::error('请求方式错误');
  94. }
  95. }