dever 6 лет назад
Родитель
Сommit
f4e5823d25
1 измененных файлов с 9 добавлено и 8 удалено
  1. 9 8
      journal/lib/Pay.php

+ 9 - 8
journal/lib/Pay.php

@@ -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));
             }