Adding ability to return biblio results from acquisition search that contain no items
authorbob_lyon <bob_lyon>
Tue, 5 Sep 2006 21:21:21 +0000 (21:21 +0000)
committerbob_lyon <bob_lyon>
Tue, 5 Sep 2006 21:21:21 +0000 (21:21 +0000)
- to aviod making orphan biblios

acqui/neworderbiblio.pl

index d1efba0..fa0f199 100755 (executable)
@@ -81,6 +81,7 @@ my $input = new CGI;
 
 #whether it is called from the opac of the intranet
 my $type = $input->param('type');
+my $acq_search = $input->param('acq_search');
 if ( $type eq '' ) {
     $type = 'intra';
 }
@@ -145,7 +146,11 @@ elsif ( $search{'front'} ne '' ) {
       FrontSearch( undef, 'intra', \%search, $num, $offset );
 }
 elsif ( $search{'author'} || $search{'title'} ) {
-    ( $count, @results ) = CatSearch( undef, 'loose', \%search, $num, $offset );
+    if($acq_search == 1){
+        ( $count, @results ) = CatSearch( undef, 'loose_acq', \%search, $num, $offset );
+    } else {
+        ( $count, @results ) = CatSearch( undef, 'loose', \%search, $num, $offset );
+    }
 }
 else {
     $invalidsearch = 1;