12 lines
224 B
Python
12 lines
224 B
Python
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()
|