brotherton-erpnext/erpnext/patches/v15_0/saudi_depreciation_warning.py
2023-02-21 22:52:20 +05:30

13 lines
284 B
Python

import click
import frappe
def execute():
if "ksa" in frappe.get_installed_apps():
return
click.secho(
"Region Saudi Arabia(KSA) is moved to a separate app\n"
"Please install the app to continue using the KSA Features: https://github.com/8848digital/KSA",
fg="yellow",
)