From 66e92d423e77adfa8ca6b0d0b86669ea2839e28b Mon Sep 17 00:00:00 2001 From: ChillarAnand Date: Thu, 2 Sep 2021 19:57:58 +0530 Subject: [PATCH] chore: Added healthcare deprecation warning patch --- .../patches/v13_0/healthcare_deprecation_warning.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 erpnext/patches/v13_0/healthcare_deprecation_warning.py diff --git a/erpnext/patches/v13_0/healthcare_deprecation_warning.py b/erpnext/patches/v13_0/healthcare_deprecation_warning.py new file mode 100644 index 0000000000..c6fba59371 --- /dev/null +++ b/erpnext/patches/v13_0/healthcare_deprecation_warning.py @@ -0,0 +1,10 @@ +import click + + +def execute(): + + click.secho( + "Healthcare Module is moved to a separate app and will be removed from ERPNext in version-14.\n" + "Please install the app to continue using the module: https://github.com/frappe/healthcare", + fg="yellow", + )