From 0a14c3dc9d3506230920c831eaa58c6490907d7d Mon Sep 17 00:00:00 2001 From: "dokos[bot]" <15133794-dokos-bot@users.noreply.gitlab.com> Date: Mon, 31 Mar 2025 15:20:14 +0000 Subject: [PATCH] Squashed commit of the following: commit e85417684885cb09990d05762a597a550cb080a6 Author: Corentin Forler Date: Mon Mar 31 13:53:17 2025 +0200 fix: Fix fieldtype in UnReconcile dialog --- erpnext/public/js/utils/unreconcile.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/erpnext/public/js/utils/unreconcile.js b/erpnext/public/js/utils/unreconcile.js index eeddd334d2..f87086e128 100644 --- a/erpnext/public/js/utils/unreconcile.js +++ b/erpnext/public/js/utils/unreconcile.js @@ -85,7 +85,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 = [ { -- GitLab