mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-03 12:19:12 +00:00
9 lines
335 B
Python
9 lines
335 B
Python
import frappe
|
|
from frappe.model.utils.rename_field import rename_field
|
|
|
|
|
|
def execute():
|
|
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)
|