add workflow 天润Smart-ccc工单数据,dev

This commit is contained in:
root 2024-07-03 16:55:36 +08:00
parent 2a322896ce
commit aaf6aa1fc2
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ def load_detail_data_to_db(ids, dataList):
json_object = json.dumps(dataList)
idstr = ','.join(ids)
cur=conn.cursor()
sql="update data_api.cc_details_ids_exp set is_loaded = '1' where api_id = '6a977523d60f46788e6004549027bb8e' and id in (%s); INSERT INTO data_api.cc_ticket_details (id,api_id,data,total_num,is_loaded,status,request_tm,execute_tm,remark) values (%s,%s,%s,%s,'0','0',current_timestamp(0),current_timestamp(0),'')"
sql="update data_api.cc_details_ids_exp set is_loaded = '1' where api_id = '6a977523d60f46788e6004549027bb8e' and id in (%s); update data_api.cc_ticket_details set is_loaded = '1' where api_id = '6a977523d60f46788e6004549027bb8e'; INSERT INTO data_api.cc_ticket_details (id,api_id,data,total_num,is_loaded,status,request_tm,execute_tm,remark) values (%s,%s,%s,%s,'0','0',current_timestamp(0),current_timestamp(0),'')"
cur.execute(sql,[idstr,dataId,'6a977523d60f46788e6004549027bb8e', json_object, total])
conn.commit()
cur.close()