2018-01-26 11:27:22 +05:30
|
|
|
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
|
|
|
|
|
2018-07-17 18:22:51 +05:30
|
|
|
make_custom_fields(update=False)
|