Lines 27-33
use C4::Koha; # GetItemTypes
Link Here
|
27 |
use C4::Output; |
27 |
use C4::Output; |
28 |
|
28 |
|
29 |
use Koha::Authority::Types; |
29 |
use Koha::Authority::Types; |
30 |
use Koha::Biblioitems; |
30 |
use Koha::BiblioItems; |
31 |
use Koha::Database; |
31 |
use Koha::Database; |
32 |
use Koha::DateUtils qw( dt_from_string output_pref ); |
32 |
use Koha::DateUtils qw( dt_from_string output_pref ); |
33 |
use Koha::Exporter::Record; |
33 |
use Koha::Exporter::Record; |
Lines 148-154
if ( $op eq "export" ) {
Link Here
|
148 |
), |
148 |
), |
149 |
|
149 |
|
150 |
}; |
150 |
}; |
151 |
my $biblioitems = Koha::Biblioitems->search( $conditions, { join => 'items' } ); |
151 |
my $biblioitems = Koha::BiblioItems->search( $conditions, { join => 'items' } ); |
152 |
while ( my $biblioitem = $biblioitems->next ) { |
152 |
while ( my $biblioitem = $biblioitems->next ) { |
153 |
push @record_ids, $biblioitem->biblionumber; |
153 |
push @record_ids, $biblioitem->biblionumber; |
154 |
} |
154 |
} |
155 |
- |
|
|