@@ -, +, @@ renewed - useless? --- .../prog/en/modules/serials/checkexpiration.tt | 9 ++++--- .../prog/en/modules/serials/subscription-renew.tt | 29 ++++++++++++++-------- 2 files changed, 24 insertions(+), 14 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/checkexpiration.tt @@ -136,7 +136,11 @@ $(".renew_subscription").on("click",function(e){ e.preventDefault(); var subscriptionid = $(this).data("subscriptionid"); - popup( subscriptionid ); + newin=window.open("/cgi-bin/koha/serials/subscription-renew.pl?mode=popup&subscriptionid="+subscriptionid,'popup','width=590,height=440,toolbar=false,scrollbars=yes,resize=yes'); + }); + $('a.itemselection_action_renew').on("click", function(e){ + e.preventDefault(); + newin=window.open($(this).attr('href'),'popup','width=590,height=440,toolbar=false,scrollbars=yes,resize=yes'); }); function itemSelectionBuildRenewLink() { var subscription_ids= new Array(); @@ -176,9 +180,6 @@ }); }); - function popup(subscriptionid) { - newin=window.open("subscription-renew.pl?mode=popup&subscriptionid="+subscriptionid,'popup','width=590,height=440,toolbar=false,scrollbars=yes,resize=yes'); - } [% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-renew.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-renew.tt @@ -11,16 +11,16 @@
-[% IF op == 'renew' %] - Subscription renewed. - - +[% IF op == 'renew' OR op =='multi_renew' %] + [% IF op == 'renew' %] + Subscription renewed. + [% ELSE %] + Subscriptions renewed. + [% END %] + +
+ Close +
[% ELSE %]
@@ -46,6 +46,15 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'calendar.inc' %] + [% END %] [% INCLUDE 'intranet-bottom.inc' popup_window=1 %] --