去除查询大数据方案异常时,当状态为自动处结时不返回历史详情的逻辑

This commit is contained in:
wangxu 2026-04-30 15:29:31 +08:00
parent 934e369f12
commit bf5e3c92b2
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ def query_cross_examine_records_detail(params):
final_state, level_color, first_date = 0, 0, '' final_state, level_color, first_date = 0, 0, ''
tp_start, tp_end = '', '' tp_start, tp_end = '', ''
for row in cross_examine_records: for row in cross_examine_records:
if row['final_state'] == 6 or row['level_color'] == 4: if row['level_color'] == 4:
continue continue
final_state = row['final_state'] final_state = row['final_state']
first_date = row['first_date'] first_date = row['first_date']