...
|
...
|
@@ -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 = [
|
...
|
...
|
|