- Correct due date to not show due time.
- Show 'Non-cataloged Item' text when there is no barcode.
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
<hr/>
<ol>
<li ng-repeat="checkout in transactions">
- <div>Barcode: {{checkout.barcode}}<br/>
- Due: {{checkout.due_date | date:"short"}}</div>
+ <div ng-if="checkout.barcode">Barcode: {{checkout.barcode}}<br/>
+ Due: {{checkout.due_date | date:"M/d/yyyy"}}</div>
+ <div ng-if="!checkout.barcode">Non-cataloged Item<br/>
+ Due: {{checkout.due_date | date:"M/d/yyyy"}}</div>
</li>
</ol>
<hr/>
<div>{{today | date:'short'}}</div>
-
+ <td ng-if="hold.sms_notify" valign="top">{{hold.sms_notify}}</td>
<ol>
<li ng-repeat="checkout in transactions">
<div>Barcode: {{checkout.barcode}}<br/>
- Due: {{checkout.due_date | date:"short"}}</div>
+ Due: {{checkout.due_date | date:"M/d/yyyy"}}</div>
</li>
</ol>
<hr/>
<div>{{today | date:'short'}}</div>
-