diff --git a/erpnext/patches.txt b/erpnext/patches.txt index 4a452c304247..2fad1efa8328 100644 --- a/erpnext/patches.txt +++ b/erpnext/patches.txt @@ -360,4 +360,5 @@ erpnext.patches.v13_0.create_gst_custom_fields_in_quotation erpnext.patches.v13_0.update_expense_claim_status_for_paid_advances erpnext.patches.v13_0.set_return_against_in_pos_invoice_references erpnext.patches.v13_0.copy_custom_field_filters_to_website_item +erpnext.patches.v13_0.education_deprecation_warning erpnext.patches.v13_0.create_accounting_dimensions_in_orders diff --git a/erpnext/patches/v13_0/education_deprecation_warning.py b/erpnext/patches/v13_0/education_deprecation_warning.py new file mode 100644 index 000000000000..96602ebdf944 --- /dev/null +++ b/erpnext/patches/v13_0/education_deprecation_warning.py @@ -0,0 +1,10 @@ +import click + + +def execute(): + + click.secho( + "Education Domain is moved to a separate app and will be removed from ERPNext in version-14.\n" + "When upgrading to ERPNext version-14, please install the app to continue using the Education domain: https://github.com/frappe/education", + fg="yellow", + )