mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-07 07:20:26 +00:00
error fixed in patch
This commit is contained in:
@@ -2,10 +2,10 @@ def execute():
|
|||||||
import webnotes
|
import webnotes
|
||||||
webnotes.conn.sql("""update `tabAccount`
|
webnotes.conn.sql("""update `tabAccount`
|
||||||
set account_type = 'Chargeable'
|
set account_type = 'Chargeable'
|
||||||
where name in ('CENVAT Capital Goods', 'CENVAT Service Tax', 'CENVAT Service Tax Cess 1', 'CENVAT Service Tax Cess 2')
|
where account_name in ('CENVAT Capital Goods', 'CENVAT Service Tax', 'CENVAT Service Tax Cess 1', 'CENVAT Service Tax Cess 2')
|
||||||
""")
|
""")
|
||||||
webnotes.conn.sql("""update tabAccount
|
webnotes.conn.sql("""update tabAccount
|
||||||
set account_type = 'Tax'
|
set account_type = 'Tax'
|
||||||
where name in ('P L A', 'P L A - Cess Portion', 'VAT', 'TDS (Advertisement)', 'TDS (Commission)',
|
where account_name in ('P L A', 'P L A - Cess Portion', 'VAT', 'TDS (Advertisement)', 'TDS (Commission)',
|
||||||
'TDS (Contractor)', 'TDS (Interest)', 'TDS (Rent)', 'TDS (Salary)')
|
'TDS (Contractor)', 'TDS (Interest)', 'TDS (Rent)', 'TDS (Salary)')
|
||||||
""")
|
""")
|
||||||
|
|||||||
Reference in New Issue
Block a user