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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt (-1 / +1 lines)
Lines 157-163 Link Here
157
                <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loopresul.borrowernumber | uri %]">[% loopresul.cardnumber | html %]</a></td>
157
                <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loopresul.borrowernumber | uri %]">[% loopresul.cardnumber | html %]</a></td>
158
                <td>[% loopresul.bfirstname | html %] [% loopresul.bsurname | html %]</td>
158
                <td>[% loopresul.bfirstname | html %] [% loopresul.bsurname | html %]</td>
159
                <td>[% loopresul.branchname | html %]</td>
159
                <td>[% loopresul.branchname | html %]</td>
160
                <td>[% loopresul.date | $KohaDates %]</td>
160
                <td>[% loopresul.timestamp | $KohaDates with_hours => 1 %]</td>
161
                <td>
161
                <td>
162
                    [% IF loopresul.credit_type == "ACT" %]
162
                    [% IF loopresul.credit_type == "ACT" %]
163
                        <span>All payments to the library</span>
163
                        <span>All payments to the library</span>
(-)a/reports/cash_register_stats.pl (-2 / +1 lines)
Lines 106-112 if ($do_it) { Link Here
106
    SELECT round(amount,2) AS amount, description,
106
    SELECT round(amount,2) AS amount, description,
107
        bo.surname AS bsurname, bo.firstname AS bfirstname, m.surname AS msurname, m.firstname AS mfirstname,
107
        bo.surname AS bsurname, bo.firstname AS bfirstname, m.surname AS msurname, m.firstname AS mfirstname,
108
        bo.cardnumber, br.branchname, bo.borrowernumber,
108
        bo.cardnumber, br.branchname, bo.borrowernumber,
109
        al.borrowernumber, DATE(al.date) as date, al.credit_type_code, al.debit_type_code, al.amountoutstanding, al.note,
109
        al.borrowernumber, DATE(al.date) as date, al.timestamp,  al.credit_type_code, al.debit_type_code, al.amountoutstanding, al.note,
110
        bi.title, bi.biblionumber, i.barcode, i.itype
110
        bi.title, bi.biblionumber, i.barcode, i.itype
111
        FROM accountlines al
111
        FROM accountlines al
112
        LEFT JOIN borrowers bo ON (al.borrowernumber = bo.borrowernumber)
112
        LEFT JOIN borrowers bo ON (al.borrowernumber = bo.borrowernumber)
113
- 

Return to bug 28061