Merge pull request #53552 from frappe/mergify/bp/version-16-hotfix/pr-53535

fix: remove payables and receivables workspace (backport #53535)
This commit is contained in:
ruthra kumar
2026-03-17 18:40:36 +05:30
committed by GitHub
2 changed files with 8 additions and 0 deletions

View File

@@ -471,3 +471,4 @@ erpnext.patches.v16_0.migrate_asset_type_checkboxes_to_select
erpnext.patches.v16_0.update_order_qty_and_requested_qty_based_on_mr_and_po
erpnext.patches.v16_0.enable_serial_batch_setting
erpnext.patches.v16_0.update_requested_qty_packed_item
erpnext.patches.v16_0.remove_payables_receivables_workspace

View File

@@ -0,0 +1,7 @@
import frappe
def execute():
for ws in ["Receivables", "Payables"]:
frappe.delete_doc_if_exists("Workspace Sidebar", ws)
frappe.delete_doc_if_exists("Workspace", ws)