@@ -, +, @@ --- C4/SIP/ILS/Item.pm | 1 - koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 6 ------ reserve/request.pl | 2 -- 3 files changed, 9 deletions(-) --- a/C4/SIP/ILS/Item.pm +++ a/C4/SIP/ILS/Item.pm @@ -47,7 +47,6 @@ our $VERSION = 3.07.00.049; itemnumber => '823', priority => '1', reservenotes => undef, - constrainttype => 'a', reservedate => '2008-10-09', found => undef, rtimestamp => '2008-10-09 11:15:06', --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -769,7 +769,6 @@ function checkMultiHold() { [% END %] [% ELSE %] - [% IF ( reserveloo.constrainttypea ) %] [% IF ( reserveloo.item_level_hold ) %] Only item @@ -785,11 +784,6 @@ function checkMultiHold() { Next available [% END %] - [% ELSE %] - [% IF ( reserveloo.constrainttypeo ) %] - only this type :[% reserveloo.volumeddesc %] [% reserveloo.itemtype %] - [% END %] - [% END %] [% END %] --- a/reserve/request.pl +++ a/reserve/request.pl @@ -526,8 +526,6 @@ foreach my $biblionumber (@biblionumbers) { $reserve{'notes'} = $res->{'reservenotes'}; $reserve{'wait'} = ( ( defined $res->{'found'} and $res->{'found'} eq 'W' ) or ( $res->{'priority'} eq '0' ) ); - $reserve{'constrainttypea'} = ( $res->{'constrainttype'} eq 'a' ); - $reserve{'constrainttypeo'} = ( $res->{'constrainttype'} eq 'o' ); $reserve{'voldesc'} = $res->{'volumeddesc'}; $reserve{'ccode'} = $res->{'ccode'}; $reserve{'barcode'} = $res->{'barcode'}; --