作者 lihan
1 个管道 的构建 通过 耗费 0 秒

充值卡测试

... ... @@ -33,10 +33,11 @@ class ChargeController extends HomeBaseController
{
$pay = new \Payment();
$return = $pay->handleNotify();
session('op', $return['attach']);
if (!empty($return)) {
$info = Db::name('charge')->where(['id' => $return['attach']])->find();
$balance = $info['denomination'] + $info['bonus'];
session('op', $return['attach']);
Db::startTrans();
if (Db::name('user')->where(['openid' => $return['openid'], 'id' => session('user.id')])->setInc('balance', $balance)) {
$data = [
... ...