jared 3 years ago
parent
commit
6b8e92261f
1 changed files with 11 additions and 0 deletions
  1. 11 0
      swire_shop_item_list.py

+ 11 - 0
swire_shop_item_list.py

@@ -131,6 +131,17 @@ def get_next_job(db,repeat=False,repkw=None,repnum=None):
         result['num']=repnum
 
     if 'REP' in repkw:
+        repnum=None
+        cursor = db.query('select  num from swire_store_list where num not in (select num from conv_log) order by rand() limit 1')
+        for c in cursor:
+            repnum=c['num']
+            break
+        if repnum is None:
+            cursor = db.query('select  num from swire_store_list  order by rand() limit 1')
+            for c in cursor:
+                repnum=c['num']
+                break
+
 
 #        cursor = db.query('select  lat_txt,lon_txt,keyword,num from swire_store_list order by rand() limit 1')
         cursor = db.query('select  lat_txt,lon_txt,keyword,num from swire_store_list where num="'+str(repnum)+'" limit 1')