|
@@ -3,7 +3,7 @@
|
3
|
3
|
* @Author: xiaohai zmhwork@qq.com
|
4
|
4
|
* @Date: 2025-03-14 17:38:50
|
5
|
5
|
* @LastEditors: xiaohai zmhwork@qq.com
|
6
|
|
- * @LastEditTime: 2025-03-17 18:43:05
|
|
6
|
+ * @LastEditTime: 2025-03-22 18:24:44
|
7
|
7
|
* @FilePath: \opkpm\app\shop\logic\order\OrderRenewLogic.php
|
8
|
8
|
* @Description: 续费订单逻辑处理
|
9
|
9
|
*/
|
|
@@ -158,7 +158,7 @@ class OrderRenewLogic extends Logic
|
158
|
158
|
$name = $model->getName();
|
159
|
159
|
$post['order_sn'] = createSn($name, 'order_sn');
|
160
|
160
|
$post['renew_name'] = $post['name'];
|
161
|
|
- $post['renew_image'] = $post['image']??"";
|
|
161
|
+ $post['renew_image'] = $post['image'] ?? "";
|
162
|
162
|
$post['renew_desc'] = $post['desc'];
|
163
|
163
|
$post['renew_type_id'] = $post['type_id'];
|
164
|
164
|
$post['renew_price'] = $post['price'];
|
|
@@ -291,6 +291,13 @@ class OrderRenewLogic extends Logic
|
291
|
291
|
// 操作数量
|
292
|
292
|
$op_count = $info['renew_op_count'] * $info['total_num'];
|
293
|
293
|
$shop = Shop::find($info['shop_id']);
|
|
294
|
+
|
|
295
|
+ // 添加用户套餐时间或者数量
|
|
296
|
+ $hk = new ShopHkLog();
|
|
297
|
+ $hk->shop_id = $shop['id'];
|
|
298
|
+ $hk->source_id = $info->id;
|
|
299
|
+ $hk->change_count = $op_count;
|
|
300
|
+
|
294
|
301
|
// 包月
|
295
|
302
|
if ($info['renew_type_id'] == 0) {
|
296
|
303
|
$old_expire_time = $shop['expire_time'];
|
|
@@ -302,16 +309,23 @@ class OrderRenewLogic extends Logic
|
302
|
309
|
$dt = date_create_from_format('Y-m-d H:i:s', date('Y-m-d H:i:s', $old_expire_time))->add($di);
|
303
|
310
|
$dt_str = $dt->format('Y-m-d 00:00:00');
|
304
|
311
|
$shop->expire_time = strtotime($dt_str);
|
|
312
|
+
|
|
313
|
+ $hk->source_type = 200;
|
|
314
|
+ $hk->before_date = date('Y-m-d H:i:s', $old_expire_time);
|
|
315
|
+ $hk->after_date = date('Y-m-d H:i:s', $shop->expire_time);
|
|
316
|
+
|
|
317
|
+ $hk->remark = '[' . $info->renew_name . '],订单号:' . $info->order_sn . ',增加月份数:' . $op_count;
|
|
318
|
+ $hk->save();
|
305
|
319
|
} else {
|
306
|
320
|
// 按量付费
|
307
|
321
|
// 添加数量记录
|
308
|
322
|
$old_hksy_count = $shop->hksy_count;
|
309
|
|
- $hk = new ShopHkLog();
|
310
|
|
- $hk->shop_id = $shop['id'];
|
311
|
|
- $hk->source_id = $info->id;
|
312
|
|
- $hk->change_count = $op_count;
|
|
323
|
+ //$hk = new ShopHkLog();
|
|
324
|
+ //$hk->shop_id = $shop['id'];
|
|
325
|
+ //$hk->source_id = $info->id;
|
|
326
|
+ //$hk->change_count = $op_count;
|
313
|
327
|
$hk->left_count = $op_count + $old_hksy_count;
|
314
|
|
- $hk->remark = '[' . $info->renew_name . '],订单号:' . $info->order_sn;
|
|
328
|
+ $hk->remark = '[' . $info->renew_name . '],订单号:' . $info->order_sn . ',增加总数:' . $op_count;
|
315
|
329
|
$hk->save();
|
316
|
330
|
|
317
|
331
|
$shop->hksy_count += $op_count;
|
|
@@ -322,6 +336,31 @@ class OrderRenewLogic extends Logic
|
322
|
336
|
return true;
|
323
|
337
|
}
|
324
|
338
|
|
|
339
|
+ public static function renewLog($get)
|
|
340
|
+ {
|
|
341
|
+ $page = $get['page'] ?? 1;
|
|
342
|
+ $limit = $get['limit'] ?? 10;
|
|
343
|
+
|
|
344
|
+ $where = [];
|
|
345
|
+ $where[] = ['shop_id', '=', $get['shop_id']];
|
|
346
|
+ $type_id = $get['type_id'] ?? 1;
|
|
347
|
+ if ($type_id == 1) {
|
|
348
|
+ $where[] = ['source_type', '>=', 100];
|
|
349
|
+ $where[] = ['source_type', '<', 200];
|
|
350
|
+ } else {
|
|
351
|
+ $where[] = ['source_type', '>=', 200];
|
|
352
|
+ $where[] = ['source_type', '<', 300];
|
|
353
|
+ }
|
|
354
|
+
|
|
355
|
+ $count = ShopHkLog::where($where)->count();
|
|
356
|
+ $lists = ShopHkLog::where($where)
|
|
357
|
+ ->page($page, $limit)
|
|
358
|
+ ->order('id', 'desc')
|
|
359
|
+ ->select()->toArray();
|
|
360
|
+
|
|
361
|
+ return ['count' => $count, 'lists' => $lists];
|
|
362
|
+ }
|
|
363
|
+
|
325
|
364
|
private static function aliPaySucc($order_sn, $result)
|
326
|
365
|
{
|
327
|
366
|
$time = time();
|