Bug 7391: Return to cart after adding items to a list
authorJonathan Druart <jonathan.druart@biblibre.com>
Thu, 26 Mar 2015 15:10:11 +0000 (16:10 +0100)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Tue, 31 Mar 2015 14:33:52 +0000 (11:33 -0300)
If you select items in your cart and choose to add them to a list, upon
completion of the transaction the pop-up window, which was originally
opened for the cart, is closed. Instead you should be returned to the
Cart view.

Test plan:
Confirm the expected behavior.

Confirmed.
Signed-off-by: Marc Veron <veron@veron.ch>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
koha-tmpl/opac-tmpl/bootstrap/js/basket.js

index 675dc0a..6db26d1 100644 (file)
@@ -424,7 +424,11 @@ function openBiblio(dest,biblionumber) {
 function addSelToShelf() {
     var items = document.getElementById('records').value;
     if(items){
-    document.location = "/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber="+items;
+        var iW = 820;
+        var iH = 450;
+        var optWin = "status=yes,scrollbars=yes,resizable=yes,toolbar=no,location=yes,height="+iH+",width="+iW;
+        var loc = "/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber="+items;
+        var shelf = open(loc, "shelf", optWin);
     } else {
         alert(MSG_NO_RECORD_SELECTED);
     }