Browse Source

File ext file path validation

master
venkataakhil 1 year ago
parent
commit
1ab39640c3
  1. 4
      smart_service/apis/master_api.py

4
smart_service/apis/master_api.py

@ -436,7 +436,9 @@ def change_file_dir():
frappe.log_error("New path:", str(new_full_path)) frappe.log_error("New path:", str(new_full_path))
if os.path.exists(os.path.join(base_url,new_full_path)): if os.path.exists(os.path.join(base_url,new_full_path)):
frappe.log_error("final", str('ext changed File exists in local')) frappe.log_error("final", str('ext changed File exists in local:'+ str(os.path.join(base_url,new_full_path)))
else:
frappe.log_error("final", str('File Not exists' + str(os.path.join(base_url,new_full_path)))
# frappe.db.sql(f''' # frappe.db.sql(f'''
# update tabProcedure_Details set file = '{new_full_path}' where content_type = 'File' and name = '{d['name']}'; # update tabProcedure_Details set file = '{new_full_path}' where content_type = 'File' and name = '{d['name']}';
# ''') # ''')

Loading…
Cancel
Save