2013-04-10 05:38:50 +00:00
|
|
|
import webnotes, webnotes.utils, os
|
|
|
|
from webnotes.modules.export_file import export_to_files
|
|
|
|
|
|
|
|
def execute():
|
2013-04-10 08:24:13 +00:00
|
|
|
webnotes.reload_doc("core", "doctype", "file_data")
|
2013-04-10 08:47:45 +00:00
|
|
|
webnotes.reset_perms("File Data")
|
2013-04-10 08:24:13 +00:00
|
|
|
|
2013-04-10 05:38:50 +00:00
|
|
|
singles = webnotes.conn.sql_list("""select name from tabDocType
|
|
|
|
where ifnull(issingle,0)=1""")
|
|
|
|
for doctype in webnotes.conn.sql_list("""select parent from tabDocField where
|
|
|
|
fieldname='file_list' and fieldtype='Text'"""):
|
|
|
|
if doctype in singles:
|
|
|
|
doc = webnotes.doc(doctype, doctype)
|
2013-04-10 10:46:59 +00:00
|
|
|
if doc.file_list:
|
|
|
|
update_for_doc(doctype, doc)
|
|
|
|
webnotes.conn.set_value(doctype, None, "file_list", None)
|
2013-04-10 05:38:50 +00:00
|
|
|
else:
|
|
|
|
try:
|
|
|
|
for doc in webnotes.conn.sql("""select name, file_list from `tab%s` where
|
|
|
|
ifnull(file_list, '')!=''""" % doctype, as_dict=True):
|
|
|
|
update_for_doc(doctype, doc)
|
|
|
|
webnotes.conn.commit()
|
|
|
|
webnotes.conn.sql("""alter table `tab%s` drop column file_list""" % doctype)
|
|
|
|
except Exception, e:
|
|
|
|
if e.args[0]!=1054: raise e
|
|
|
|
|
|
|
|
webnotes.conn.sql("""delete from tabDocField where fieldname='file_list'
|
|
|
|
and parent=%s""", doctype)
|
|
|
|
export_to_files([["DocType", doctype]])
|
|
|
|
|
|
|
|
def update_for_doc(doctype, doc):
|
|
|
|
for filedata in doc.file_list.split("\n"):
|
|
|
|
if not filedata:
|
|
|
|
continue
|
|
|
|
|
2013-04-10 08:50:56 +00:00
|
|
|
filedata = filedata.split(",")
|
|
|
|
if len(filedata)==2:
|
|
|
|
filename, fileid = filedata[0], filedata[1]
|
|
|
|
else:
|
|
|
|
continue
|
2013-04-10 05:38:50 +00:00
|
|
|
|
|
|
|
exists = True
|
|
|
|
if not (filename.startswith("http://") or filename.startswith("https://")):
|
2013-04-10 08:44:48 +00:00
|
|
|
if not os.path.exists(webnotes.utils.get_path("public", "files", filename)):
|
2013-04-10 05:38:50 +00:00
|
|
|
exists = False
|
|
|
|
|
|
|
|
if exists:
|
|
|
|
webnotes.conn.sql("""update `tabFile Data`
|
|
|
|
set attached_to_doctype=%s, attached_to_name=%s
|
|
|
|
where name=%s""", (doctype, doc.name, fileid))
|
|
|
|
|
|
|
|
else:
|
|
|
|
webnotes.conn.sql("""delete from `tabFile Data` where name=%s""",
|
|
|
|
fileid)
|