切换导航条
此项目
正在载入...
登录
何书鹏
/
silk
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
何书鹏
2020-08-01 19:09:32 +0800
提交
96c8e4277fcb5f72867a16cbfe7e29399f029462
1 个父辈
075f8338
1 个管道 的构建
通过
耗费 0 秒
11
变更
3
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
42 行增加
和
1 行删除
application/admin/model/OrderRefund.php
application/common/model/Order.php
application/common/model/OrderRefund.php
application/admin/model/OrderRefund.php
0 → 100644
查看文件 @
96c8e42
<?php
namespace
app\admin\model
;
use
think\Model
;
use
app\common\model\Area
;
class
OrderRefund
extends
Model
{
// 表名
protected
$name
=
'order_refund'
;
// 自动写入时间戳字段
protected
$autoWriteTimestamp
=
'int'
;
// 定义时间戳字段名
protected
$createTime
=
'createtime'
;
protected
$updateTime
=
'updatetime'
;
protected
$deleteTime
=
false
;
}
...
...
application/common/model/Order.php
查看文件 @
96c8e42
...
...
@@ -135,7 +135,7 @@ class Order extends Model
}
// 用掉积分
if
(
$order
[
'score'
][
'score'
]
>
0
){
User
::
score
(
-
$order
[
'score'
],
$order
[
'user_id'
],
'订单支付'
);
User
::
score
(
-
$order
[
'score'
]
[
'score'
]
,
$order
[
'user_id'
],
'订单支付'
);
}
Db
::
commit
();
return
true
;
...
...
application/common/model/OrderRefund.php
0 → 100644
查看文件 @
96c8e42
<?php
namespace
app\common\model
;
use
think\Model
;
class
OrderRefund
extends
Model
{
// 开启自动写入时间戳字段
protected
$autoWriteTimestamp
=
'int'
;
// 定义时间戳字段名
protected
$createTime
=
'createtime'
;
protected
$updateTime
=
'updatetime'
;
}
...
...
请
注册
或
登录
后发表评论