[Koha-bugs] [Bug 15283] Switch default ISSUEQSLIP notice to Template Toolkit

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Dec 2 18:22:02 CET 2015


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15283

Kyle M Hall <kyle at bywatersolutions.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #45335|0                           |1
        is obsolete|                            |

--- Comment #3 from Kyle M Hall <kyle at bywatersolutions.com> ---
Created attachment 45336
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=45336&action=edit
Bug 15283 - Switch default ISSUEQSLIP notice to Template Toolkit

Test Plan:
1) Apply this patch
2) Replace your ISSUESLIP with the following:

[% USE KohaDates %]
<h3>[% branch.branchname %]</h3>
Checked out to [% borrower.title %] [% borrower.firstname %] [%
borrower.initials %] [% borrower.surname %] <br />
([% borrower.cardnumber %]) <br />

[% today | $KohaDates %]<br />

<h4>Checked Out Today</h4>
[% FOREACH checkout IN borrower.checkouts %]
    [% IF checkout.is_from_today %]
        <p>
            [% checkout.item.biblio.title %] <br />
            Barcode: [% checkout.item.barcode %]<br />
            Date due: [% checkout.date_due | $KohaDates %]<br />
        </p>
    [% END %]
[% END %]

3) Print a quick slip for a patron, note the data is complete

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list