切换导航条
此项目
正在载入...
登录
李涵
/
integral
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
lihan
6 years ago
提交
fc7b9ab3636d13e90bde045b6930b8e3fe7d6fb4
1 个父辈
1b5e6f02
1 个管道 的构建
通过
耗费 0 秒
确认收货
变更
1
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
22 行增加
和
32 行删除
app/pay/controller/PayController.php
app/pay/controller/PayController.php
查看文件 @
fc7b9ab
...
...
@@ -116,38 +116,28 @@ class PayController extends HomeBaseController
}
}
//组合支付
elseif
(
$order
[
'pay_type'
]
==
2
)
{
// $pay_cash = (int)($request->param('pay_cash')); //支付的金额
// $pay_num = (int)($request->param('pay_num')); //支付的积分
// $balance = Db::name('user')->where(['id' => session('user.id')])->value('balance');
// if (1 > 2) {
// $this->success('您的积分不足', '', false);
// } else {
// //先减余额
// //$balance -= $pay_num;
// //Db::name('user')->update(['id' => session('user.id'), 'balance' => $balance]);
// Db::commit();
// //session('goods.id', null);
// Db::name('zj_cart')->where(['id' => ['in', session('cart.id')]])->delete();
// //session('cart.id', null);
// $info = [
// 'attach' => $oid,
// 'openid' => session('user.openid'),
// 'body' => '微信支付-天生红商城',
// 'total_fee' => 1
// ];
// $this->wxPay($info);
// }
Db
::
commit
();
//session('goods.id', null);
Db
::
name
(
'zj_cart'
)
->
where
([
'id'
=>
[
'in'
,
session
(
'cart.id'
)]])
->
delete
();
//session('cart.id', null);
$info
=
[
'attach'
=>
$oid
,
'openid'
=>
session
(
'user.openid'
),
'body'
=>
'微信支付-天生红商城'
,
'total_fee'
=>
1
];
$this
->
wxPay
(
$info
);
$pay_cash
=
(
int
)(
$request
->
param
(
'pay_cash'
));
//支付的金额
$pay_num
=
(
int
)(
$request
->
param
(
'pay_num'
));
//支付的积分
$balance
=
Db
::
name
(
'user'
)
->
where
([
'id'
=>
session
(
'user.id'
)])
->
value
(
'balance'
);
if
(
1
>
2
)
{
$this
->
success
(
'您的积分不足'
,
''
,
false
);
}
else
{
//先减余额
$balance
-=
$pay_num
;
Db
::
name
(
'user'
)
->
update
([
'id'
=>
session
(
'user.id'
),
'balance'
=>
$balance
]);
Db
::
commit
();
session
(
'goods.id'
,
null
);
Db
::
name
(
'zj_cart'
)
->
where
([
'id'
=>
[
'in'
,
session
(
'cart.id'
)]])
->
delete
();
session
(
'cart.id'
,
null
);
$info
=
[
'attach'
=>
$oid
,
'openid'
=>
session
(
'user.openid'
),
'body'
=>
'微信支付-天生红商城'
,
'total_fee'
=>
$pay_cash
];
$this
->
wxPay
(
$info
);
}
}
else
{
$this
->
success
(
'请选择支付方式'
,
''
,
false
);
}
...
...
请
注册
或
登录
后发表评论