mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-20 23:42:13 +00:00
fix: Fix fieldtype in UnReconcile dialog
(cherry picked from commit 665645721b)
This commit is contained in:
@@ -91,7 +91,13 @@ erpnext.accounts.unreconcile_payment = {
|
|||||||
read_only: 1,
|
read_only: 1,
|
||||||
options: "account_currency",
|
options: "account_currency",
|
||||||
},
|
},
|
||||||
{ label: __("Currency"), fieldname: "account_currency", fieldtype: "Currency", read_only: 1 },
|
{
|
||||||
|
label: __("Currency"),
|
||||||
|
fieldname: "account_currency",
|
||||||
|
fieldtype: "Link",
|
||||||
|
options: "Currency",
|
||||||
|
read_only: 1,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
let unreconcile_dialog_fields = [
|
let unreconcile_dialog_fields = [
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user