修复路口问题诊断详情bug

This commit is contained in:
wangxu 2025-11-14 14:59:16 +08:00
parent 51e5e591fe
commit 6b2f831329
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class CrossDbHelper(TableDbHelperBase):
def query_cross_examine_record_detail(self, start_hm, first_date, crossid): def query_cross_examine_record_detail(self, start_hm, first_date, crossid):
sql = """ sql = """
select * from cross_doctor_matedata.cross_phase_problems_record_detail where crossid = '%s' and start_hm = '%s' and first_date = %s select * from cross_doctor_matedata.cross_phase_problems_record where crossid = '%s' and start_hm = '%s' and first_date = %s
""" % (crossid, start_hm, first_date) """ % (crossid, start_hm, first_date)
return self.do_select(sql) return self.do_select(sql)