修改修改问题诊断状态bug

This commit is contained in:
wangxu 2025-11-12 14:54:47 +08:00
parent 9a1f0b994c
commit 3a30080330
1 changed files with 1 additions and 1 deletions

View File

@ -45,6 +45,6 @@ class CrossDbHelper(TableDbHelperBase):
def update_cross_examine_record_state_sql(self, crossid, first_date, end_date, start_hm, state):
sql = """
update cross_doctor_matedata.cross_phase_problems_record set state = '%s', end_date = '%s' where crossid = '%s' and first_date = '%s' and start_hm = %s
update cross_doctor_matedata.cross_phase_problems_record set final_state = '%s', end_date = '%s' where crossid = '%s' and first_date = '%s' and start_hm = %s
""" % (state, end_date, crossid, first_date, start_hm)
return self.do_execute(sql)