refactor(region): Splitting of France Regional logic from ERPNext

This commit is contained in:
Florian HENRY
2023-09-10 17:18:42 +02:00
parent acd9c69201
commit d9f15e96b5

View File

@@ -0,0 +1,12 @@
import click
import frappe
def execute():
if "erpnext_france" in frappe.get_installed_apps():
return
click.secho(
"Feature for Feature Region will be remove in version-15 and moved to a separate app\n"
"Please install the app to continue using the regionnal France features: git@github.com:scopen-coop/erpnext_france.git",
fg="yellow",
)