Merge pull request #46926 from frappe/mergify/bp/version-15-hotfix/pr-46819

fix: Fix fieldtype in UnReconcile dialog (backport #46819)
This commit is contained in:
ruthra kumar
2025-04-08 11:51:56 +05:30
committed by GitHub

View File

@@ -91,7 +91,13 @@ erpnext.accounts.unreconcile_payment = {
read_only: 1,
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 = [
{