Commit 566116ac authored by 赵威's avatar 赵威

add printer

parent 31a0f1e1
......@@ -91,15 +91,16 @@ def update_tag3_user_portrait_by_event(cl_id):
list(second_demands_dict.keys()) + list(first_positions_dict.keys()) + list(second_positions_dict.keys()) +
list(projects_dict.keys()))
print(events)
# print(first_solutions_lst)
# print(second_solutions_lst)
# print(first_demands_lst)
# print(second_demands_lst)
# print(first_positions_lst)
# print(second_positions_lst)
# print(projects_lst)
for e in events:
first_solutions = ",".join(first_solutions_dict.get(e, []))
second_solutions = ",".join(second_solutions_dict.get(e, []))
first_demands = ",".join(first_demands_dict.get(e, []))
second_demands = ",".join(second_demands_dict.get(e, []))
first_positions = ",".join(first_positions_dict.get(e, []))
second_positions = ",".join(second_positions_dict.get(e, []))
projects = ",".join(projects_dict.get(e, []))
print(e, first_solutions, second_solutions, first_demands, second_demands, first_positions, second_positions,
projects)
# write_user_portrait_by_event
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment