mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-05 21:29:11 +00:00
9 lines
201 B
Python
9 lines
201 B
Python
import frappe
|
|
from erpnext.regional.india.setup import add_permissions
|
|
|
|
def execute():
|
|
company = frappe.get_all('Company', filters = {'country': 'India'})
|
|
if not company:
|
|
return
|
|
|
|
add_permissions() |