]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/staff/share/print_templates/t_checkin.tt2
LP1737540: Add Patron Information to Receipts
[working/Evergreen.git] / Open-ILS / src / templates / staff / share / print_templates / t_checkin.tt2
1 <!--
2 Template for printing a checkin receipt. Data specific to this
3 template includes:
4
5 * checkins - list of checkins recorded during the session. Each
6   includes:
7
8   * title
9   * copy_barcode
10   * call_number.label
11
12 -->
13 <div>
14   <div>[% l('Welcome to [_1]', '{{current_location.name}}') %]</div>
15   <div>[% l('You checked in the following items:') %]</div>
16   <hr/>
17   <ol>
18     <li ng-repeat="checkin in checkins">
19       <div>{{checkin.title}}</div>
20       <span>[% l('Barcode: ') %]</span>
21       <span>{{checkin.copy_barcode}}</span>
22       <span>[% l('Call Number: ') %]</span>
23       <span>{{checkin.call_number.label || "[% l("Not Cataloged") %]"}}</span>
24     </li>
25   </ol>
26   <hr/>
27   <div>{{current_location.shortname}} {{today | date:$root.egDateAndTimeFormat}}</div>
28   <br/>
29 </div>