Lines 1387-1400
sub Item2Marc {
Link Here
|
1387 |
|
1387 |
|
1388 |
=head2 GetMarcItemFields |
1388 |
=head2 GetMarcItemFields |
1389 |
|
1389 |
|
1390 |
my @marc_fields = GetMarcItemFields($biblionumber); |
1390 |
my @marc_fields = GetMarcItemFields($biblionumber); |
1391 |
|
1391 |
|
1392 |
Returns an array of MARC::Record objects of the items for the biblio. |
1392 |
Returns an array of MARC::Record objects of the items for the biblio. |
1393 |
|
1393 |
|
1394 |
=cut |
1394 |
=cut |
1395 |
|
1395 |
|
1396 |
sub GetMarcItemFields { |
1396 |
sub GetMarcItemFields { |
1397 |
my ( $biblionumber, $itemnumbers, $hidingrules ) = @_; |
1397 |
my ( $biblionumber, $itemnumbers, $hidingrules ) = @_; |
1398 |
|
1398 |
|
1399 |
my $item_level_itype = C4::Context->preference('item-level_itypes'); |
1399 |
my $item_level_itype = C4::Context->preference('item-level_itypes'); |
1400 |
# This is so much faster than using Koha::Items->search that it makes sense even if it's ugly. |
1400 |
# This is so much faster than using Koha::Items->search that it makes sense even if it's ugly. |
1401 |
- |
|
|