9 lines
222 B
Python
9 lines
222 B
Python
|
import frappe
|
||
|
from erpnext.regional.india.setup import make_custom_fields
|
||
|
|
||
|
def execute():
|
||
|
company = frappe.get_all('Company', filters = {'country': 'India'})
|
||
|
if not company:
|
||
|
return
|
||
|
|
||
|
make_custom_fields()
|