16 lines
477 B
Python
16 lines
477 B
Python
|
def execute():
|
||
|
"""
|
||
|
* Replace EURO with EUR
|
||
|
* Delete EURO from tabCurrency
|
||
|
"""
|
||
|
import webnotes
|
||
|
tables = webnotes.conn.sql("show tables")
|
||
|
for (tab,) in tables:
|
||
|
desc = webnotes.conn.sql("desc `%s`" % tab, as_dict=1)
|
||
|
for d in desc:
|
||
|
if "currency" in d.get('Field'):
|
||
|
field = d.get('Field')
|
||
|
webnotes.conn.sql("""\
|
||
|
update `%s` set `%s`='EUR'
|
||
|
where `%s`='EURO'""" % (tab, field, field))
|
||
|
webnotes.conn.sql("delete from `tabCurrency` where name='EURO'")
|