mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-13 01:34:10 +00:00
fix: handle undefined bank_transaction_mapping in quick entry
(cherry picked from commit 8a1b8259bd)
This commit is contained in:
committed by
Mergify
parent
7abaaed957
commit
22a8d483e1
@@ -34,11 +34,11 @@ let add_fields_to_mapping_table = function (frm) {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
frm.fields_dict.bank_transaction_mapping.grid.update_docfield_property(
|
const grid = frm.fields_dict.bank_transaction_mapping?.grid;
|
||||||
"bank_transaction_field",
|
|
||||||
"options",
|
if (grid) {
|
||||||
options
|
grid.update_docfield_property("bank_transaction_field", "options", options);
|
||||||
);
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
erpnext.integrations.refreshPlaidLink = class refreshPlaidLink {
|
erpnext.integrations.refreshPlaidLink = class refreshPlaidLink {
|
||||||
|
|||||||
Reference in New Issue
Block a user