正在显示
3 个修改的文件
包含
42 行增加
和
1 行删除
application/admin/model/OrderRefund.php
0 → 100644
1 | +<?php | ||
2 | + | ||
3 | +namespace app\admin\model; | ||
4 | + | ||
5 | +use think\Model; | ||
6 | +use app\common\model\Area; | ||
7 | + | ||
8 | +class OrderRefund extends Model | ||
9 | +{ | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + // 表名 | ||
16 | + protected $name = 'order_refund'; | ||
17 | + | ||
18 | + // 自动写入时间戳字段 | ||
19 | + protected $autoWriteTimestamp = 'int'; | ||
20 | + | ||
21 | + // 定义时间戳字段名 | ||
22 | + protected $createTime = 'createtime'; | ||
23 | + protected $updateTime = 'updatetime'; | ||
24 | + protected $deleteTime = false; | ||
25 | + | ||
26 | +} |
@@ -135,7 +135,7 @@ class Order extends Model | @@ -135,7 +135,7 @@ class Order extends Model | ||
135 | } | 135 | } |
136 | // 用掉积分 | 136 | // 用掉积分 |
137 | if($order['score']['score'] > 0){ | 137 | if($order['score']['score'] > 0){ |
138 | - User::score(-$order['score'],$order['user_id'],'订单支付'); | 138 | + User::score(-$order['score']['score'],$order['user_id'],'订单支付'); |
139 | } | 139 | } |
140 | Db::commit(); | 140 | Db::commit(); |
141 | return true; | 141 | return true; |
application/common/model/OrderRefund.php
0 → 100644
-
请 注册 或 登录 后发表评论