2019-01-22 12:52:20 +00:00
|
|
|
from __future__ import unicode_literals
|
2017-07-13 06:46:04 +00:00
|
|
|
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)
|