rabin 5 years ago
parent
commit
f3c722a725
1 changed files with 5 additions and 1 deletions
  1. 5 1
      app/act/src/Order.php

+ 5 - 1
app/act/src/Order.php

@@ -215,7 +215,11 @@ class Order extends Core
 
         $journal = $this->getJournal();
         $buy = $this->getBuy();
-        $star = $this->getStar();
+        $star = false;
+        if (Dever::input('star_id')) {
+            $star = $this->getStar();
+        }
+        
 
         $user = Dever::db('passport/user')->one($this->data['uid']);
         $wechat = Dever::db('passport/wechat')->one(array('uid' => $this->data['uid'], 'type' => 1, 'system_id' => $journal['cate_id']));