fix: patch to update child table parentfield name in pos closing entry (#48008)

This commit is contained in:
Diptanil Saha
2025-06-13 12:32:51 +05:30
committed by GitHub
parent 576e804dbf
commit 41509d37af
2 changed files with 5 additions and 3 deletions

View File

@@ -420,4 +420,4 @@ erpnext.patches.v15_0.remove_agriculture_roles
erpnext.patches.v14_0.update_full_name_in_contract
erpnext.patches.v15_0.drop_sle_indexes
execute:frappe.db.set_single_value("Accounts Settings", "confirm_before_resetting_posting_date", 1)
erpnext.patches.v15_0.rename_pos_closing_entry_fields
erpnext.patches.v15_0.rename_pos_closing_entry_fields #2025-06-13

View File

@@ -1,6 +1,8 @@
import frappe
from frappe.model.utils.rename_field import rename_field
def execute():
rename_field("POS Closing Entry", "pos_transactions", "pos_invoices")
rename_field("POS Closing Entry", "sales_invoice_transactions", "sales_invoices")
rename_field("POS Closing Entry", "pos_transactions", "pos_invoices", validate=False)
if frappe.db.exists("DocType", "Sales Invoice Reference"):
rename_field("POS Closing Entry", "sales_invoice_transactions", "sales_invoices", validate=False)