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

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

Return to bug 17969