Merge branch 'latest' of github.com:webnotes/erpnext into latest

This commit is contained in:
Nabin Hait 2012-02-15 17:31:56 +05:30
commit 470e18a380
3 changed files with 58 additions and 2 deletions

View File

@ -172,7 +172,6 @@ def update_security(args=''):
res = server_tools.gateway_utils.change_password('', args['new_password'], args['user'], args['sys_admin_pwd'])
if 'Traceback' not in res['message']:
webnotes.msgprint(res['message'])
else:
webnotes.conn.sql("update tabProfile set password=password(%s) where name=%s", (args['new_password'], args['user']))
else: webnotes.msgprint('Settings Updated')

View File

@ -10,3 +10,4 @@ def execute():
patches.jan_mar_2012.website.website.execute()
patches.jan_mar_2012.website.cleanups.execute()
patches.jan_mar_2012.website.domain_list.execute()
patches.jan_mar_2012.website.file_data_rename.execute()

View File

@ -0,0 +1,56 @@
import webnotes
def execute():
"""
* Replace / in names with - in tabFile Data
* Change autoname in DocType File Data to FileData-.#####
* Change FileData/ to FileData- in tabSeries
* In each table containing file_list column, replace / with - in the data of that column
"""
replace_name_in_file_data()
change_autoname_in_tabfile_data()
change_file_data_in_tabseries()
replace_file_list_column_entries()
def replace_name_in_file_data():
"""
Change / to - in tabFile Data name column entries
"""
files = webnotes.conn.sql("SELECT name FROM `tabFile Data`")
for f in files:
if "/" in f[0]:
webnotes.conn.sql("UPDATE `tabFile Data` SET name=%s WHERE name=%s", (f[0].replace('/', '-'), f[0]))
def change_autoname_in_tabfile_data():
"""
Change autoname in DocType File Data to FileData-.#####
"""
webnotes.conn.sql("UPDATE `tabDocType` SET autoname='FileData-.#####' WHERE name='File Data'")
def change_file_data_in_tabseries():
"""
Change FileData/ to FileData- in tabSeries
"""
webnotes.conn.sql("UPDATE `tabSeries` SET name='FileData-' WHERE name='FileData/'")
def replace_file_list_column_entries():
"""
In each table containing file_list column, replace / with - in the data of that column
"""
tables = webnotes.conn.sql("SHOW TABLES")
tab_list = []
for tab in tables:
columns = webnotes.conn.sql("DESC `%s`" % tab[0])
if 'file_list' in [c[0] for c in columns]:
tab_list.append(tab[0])
for tab in tab_list:
data = webnotes.conn.sql("SELECT name, file_list FROM `%s`" % tab)
for name, file_list in data:
if file_list and "/" in file_list:
webnotes.conn.sql("UPDATE `%s` SET file_list='%s' WHERE name='%s'" \
% (tab, file_list.replace('/', '-'), name))