2019-01-22 18:22:20 +05:30
|
|
|
from __future__ import unicode_literals
|
2017-07-13 12:16:04 +05:30
|
|
|
import frappe
|
|
|
|
from erpnext.regional.india.setup import setup
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
company = frappe.get_all('Company', filters = {'country': 'India'})
|
|
|
|
if not company:
|
|
|
|
return
|
|
|
|
|
|
|
|
# call setup for india
|
|
|
|
setup(patch=True)
|