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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt (-1 / +2 lines)
Lines 2-7 Link Here
2
[% USE Branches %]
2
[% USE Branches %]
3
[% USE KohaDates %]
3
[% USE KohaDates %]
4
[% USE Price %]
4
[% USE Price %]
5
[% USE ItemTypes %]
5
[% SET footerjs = 1 %]
6
[% SET footerjs = 1 %]
6
7
7
[% PROCESS 'accounts.inc' %]
8
[% PROCESS 'accounts.inc' %]
Lines 55-61 Link Here
55
                        </td>
56
                        </td>
56
                        <td>[% issue.author | html %]</td>
57
                        <td>[% issue.author | html %]</td>
57
                        <td>[% issue.itemcallnumber | html %]</td>
58
                        <td>[% issue.itemcallnumber | html %]</td>
58
                        <td>[% issue.itemtype_description | html %]</td>
59
                        <td>[% ItemTypes.GetDescription( issue.itype ) | html %]</td>
59
                        <td>[% issue.date_due | $KohaDates  as_due_date => 1 %]</td>
60
                        <td>[% issue.date_due | $KohaDates  as_due_date => 1 %]</td>
60
                        <td>[% issue.barcode | html %]</td>
61
                        <td>[% issue.barcode | html %]</td>
61
                        <td>[% issue.charge | $Price %]</td>
62
                        <td>[% issue.charge | $Price %]</td>
(-)a/members/summary-print.pl (-4 lines)
Lines 93-101 sub build_issue_data { Link Here
93
        my ( $charge, $itemtype ) =
93
        my ( $charge, $itemtype ) =
94
          GetIssuingCharges( $checkout->{itemnumber}, $borrowernumber );
94
          GetIssuingCharges( $checkout->{itemnumber}, $borrowernumber );
95
95
96
        $itemtype = Koha::ItemTypes->find( $itemtype );
97
        $checkout->{itemtype_description} = $itemtype->description; #FIXME Should not it be translated_description
98
99
        $checkout->{charge} = $charge;
96
        $checkout->{charge} = $charge;
100
97
101
        $checkout->{overdue} = $c->is_overdue;
98
        $checkout->{overdue} = $c->is_overdue;
102
- 

Return to bug 21013