Bug 23987: Use src=CATALOGUING for edition/deletion in batch from items table
There are 2 ways to land in batchMod from the detail page of a bib record: from the Edit menu, and the action buttons on top of the items table. We want the same behavior for both and so use src=CATALOGUING It will make batchMod to behave identically for the "return" button Signed-off-by: George Williams <george@nekls.org> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
fa41a4a94d
commit
3225d049be
1 changed files with 2 additions and 2 deletions
|
@ -872,7 +872,7 @@
|
|||
if (itemnumbers.length > 0) {
|
||||
var url = '/cgi-bin/koha/tools/batchMod.pl?op=show&del=1';
|
||||
url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
|
||||
url += '&src=' + '[% "/cgi-bin/koha/catalogue/detail.pl?biblionumber=$biblionumber" |uri %]';
|
||||
url += '&src=CATALOGUING';
|
||||
$('a.itemselection_action_delete').attr('href', url);
|
||||
} else {
|
||||
return false;
|
||||
|
@ -888,7 +888,7 @@
|
|||
if (itemnumbers.length > 0) {
|
||||
var url = '/cgi-bin/koha/tools/batchMod.pl?op=show';
|
||||
url += '&itemnumber=' + itemnumbers.join('&itemnumber=');
|
||||
url += '&src=' + '[% "/cgi-bin/koha/catalogue/detail.pl?biblionumber=$biblionumber" |uri %]';
|
||||
url += '&src=CATALOGUING';
|
||||
$('a.itemselection_action_modify').attr('href', url);
|
||||
} else {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue