From b6f97b17d473f7a4e5fb1e06d53defa0fc73dcd1 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 21 Jan 2021 14:40:52 +0000 Subject: [PATCH] Bug 27410: (follow-up) Updates to accommodate currency entry This patch makes two modifications in order to allow the entry of currency strings (e.g. 1.25). - Inputmode changed to "decimal" - Regex pattern changed to "^\d+(\.\d{2})?$" as found in admin/debit_types.tt To test, apply the patch and test entry of various strings in the manual invoice "amount" field. Confirm that the field only accepts digits or digits followed by a decimal and two digits. Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/en/modules/members/maninvoice.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/maninvoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/maninvoice.tt index 56fe3b0d44..be950ce76c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/maninvoice.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/maninvoice.tt @@ -69,7 +69,7 @@
  • -
  • Example: 5.00
  • +
  • Example: 5.00
  • -- 2.11.0