Hello, could someone explain to me what is the meaning (functionnaly speaking) of this portion of code : (C4/Circulation.pm) # check if the book is in a permanent collection.... my $hbr = $iteminformation->{'homebranch'}; my $branches = GetBranches(); if ( $hbr && $branches->{$hbr}->{'PE'} ) { $messages->{'IsPermanent'} = $hbr; }
On 3/13/08, Paul POULAIN <paul.poulain@free.fr> wrote:
Hello,
could someone explain to me what is the meaning (functionnaly speaking) of this portion of code : (C4/Circulation.pm) # check if the book is in a permanent collection.... my $hbr = $iteminformation->{'homebranch'}; my $branches = GetBranches(); if ( $hbr && $branches->{$hbr}->{'PE'} ) { $messages->{'IsPermanent'} = $hbr; }
Hi Paul PE is permanent branch. If an item a homebranch that is set to permanent, it should not be possible for it to ever be issued at another branch. IE it should always be at that branch Chris
participants (2)
-
Chris Cormack -
Paul POULAIN