This commit is contained in:
root 2019-08-12 17:28:37 +08:00
parent 17b52f943b
commit d6a66ccea6
6 changed files with 6 additions and 8 deletions

View File

@ -14,4 +14,4 @@ if not is_debug:
(1016, 6001, 'shop_1016'), (1016, 6001, 'shop_new_1016'), (1016, 6001, 'tap_1016'),
(1016, 6001, 'tap_new_1016'), (2001, 6001, 'tap_2001'), (2001, 6001, 'tap_new_2001'))
else:
event_list = ((1001, 6001, 'items_produce'), (1001, 6001, 'items_consum'),(1001, 6001, 'share_map'))
event_list = ((1004, 6001, 'items_produce'), (1004, 6001, 'items_consum'),(1004, 6001, 'share_map'))

View File

@ -349,6 +349,7 @@ class GetFromTga:
if line:
try:
temp['num'], temp['u_num'], temp['activity_id_str'] = line
print(f"123 {temp}")
temp['activity_id'] = activity_ids.get(temp['activity_id_str'])
self.write_tga_files(temp)
except Exception:

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
import pymongo
import pdb
def get_activity_ids():
# get data from mongodb
@ -9,12 +9,9 @@ def get_activity_ids():
myclient = pymongo.MongoClient("mongodb://10.10.5.6:27017/")
mydb = myclient["garfield-production"]
mycol = mydb["system_dics"]
myquery = {type: 'share_cfg', 'deleted': False}
myquery = {'type': 'share_cfg', 'deleted': False}
out_area = {'key': 1, 'value': 1, '_id': 0}
all = []
all = {}
for x in mycol.find(myquery, out_area):
temp = {}
a, b = x
temp[a] = b
all.append(temp)
all[x['key']]=x['value']
return all