截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

OrderRenewLogic.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. <?php
  2. /*
  3. * @Author: xiaohai zmhwork@qq.com
  4. * @Date: 2025-03-14 17:38:50
  5. * @LastEditors: xiaohai zmhwork@qq.com
  6. * @LastEditTime: 2025-03-24 21:14:25
  7. * @FilePath: \opkpm\app\shop\logic\order\OrderRenewLogic.php
  8. * @Description: 续费订单逻辑处理
  9. */
  10. namespace app\shop\logic\order;
  11. use app\common\model\shop\OrderRenew;
  12. use app\common\model\shop\ShopGoodsRenew;
  13. use app\common\basics\Logic;
  14. use app\common\enum\OrderEnum;
  15. use app\common\model\shop\Shop;
  16. use app\common\model\shop\ShopHkLog;
  17. use app\common\server\AliPayServer;
  18. use app\common\server\YansongdaAliPayServer;
  19. use app\shop\validate\order\OrderRenewValidate;
  20. use think\facade\Db;
  21. use think\facade\Log;
  22. use Yansongda\Pay\Pay;
  23. class OrderRenewLogic extends Logic
  24. {
  25. public static function lists($get)
  26. {
  27. $page = $get['page'] ?? 1;
  28. $limit = $get['limit'] ?? 10;
  29. $where[] = ['del', '=', 0];
  30. $where[] = ['shop_id', '=', $get['shop_id']];
  31. $count = OrderRenew::where($where)->count();
  32. $lists = OrderRenew::where($where)
  33. ->page($page, $limit)
  34. ->order('id', 'desc')
  35. ->select()->toArray();
  36. foreach ($lists as $key => $value) {
  37. $lists[$key]['type_str'] = $value['renew_type_id'] == 0 ? '包月' : '按量付费';
  38. $lists[$key]['order_status_str'] = OrderEnum::getOrderStatus($value['order_status']);
  39. $lists[$key]['pay_status_str'] = OrderEnum::getPayStatus($value['pay_status']);
  40. $lists[$key]['pay_way_str'] = $value['pay_way'] == 1 ? '微信' : '支付宝';
  41. $lists[$key]['pay_time_str'] = $value['pay_time'] ? date('Y-m-d H:i:s', $value['pay_time']) : '';
  42. }
  43. return ['count' => $count, 'lists' => $lists];
  44. }
  45. public static function renewLists($get)
  46. {
  47. $page = $get['page'] ?? 1;
  48. $limit = $get['limit'] ?? 10;
  49. $where = [
  50. ['del', '=', 0],
  51. ['type_id', '=', $get['type_id']]
  52. ];
  53. if (!empty($get['name']) && $get['name']) {
  54. $where[] = ['name', 'like', '%' . $get['name'] . '%'];
  55. }
  56. // var_dump($get, $where);
  57. $count = ShopGoodsRenew::where($where)->count();
  58. $lists = ShopGoodsRenew::where($where)
  59. ->page($page, $limit)
  60. ->order('id', 'desc')
  61. ->select()->toArray();
  62. foreach ($lists as $key => $value) {
  63. $lists[$key]['type_str'] = $value['type_id'] == 0 ? '包月' : '按量付费';
  64. $lists[$key]['status_str'] = $value['status'] == 0 ? '禁用' : '启用';
  65. }
  66. return ['count' => $count, 'lists' => $lists];
  67. }
  68. public static function buy($id)
  69. {
  70. $where = [
  71. ['del', '=', 0],
  72. ['status', '=', 1],
  73. ['id', '=', $id]
  74. ];
  75. $info = ShopGoodsRenew::where($where)->find();
  76. if (!$info) {
  77. static::$error = '数据不存在';
  78. return false;
  79. }
  80. return $info->toArray();
  81. }
  82. public static function cancelOrder($shop_id)
  83. {
  84. //dump("dffd");
  85. //查找未付款 待支付
  86. //获取1个小时前的时间戳
  87. $oneHourAgo = strtotime("-1 hour", time());
  88. $where = [
  89. ['shop_id','=',$shop_id],
  90. ['del', '=', 0],
  91. ['pay_status', '=', 0],
  92. ['order_status', '=', 0],
  93. ['create_time', '<', $oneHourAgo]
  94. ];
  95. OrderRenew::where($where)->update([
  96. 'order_status' => 4,
  97. 'cancel_time' => time(),
  98. 'update_time' => time(),
  99. ]);
  100. }
  101. public static function cancel($post)
  102. {
  103. try {
  104. validate(OrderRenewValidate::class)->scene('cancel')->check($post);
  105. } catch (\Exception $e) {
  106. static::$error = $e->getMessage();
  107. return false;
  108. }
  109. $where = [
  110. ['del', '=', 0],
  111. ['id', '=', $post['id']],
  112. ['shop_id', '=', $post['shop_id']],
  113. ];
  114. $info = OrderRenew::where($where)->find();
  115. if (!$info) {
  116. self::$error = '数据不存在';
  117. return false;
  118. }
  119. if ($info->order_status > 0) {
  120. self::$error = '订单状态不可取消';
  121. return false;
  122. }
  123. $info->order_status = 4;
  124. $info->save();
  125. return true;
  126. }
  127. public static function add($post)
  128. {
  129. try {
  130. validate(OrderRenewValidate::class)->scene('add')->check($post);
  131. } catch (\Exception $e) {
  132. static::$error = $e->getMessage();
  133. return false;
  134. }
  135. $model = new OrderRenew();
  136. $name = $model->getName();
  137. $post['order_sn'] = createSn($name, 'order_sn');
  138. $post['renew_name'] = $post['name'];
  139. $post['renew_image'] = $post['image'] ?? "";
  140. $post['renew_desc'] = $post['desc'];
  141. $post['renew_type_id'] = $post['type_id'];
  142. $post['renew_price'] = $post['price'];
  143. $post['renew_op_count'] = $post['op_count'];
  144. $post['total_amount'] = $post['renew_price'] * $post['renew_num'];
  145. $post['total_num'] = $post['renew_num'];
  146. $post['order_amount'] = $post['total_amount'];
  147. $info = $model->create($post);
  148. return $info->toArray();
  149. }
  150. public static function payPage($get)
  151. {
  152. $where = [
  153. ['del', '=', 0],
  154. ['id', '=', $get['id']],
  155. ['shop_id', '=', $get['shop_id']],
  156. ];
  157. $info = OrderRenew::where($where)->find();
  158. //dump($info->toArray());
  159. $good = ShopGoodsRenew::where([
  160. ['id', '=', $info['renew_id']],
  161. ])->find();
  162. if(empty($good)){
  163. $msg = '商品已删除';
  164. return [1,$msg];
  165. }
  166. if((int)$good['status'] === 0){
  167. $msg = '商品已下架';
  168. return [1,$msg];
  169. }
  170. if (!$info) {
  171. $msg = '数据不存在';
  172. return [1,$msg];
  173. }
  174. return [0,$info->toArray()];
  175. }
  176. private static function aliPay($info, $time_expire)
  177. {
  178. // 支付宝PC端支付
  179. $domain = request()->domain();
  180. $return_url = (string) url('shop/order.OrderRenew/lists', [], false, true);
  181. $notify_url = (string) url('shop/order.Pay/aliNotify', [], false, true);
  182. $ali_data = [
  183. 'out_trade_no' => $info['order_sn'],
  184. 'total_amount' => $info['order_amount'],
  185. 'subject' => '订单:' . $info['order_sn'],
  186. // 'return_url' => $domain . '/shop/order.OrderRenew/lists',
  187. 'return_url' => $return_url,
  188. 'time_expire' => date('Y-m-d H:i:s', $time_expire),
  189. ];
  190. $aliPayConf = YansongdaAliPayServer::config();
  191. $aliPayConf['notify_url'] = $notify_url;
  192. $aliPay = Pay::alipay($aliPayConf);
  193. // $ali_data['notify_url'] = $domain . '/shop/order.Pay/aliNotify';
  194. $ali_data['notify_url'] = $notify_url;
  195. return $aliPay->web($ali_data)->getContent();
  196. }
  197. public static function payWay($post)
  198. {
  199. try {
  200. validate(OrderRenewValidate::class)->scene('pay_way')->check($post);
  201. } catch (\Exception $e) {
  202. static::$error = $e->getMessage();
  203. return false;
  204. }
  205. $where = [
  206. ['del', '=', 0],
  207. ['id', '=', $post['id']],
  208. ['shop_id', '=', $post['shop_id']],
  209. ];
  210. $info = OrderRenew::where($where)->find();
  211. if (!$info) {
  212. static::$error = '数据不存在';
  213. return false;
  214. }
  215. if ($info['order_status'] > 0) {
  216. static::$error = '订单不处于可支付状态下';
  217. return false;
  218. }
  219. //计算是否已过期
  220. $oneHourAgo = strtotime("-1 hour", time());
  221. if(strtotime($info->create_time) < $oneHourAgo){
  222. //已过期
  223. $info->order_status = 4;
  224. $info->cancel_time = time();
  225. $info->update_time = time();
  226. $info->save();
  227. self::$error = '订单已过期';
  228. return false;
  229. }
  230. $time_expire = time() + 3600 * 2;
  231. $info->pay_way = $post['pay_way'];
  232. $info->time_expire = $time_expire - 600;
  233. $info->save();
  234. if ($post['pay_way'] == 2) {
  235. return self::aliPay($info, $time_expire);
  236. }
  237. self::$error = '暂不支持该支付方式';
  238. return false;
  239. }
  240. private static function changeHkCount($info, $time)
  241. {
  242. // 添加用户套餐时间或者数量
  243. // 操作数量
  244. $op_count = $info['renew_op_count'] * $info['total_num'];
  245. $shop = Shop::find($info['shop_id']);
  246. // 添加用户套餐时间或者数量
  247. $hk = new ShopHkLog();
  248. $hk->shop_id = $shop['id'];
  249. $hk->source_id = $info->id;
  250. $hk->change_count = $op_count;
  251. // 包月
  252. if ($info['renew_type_id'] == 0) {
  253. $old_expire_time = $shop->getData('expire_time');
  254. if ($old_expire_time < $time) {
  255. $old_expire_time = $time;
  256. }
  257. $di = \DateInterval::createFromDateString(strval($op_count) . ' months');
  258. $dt = date_create_from_format('Y-m-d H:i:s', date('Y-m-d H:i:s', $old_expire_time))->add($di);
  259. $dt_str = $dt->format('Y-m-d 00:00:00');
  260. $shop->expire_time = $dt->getTimestamp();
  261. $hk->source_type = 200;
  262. $hk->before_date = date('Y-m-d H:i:s', $old_expire_time);
  263. $hk->after_date = date('Y-m-d H:i:s', $dt->getTimestamp());
  264. $hk->remark = '[' . $info->renew_name . '],订单号:' . $info->order_sn . ',增加月份数:' . $op_count;
  265. $hk->save();
  266. } else {
  267. // 按量付费
  268. // 添加数量记录
  269. $old_hksy_count = $shop->hksy_count;
  270. //$hk = new ShopHkLog();
  271. //$hk->shop_id = $shop['id'];
  272. //$hk->source_id = $info->id;
  273. //$hk->change_count = $op_count;
  274. $hk->left_count = $op_count + $old_hksy_count;
  275. $hk->remark = '[' . $info->renew_name . '],订单号:' . $info->order_sn . ',增加总数:' . $op_count;
  276. $hk->save();
  277. $shop->hksy_count += $op_count;
  278. }
  279. $shop->save();
  280. return true;
  281. }
  282. public static function renewLog($get)
  283. {
  284. $page = $get['page'] ?? 1;
  285. $limit = $get['limit'] ?? 10;
  286. $where = [];
  287. $where[] = ['shop_id', '=', $get['shop_id']];
  288. $type_id = $get['type_id'] ?? 1;
  289. if ($type_id == 1) {
  290. //搜索
  291. $source_type = $get['source_type'] ?? 0;
  292. if($source_type != 0){
  293. $where[] = ['source_type', '=', $source_type];
  294. }else{
  295. $where[] = ['source_type', '>=', 100];
  296. $where[] = ['source_type', '<', 200];
  297. }
  298. } else {
  299. $where[] = ['source_type', '>=', 200];
  300. $where[] = ['source_type', '<', 300];
  301. }
  302. $count = ShopHkLog::where($where)->count();
  303. $lists = ShopHkLog::where($where)
  304. ->page($page, $limit)
  305. ->order('id', 'desc')
  306. ->select()->toArray();
  307. return ['count' => $count, 'lists' => $lists];
  308. }
  309. private static function aliPaySucc($order_sn, $result)
  310. {
  311. $time = time();
  312. Db::startTrans();
  313. try {
  314. $where = [
  315. ['del', '=', 0],
  316. ['order_sn', '=', $order_sn],
  317. ];
  318. $info = OrderRenew::where($where)->find();
  319. if (empty($info)) {
  320. static::$error = '数据不存在';
  321. return false;
  322. }
  323. $info->order_status = 3;
  324. $info->pay_status = 1;
  325. $info->pay_time = $time;
  326. $info->notify_content = $result->toJson();
  327. $info->buyer_id = $result->buyer_open_id;
  328. $info->trade_no = $result->trade_no;
  329. $info->save();
  330. self::changeHkCount($info, $time);
  331. Db::commit();
  332. } catch (\Exception $e) {
  333. Db::rollback();
  334. Log::error('aliPaySucc 支付宝回调错误:' . $e->getMessage());
  335. static::$error = $e->getMessage();
  336. return false;
  337. }
  338. return true;
  339. }
  340. public static function aliNotify($post)
  341. {
  342. try {
  343. $aliPayConf = YansongdaAliPayServer::config();
  344. $aliPay = Pay::alipay($aliPayConf);
  345. $result = $aliPay->verify($post);
  346. } catch (\Exception $e) {
  347. static::$error = $e->getMessage();
  348. return false;
  349. }
  350. // 支付成功
  351. if ($result->trade_status === 'TRADE_SUCCESS') {
  352. self::aliPaySucc($result->out_trade_no, $result);
  353. }
  354. return true;
  355. }
  356. }