[Koha-devel] CVS: koha/circ branchtransfers.pl,1.4,1.5

Finlay Thompson finlayt at users.sourceforge.net
Mon May 6 21:38:54 CEST 2002


Update of /cvsroot/koha/koha/circ
In directory usw-pr-cvs1:/tmp/cvs-serv7610/circ

Modified Files:
	branchtransfers.pl 
Log Message:

changed the destination branch dropdown to only show branches that have
categorycode == CU, ie can be current branch.


Index: branchtransfers.pl
===================================================================
RCS file: /cvsroot/koha/koha/circ/branchtransfers.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** branchtransfers.pl	2 May 2002 00:06:28 -0000	1.4
--- branchtransfers.pl	7 May 2002 04:36:00 -0000	1.5
***************
*** 34,38 ****
  my $tobranchoptions;
  foreach my $br (keys %$branches) {
!     (next) if $branches->{$br}->{'PE'};
      my $selected='';
      ($selected='selected') if ($br eq $tobranchcd);
--- 34,38 ----
  my $tobranchoptions;
  foreach my $br (keys %$branches) {
!     (next) unless $branches->{$br}->{'CU'};
      my $selected='';
      ($selected='selected') if ($br eq $tobranchcd);





More information about the Koha-devel mailing list