From 6590a07f0475e39997b9cbc5e0264fece8c81514 Mon Sep 17 00:00:00 2001 From: Andrew Fuerste-Henry Date: Fri, 30 Oct 2020 16:25:05 +0000 Subject: [PATCH] Bug 26875: Allow printing of just one barcode in batch To test: 1- go to the Print Barcode Range page 2- enter From=1 and To=1 3- confirm error "Must be greater than from value." 4- apply patch, restart, reload page 5- enter From=1, To=1 6- confirm no error 7- change From to 2, error reappears Signed-off-by: David Nind Signed-off-by: Victor Grousset/tuxayo --- .../intranet-tmpl/prog/en/modules/labels/label-edit-range.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-range.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-range.tt index 4a5bc5a7e4..17c111e260 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-range.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-range.tt @@ -61,7 +61,7 @@ $(document).ready(function () { $.validator.addMethod("gt", function(value, element, params) { - return parseInt(value) > parseInt($(params).val()); + return parseInt(value) >= parseInt($(params).val()); }, _("Must be greater than from value.")); $("form[name=add_by_number]").validate({ @@ -88,4 +88,4 @@ [% END %] -[% INCLUDE 'intranet-bottom.inc' %] \ No newline at end of file +[% INCLUDE 'intranet-bottom.inc' %] -- 2.29.2