fix: update cc_to multiselect in process statement of accounts
(cherry picked from commit 2a6be127ef)
# Conflicts:
# erpnext/patches.txt
This commit is contained in:
@@ -383,5 +383,10 @@ erpnext.patches.v14_0.update_currency_exchange_settings_for_frankfurter
|
|||||||
erpnext.patches.v15_0.update_task_assignee_email_field_in_asset_maintenance_log
|
erpnext.patches.v15_0.update_task_assignee_email_field_in_asset_maintenance_log
|
||||||
erpnext.patches.v15_0.update_sub_voucher_type_in_gl_entries
|
erpnext.patches.v15_0.update_sub_voucher_type_in_gl_entries
|
||||||
erpnext.patches.v14_0.update_stock_uom_in_work_order_item
|
erpnext.patches.v14_0.update_stock_uom_in_work_order_item
|
||||||
|
<<<<<<< HEAD
|
||||||
erpnext.patches.v15_0.set_is_exchange_gain_loss_in_payment_entry_deductions
|
erpnext.patches.v15_0.set_is_exchange_gain_loss_in_payment_entry_deductions
|
||||||
erpnext.patches.v15_0.enable_allow_existing_serial_no
|
erpnext.patches.v15_0.enable_allow_existing_serial_no
|
||||||
|
=======
|
||||||
|
erpnext.patches.v15_0.enable_allow_existing_serial_no
|
||||||
|
erpnext.patches.v15_0.update_cc_in_process_statement_of_accounts
|
||||||
|
>>>>>>> 2a6be127ef (fix: update cc_to multiselect in process statement of accounts)
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import frappe
|
||||||
|
|
||||||
|
|
||||||
|
def execute():
|
||||||
|
data = frappe.db.sql(
|
||||||
|
"""SELECT name, cc_to FROM `tabProcess Statement Of Accounts` WHERE cc_to IS NOT NULL""", as_dict=True
|
||||||
|
)
|
||||||
|
for d in data:
|
||||||
|
doc = frappe.get_doc("Process Statement Of Accounts", d.name)
|
||||||
|
doc.append("cc_to", {"cc": d.cc_to})
|
||||||
|
doc.save()
|
||||||
Reference in New Issue
Block a user