@@ -, +, @@ --- C4/SIP/ILS/Item.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/C4/SIP/ILS/Item.pm +++ a/C4/SIP/ILS/Item.pm @@ -92,7 +92,10 @@ sub new { my $it = C4::Context->preference('item-level_itypes') ? $item->{itype} : $item->{itemtype}; my $itemtype = Koha::Database->new()->schema()->resultset('Itemtype')->find( $it ); - $item->{sip_media_type} = $itemtype->sip_media_type() if $itemtype; + if ($itemtype) { + $item->{sip_media_type} = $itemtype->sip_media_type(); + $item->{fee} = $itemtype->rentalcharge(); + } # check if its on issue and if so get the borrower my $issue = GetItemIssue($item->{'itemnumber'}); --