|
@@ -53,8 +53,16 @@ class Pay
|
|
|
Dever::load('message/lib/data')->push(-1, $uid, '购买提醒', '购买成功,您获得了 '.$journal['name'].' 的阅读资格!', $type = 1);
|
|
|
}
|
|
|
|
|
|
- # 发模板消息
|
|
|
$user = Dever::db('passport/user')->one($uid);
|
|
|
+
|
|
|
+ # 发短信
|
|
|
+ if (isset($user['mobile']) && $user['mobile'] && Dever::project('sms')) {
|
|
|
+ $send = array();
|
|
|
+ $send['name'] = $journal['name'];
|
|
|
+ Dever::load('sms/api.send', 'buy_journal', $user['mobile'], $send);
|
|
|
+ }
|
|
|
+
|
|
|
+ # 发模板消息
|
|
|
$wechat = Dever::db('passport/wechat')->one(array('uid' => $uid));
|
|
|
if ($wechat && Dever::project('wechat_applet')) {
|
|
|
$send['key'] = 'buy_journal';
|
|
@@ -73,13 +81,6 @@ class Pay
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- # 发短信
|
|
|
- if (isset($user['mobile']) && $user['mobile'] && Dever::project('sms')) {
|
|
|
- $send = array();
|
|
|
- $send['name'] = $journal['name'];
|
|
|
- Dever::load('sms/api.send', 'buy_journal', $user['mobile'], $send);
|
|
|
- }
|
|
|
-
|
|
|
} else {
|
|
|
Dever::db('journal/order')->update(array('where_id' => $order['id'], 'status' => 3));
|
|
|
}
|