@@ -, +, @@ --- circ/pendingreserves.pl | 2 +- .../prog/en/modules/circ/pendingreserves.tt | 26 +++++++++++++--------- 2 files changed, 16 insertions(+), 12 deletions(-) --- a/circ/pendingreserves.pl +++ a/circ/pendingreserves.pl @@ -177,7 +177,7 @@ my $strsth = ORDER BY items.itemnumber SEPARATOR '|') l_holdingbranch, reserves.biblionumber, reserves.branchcode as l_branch, - items.itemnumber, + reserves.itemnumber, items.holdingbranch, items.homebranch, GROUP_CONCAT(DISTINCT items.itype --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -35,7 +35,7 @@ [% CASE 'hold_cancelled' %] The hold has been correctly cancelled. [% CASE 'hold_placed_at_biblio_level' %] - The hold has been placed at biblio level. It is not possible to mark it as lost. + The hold has been placed on biblio level. It is not possible to determine the item to mark as lost. [% CASE %] [% m.code %] [% END %] @@ -119,16 +119,20 @@ [% IF Koha.Preference('CanMarkHoldsToPullAsLost') != 'do_not_allow' %] -
- - [% IF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow' %] - - - [% ELSIF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow_and_notify' %] - - - [% END %] -
+ [% IF reserveloo.itemnumber %] +
+ + [% IF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow' %] + + + [% ELSIF Koha.Preference('CanMarkHoldsToPullAsLost') == 'allow_and_notify' %] + + + [% END %] +
+ [% ELSE %] + Biblio level hold. + [% END %] [% END %] [% END %] --