When checkout out non-cataloged items in the offline interface,
the receipt will now print 'Non-cataloged item' and the number
of items rather than printing nothing.
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
* barcode
* patron_barcode
* due_date
+ * noncat_count
-->
<div>
<hr/>
<ol>
<li ng-repeat="checkout in transactions">
- <div>[% l('Barcode: [_1] Due: [_2]',
- '{{checkout.barcode}}',
- '{{checkout.due_date | date:"short"}}') %]</div>
+ <div ng-if="checkout.barcode">[% l('Barcode:') %] {{checkout.barcode}}</div>
+ <div ng-if="!checkout.barcode">[% l('Non-cataloged Item') %] ({{checkout.noncat_count}})</div>
+ <div>[% l('Due Date:') %] {{checkout.due_date | date:"short"}}</div>
</li>
</ol>
<hr/>