2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2012-07-19 08:10:31 +00:00
|
|
|
from __future__ import unicode_literals
|
2012-07-11 07:48:58 +00:00
|
|
|
def execute():
|
|
|
|
import webnotes
|
|
|
|
webnotes.conn.sql("""update tabAccount set freeze_account='No' where freeze_account is null""")
|
2012-07-12 10:31:20 +00:00
|
|
|
webnotes.conn.sql("""update `tabPurchase Taxes and Charges`
|
|
|
|
set category='Valuation and Total' where category='For Both'""")
|
|
|
|
webnotes.conn.sql("""update `tabPurchase Taxes and Charges`
|
|
|
|
set category='Valuation' where category='For Valuation'""")
|
|
|
|
webnotes.conn.sql("""update `tabPurchase Taxes and Charges`
|
|
|
|
set category='Total' where category='For Total'""")
|