Patch for Updating item Tax Template Company
This commit is contained in:
parent
261ecba3d6
commit
f933cf80df
11
erpnext/patches/v12_0/update_item_tax_template_company.py
Normal file
11
erpnext/patches/v12_0/update_item_tax_template_company.py
Normal file
@ -0,0 +1,11 @@
|
||||
from __future__ import unicode_literals
|
||||
import frappe
|
||||
|
||||
def execute():
|
||||
item_tax_template_list = frappe.get_list('Item Tax Template')
|
||||
for template in item_tax_template_list:
|
||||
doc = frappe.get_doc('Item Tax Template', template.name)
|
||||
for tax in doc.taxes:
|
||||
doc.company = frappe.get_value('Account', tax.tax_type, 'company')
|
||||
break
|
||||
doc.save()
|
Loading…
Reference in New Issue
Block a user