Commit 35264e7d authored by lixiaofang's avatar lixiaofang

add

parent 0440d296
......@@ -5,18 +5,20 @@ import traceback
from libs.tools import getMd5Digest
from trans2es.commons.words_utils import QueryWordAttr, get_tips_word_type
from trans2es.commons.commons import get_tips_suggest_list_v1
from trans2es.models.strategy_search_word import StrategyHistoryQueryWords
class SearchWord(object):
@classmethod
def get_search_query(self, instance):
try:
ret_list = list()
item_dict = dict()
item_dict["id"] = getMd5Digest(str(instance.keyword))
item_dict["ori_name"] = instance.keyword
item_dict["is_online"] = False if instance.is_delete else True
item_dict["is_online"] = False if not QueryWordAttr.get_search_query_results_num(instance.keyword) else True
item_dict["order_weight"] = QueryWordAttr.get_hot_search_query_word_weight(instance.keyword)
item_dict["results_num"] = QueryWordAttr.get_search_query_results_num(instance.keyword)
item_dict["type_flag"] = get_tips_word_type(instance.keyword)
......
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