Bug 20148: Prevent adding same user multiple times to acq basket
authorPasi Kallinen <pasi.kallinen@joensuu.fi>
Wed, 7 Feb 2018 07:45:20 +0000 (09:45 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Sun, 18 Feb 2018 17:48:43 +0000 (14:48 -0300)
When adding a user to manage acquisitions basket, it is possible
to add the same user multiple times. Prevent that.

Test plan:

1) Go to Home -> Acquisitions -> [bookseller] -> [basket]
2) On the "Add user" in the Managed by-part, and try adding
   the same user multiple times.
3) Apply patch
4) Repeat 1 and 2. You should now get an error message saying
   the user is already in the list.

Signed-off-by: Pasi Kallinen <pasi.kallinen@joensuu.fi>
Signed-off-by: Roch D'Amour <roch.damour@inlibro.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt

index ef5e998..19030de 100644 (file)
             } else {
                 ids = new Array;
             }
-            if (ids.indexOf(borrowernumber) < 0) {
+            if (ids.indexOf(borrowernumber.toString()) < 0) {
                 ids.push(borrowernumber);
                 $("#users_ids").val(ids.join(':'));
                 var li = '<li id="user_'+borrowernumber+'">'+borrowername