chore: Education domain deprecation warning (#30861)

* chore: Education domain deprecation warning

* chore: Education domain deprecation warning

* chore: Rename file and patch
This commit is contained in:
Deepesh Garg
2022-05-02 13:29:25 +05:30
committed by GitHub
parent 0b9a59c605
commit 7c0069c0d3
2 changed files with 11 additions and 0 deletions

View File

@@ -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

View File

@@ -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",
)