915b34391c
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Clean up imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Clean up sider issues * chore: Remove import errors from flake8 ignore list * chore: Clean up lint issues
14 lines
337 B
Python
14 lines
337 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
|
|
|
|
frappe.reload_doc("regional", "doctype", "lower_deduction_certificate")
|
|
frappe.reload_doc("regional", "doctype", "gstr_3b_report")
|
|
add_permissions()
|