brotherton-erpnext/erpnext/patches/v13_0/show_india_localisation_deprecation_warning.py
2022-06-26 18:30:54 +05:30

16 lines
395 B
Python

import click
import frappe
def execute():
if not frappe.db.exists("Company", {"country": "India"}):
return
click.secho(
"India-specific regional features have been moved to a separate app"
" and will be removed from ERPNext in Version 14."
" Please install India Compliance after upgrading to Version 14:\n"
"https://github.com/resilient-tech/india-compliance",
fg="yellow",
)