brotherton-erpnext/erpnext/patches/v12_0/add_taxjar_integration_field.py
2020-06-24 16:37:21 +05:30

13 lines
264 B
Python

from __future__ import unicode_literals
import frappe
from erpnext.regional.united_states.setup import make_custom_fields
def execute():
company = frappe.get_all('Company', filters={'country': 'United States'})
if not company:
return
make_custom_fields()