View | Details | Raw Unified | Return to bug 17969
Collapse All | Expand All

(-)a/C4/Letters.pm (-1 / +14 lines)
Lines 1638-1643 sub _get_tt_params { Link Here
1638
    return $params;
1638
    return $params;
1639
}
1639
}
1640
1640
1641
=head2 get_item_content
1642
1643
    my $item = Koha::Items->find(...)->unblessed;
1644
    my @item_content_fields = qw( date_due title barcode author itemnumber );
1645
    my $item_content = C4::Letters::get_item_content({
1646
                             item => $item,
1647
                             item_content_fields => \@item_content_fields
1648
                       });
1649
1650
This function generates a tab-separated list of values for the passed item. Dates
1651
are formatted following the current setup.
1652
1653
=cut
1654
1641
sub get_item_content {
1655
sub get_item_content {
1642
    my ( $params ) = @_;
1656
    my ( $params ) = @_;
1643
    my $item = $params->{item};
1657
    my $item = $params->{item};
1644
- 

Return to bug 17969