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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt (-4 / +4 lines)
Lines 58-73 Link Here
58
                        <td>[% issue.itemtype_description | html %]</td>
58
                        <td>[% issue.itemtype_description | html %]</td>
59
                        <td>[% issue.date_due | $KohaDates  as_due_date => 1 %]</td>
59
                        <td>[% issue.date_due | $KohaDates  as_due_date => 1 %]</td>
60
                        <td>[% issue.barcode | html %]</td>
60
                        <td>[% issue.barcode | html %]</td>
61
                        <td>[% issue.charge | html %]</td>
61
                        <td>[% issue.charge | $Price %]</td>
62
                        <td>[% issue.replacementprice | html %]</td>
62
                        <td>[% issue.replacementprice | $Price %]</td>
63
                        <td>[% IF ( issue.overdue ) %]Overdue![% ELSE %]&nbsp;[% END %]</td>
63
                        <td>[% IF ( issue.overdue ) %]Overdue![% ELSE %]&nbsp;[% END %]</td>
64
                    </tr>
64
                    </tr>
65
                [% END %]
65
                [% END %]
66
66
67
            <tr>
67
            <tr>
68
                <td colspan="6" style="text-align: right; font-weight:bold;">Totals:</td>
68
                <td colspan="6" style="text-align: right; font-weight:bold;">Totals:</td>
69
                <td>[% totaldue | html %]</td>
69
                <td>[% totaldue | $Price %]</td>
70
                <td>[% totalprice | html %]</td>
70
                <td>[% totalprice | $Price %]</td>
71
                <td colspan="3">&nbsp;</td>
71
                <td colspan="3">&nbsp;</td>
72
            </tr>
72
            </tr>
73
        </table>
73
        </table>
(-)a/members/summary-print.pl (-2 / +1 lines)
Lines 96-102 sub build_issue_data { Link Here
96
        $itemtype = Koha::ItemTypes->find( $itemtype );
96
        $itemtype = Koha::ItemTypes->find( $itemtype );
97
        $checkout->{itemtype_description} = $itemtype->description; #FIXME Should not it be translated_description
97
        $checkout->{itemtype_description} = $itemtype->description; #FIXME Should not it be translated_description
98
98
99
        $checkout->{charge} = sprintf( "%.2f", $charge ); # TODO Should be done in the template using Price
99
        $checkout->{charge} = $charge;
100
100
101
        $checkout->{overdue} = $c->is_overdue;
101
        $checkout->{overdue} = $c->is_overdue;
102
102
103
- 

Return to bug 22120