From 927980648e5bfd7127f38d7e8b99471bc2357c05 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 14 Jan 2019 12:47:25 +0000 Subject: [PATCH] Bug 22110: Fix editing of adjustments for CurrencyFormat != US When using CurrencyFormat FR or CH the editing an amount behave badly. Example: changing displayed 1,00 to 1,11 would save as 1,00. At the moment Koha only understands decimal dot, not comma. So every time data is entered, we use decimal dot. 1) Add an adjustment to an invoice 2) Change system preference CurrencyFormat to FR or CH 3) Verify the amount displays with a decimal comma 4) Try changing the amount to something like 1,11 5) Save the amount 6) Verify it shows 1.00 7) Apply patch 8) Refresh the invoice page if necessary 9) Verify amount is now shown as 1.00 10) Repeat test, use 1.11 11) Verify it will be stored correctly. Signed-off-by: Mackey Johnstone Signed-off-by: mikael --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt index 4cfad00e6b..5dab779f98 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt @@ -109,7 +109,7 @@ [% total_adj = total_adj + adjustment.adjustment %] [% adjustment.adjustment_id | html %] - + [% reasons = AuthorisedValues.Get("ADJ_REASON") %] [% IF reasons.0 %] -- 2.17.1