Переглянути джерело

修改后台-合并冲突

Your Name 1 тиждень тому
джерело
коміт
c451914c81

+ 25
- 1
app/shop/controller/order/OrderRenew.php Переглянути файл

@@ -3,7 +3,7 @@
3 3
  * @Author: xiaohai zmhwork@qq.com
4 4
  * @Date: 2025-03-14 17:27:51
5 5
  * @LastEditors: xiaohai zmhwork@qq.com
6
- * @LastEditTime: 2025-03-17 16:24:30
6
+ * @LastEditTime: 2025-03-22 18:10:24
7 7
  * @FilePath: \opkpm\app\shop\controller\order\OrderRenew.php
8 8
  * @Description: 续费订单
9 9
  */
@@ -44,6 +44,30 @@ class OrderRenew extends ShopBase
44 44
         return view('');
45 45
     }
46 46
 
47
+    public function renewLog()
48
+    {
49
+        if ($this->request->isAjax()) {
50
+            $get = $this->request->get();
51
+            $get['shop_id'] = $this->shop_id;
52
+            $get['type_id'] = 1;
53
+            return JsonServer::success('', OrderRenewLogic::renewLog($get));
54
+        }
55
+
56
+        return view('');
57
+    }
58
+
59
+    public function renewMonthLog()
60
+    {
61
+        if ($this->request->isAjax()) {
62
+            $get = $this->request->get();
63
+            $get['shop_id'] = $this->shop_id;
64
+            $get['type_id'] = 2;
65
+            return JsonServer::success('', OrderRenewLogic::renewLog($get));
66
+        }
67
+
68
+        return view('');
69
+    }
70
+
47 71
     public function buy()
48 72
     {
49 73
         $get = $this->request->get();

+ 46
- 7
app/shop/logic/order/OrderRenewLogic.php Переглянути файл

@@ -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();

+ 47
- 0
app/shop/view/order/order_renew/renew_log.html Переглянути файл

@@ -0,0 +1,47 @@
1
+<!--
2
+ * @Author: xiaohai zmhwork@qq.com
3
+ * @Date: 2025-03-22 18:02:49
4
+ * @LastEditors: xiaohai zmhwork@qq.com
5
+ * @LastEditTime: 2025-03-22 18:07:46
6
+ * @FilePath: \opkpm\app\shop\view\order\order_renew\renew_log.html
7
+ * @Description: 记录
8
+-->
9
+{layout name="layout1" /}
10
+
11
+<div class="wrapper">
12
+    <div class="layui-card">
13
+        <!-- 操作提示 -->
14
+        <div class="layui-card-body">
15
+            <div class="layui-collapse" style="border:1px dashed #c4c4c4">
16
+                <div class="layui-colla-item">
17
+                    <h2 class="layui-colla-title like-layui-colla-title">操作提示</h2>
18
+                    <div class="layui-colla-content layui-show">
19
+                        <p>*按量付费-续费套餐日志记录。</p>
20
+                    </div>
21
+                </div>
22
+            </div>
23
+        </div>
24
+
25
+        <!-- 主体区域 -->
26
+        <div class="layui-card-body">
27
+            <table id="like-table-lists" lay-filter="like-table-lists"></table>
28
+        </div>
29
+
30
+    </div>
31
+</div>
32
+
33
+<script>
34
+    layui.use(["table", "form"], function () {
35
+        var table = layui.table;
36
+        var form = layui.form;
37
+
38
+
39
+        like.tableLists("#like-table-lists", "{:url()}", [
40
+            { field: "id", width: 80, title: "ID" }
41
+            , { field: "change_count", width: 200, align: "center", title: "变动数量" }
42
+            , { field: "left_count", width: 200, align: "center", title: "变动后总数" }
43
+            , { field: "remark", width: 300, align: "center", title: "备注" }
44
+            , { field: "create_time", width: 200, align: "center", title: "变动时间" }
45
+        ]);
46
+    })
47
+</script>

+ 48
- 0
app/shop/view/order/order_renew/renew_month_log.html Переглянути файл

@@ -0,0 +1,48 @@
1
+<!--
2
+ * @Author: xiaohai zmhwork@qq.com
3
+ * @Date: 2025-03-22 18:02:49
4
+ * @LastEditors: xiaohai zmhwork@qq.com
5
+ * @LastEditTime: 2025-03-22 18:22:14
6
+ * @FilePath: \opkpm\app\shop\view\order\order_renew\renew_month_log.html
7
+ * @Description: 记录
8
+-->
9
+{layout name="layout1" /}
10
+
11
+<div class="wrapper">
12
+    <div class="layui-card">
13
+        <!-- 操作提示 -->
14
+        <div class="layui-card-body">
15
+            <div class="layui-collapse" style="border:1px dashed #c4c4c4">
16
+                <div class="layui-colla-item">
17
+                    <h2 class="layui-colla-title like-layui-colla-title">操作提示</h2>
18
+                    <div class="layui-colla-content layui-show">
19
+                        <p>*包月-续费套餐日志记录。</p>
20
+                    </div>
21
+                </div>
22
+            </div>
23
+        </div>
24
+
25
+        <!-- 主体区域 -->
26
+        <div class="layui-card-body">
27
+            <table id="like-table-lists" lay-filter="like-table-lists"></table>
28
+        </div>
29
+
30
+    </div>
31
+</div>
32
+
33
+<script>
34
+    layui.use(["table", "form"], function () {
35
+        var table = layui.table;
36
+        var form = layui.form;
37
+
38
+
39
+        like.tableLists("#like-table-lists", "{:url()}", [
40
+            { field: "id", width: 80, title: "ID" }
41
+            , { field: "change_count", width: 200, align: "center", title: "变动数量" }
42
+            , { field: "before_date", width: 200, align: "center", title: "变动前到期时间" }
43
+            , { field: "after_date", width: 200, align: "center", title: "变动后到期时间" }
44
+            , { field: "remark", width: 300, align: "center", title: "备注" }
45
+            , { field: "create_time", width: 200, align: "center", title: "变动时间" }
46
+        ]);
47
+    })
48
+</script>

+ 0
- 7
public/.htaccess Переглянути файл

@@ -1,7 +0,0 @@
1
-<IfModule mod_rewrite.c>
2
-   Options +FollowSymlinks
3
-   RewriteEngine On
4
-   RewriteCond %{REQUEST_FILENAME} !-d
5
-   RewriteCond %{REQUEST_FILENAME} !-f
6
-   RewriteRule ^(.*)$ index.php [E=PATH_INFO:$1,QSA,PT,L]
7
-</IfModule>

Завантаження…
Відмінити
Зберегти