chore: warning for DATEV deprecation (#30703)

This commit is contained in:
Ankush Menat
2022-04-13 15:07:48 +05:30
committed by GitHub
parent 9cf790db9d
commit ef4eb4705e
2 changed files with 10 additions and 0 deletions

View File

@@ -350,6 +350,7 @@ erpnext.patches.v13_0.enable_provisional_accounting
erpnext.patches.v13_0.update_disbursement_account
erpnext.patches.v13_0.update_reserved_qty_closed_wo
erpnext.patches.v13_0.amazon_mws_deprecation_warning
erpnext.patches.v13_0.datev_deprecation_warning
erpnext.patches.v13_0.set_work_order_qty_in_so_from_mr
erpnext.patches.v13_0.update_accounts_in_loan_docs
erpnext.patches.v13_0.remove_unknown_links_to_prod_plan_items # 24-03-2022

View File

@@ -0,0 +1,9 @@
import click
def execute():
click.secho(
"DATEV reports are moved to a separate app and will be removed from ERPNext in version-14.\n"
"Please install the app to continue using them: https://github.com/alyf-de/erpnext_datev",
fg="yellow",
)