Commit 9e5b5ae1 authored by 段英荣's avatar 段英荣

modify

parent 414fc597
...@@ -115,8 +115,8 @@ class TopicTransfer(object): ...@@ -115,8 +115,8 @@ class TopicTransfer(object):
if is_excellect: if is_excellect:
res["is_excellent"] = 1 res["is_excellent"] = 1
else: else:
excelllect_object = ExcellentTopic.objects.filter(topic_id=instance.id,is_online=True,is_deleted=False).first() excelllect_object = ExcellentTopic.objects.filter(topic_id=instance.id).first()
if excelllect_object: if excelllect_object and excelllect_object.is_online and not excelllect_object.is_deleted:
res["is_excellent"] = 1 res["is_excellent"] = 1
else: else:
res["is_excellent"] = 0 res["is_excellent"] = 0
......
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