The directive now displays a warning if a hold's shelf time occurs
*after* the time that the appointment was staged. Note that this
does not take the Hold Shelf Status Delay library setting into
account.
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
{{hold.current_copy().barcode()}}
<span class="glyphicon glyphicon-new-window"></span>
</a>
+ <div ng-if="slot.staged() && slot.staged() < hold.shelf_time()" class="alert alert-warning">
+ [% l('Check item; came in after appointment was staged.') %]
+ </div>
</li>
</ul>
transclude: true,
templateUrl : './circ/curbside/t_holds_list',
scope : {
+ slot : '=',
holds : '=',
bibData : '='
},