Bug 9860 [Alternate] Incorrect box heading 'Cannot check in' when a late document is returned
The fix for Bug 9397 moved the "cannot check in" heading from within the one conditional where it should have been displayed to the top of all check-in errors/messages. "Cannot check in" is still only valid if the item is withdrawn and BlockReturnOfWithdrawnItems is ON. In order to accomplish the goal of Bug 9397 while fixing Bug 9860 this patch puts "cannot check in" back into the correct conditional and adds a generic heading to check in messages for accessibility purposes. To test, check in items which will trigger a variety of errors including: - item must be returned to home library - item is lost - item is withdrawn (wtih BlockReturnOfWithdrawnItems on and off) - item is overdue ...as well as items which should check in normally. Messages should display correctly. Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
This commit is contained in:
parent
e03a802a1c
commit
3ce75bcf26
1 changed files with 2 additions and 1 deletions
|
@ -317,7 +317,7 @@ $(document).ready(function () {
|
|||
|
||||
[% IF ( errmsgloop ) %]
|
||||
<div class="dialog alert">
|
||||
<h5>Cannot check in</h5>
|
||||
<h3>Check in message</h3>
|
||||
[% FOREACH errmsgloo IN errmsgloop %]
|
||||
[% IF ( errmsgloo.badbarcode ) %]
|
||||
<p class="problem">No item with barcode: [% errmsgloo.msg %]</p>
|
||||
|
@ -341,6 +341,7 @@ $(document).ready(function () {
|
|||
[% END %]
|
||||
[% IF ( errmsgloo.withdrawn ) %]
|
||||
[% IF BlockReturnOfWithdrawnItems %]
|
||||
<h5>Cannot check in</h5>
|
||||
<p class="problem">Item is withdrawn. <strong>NOT CHECKED IN</strong></p>
|
||||
[% ELSE %]
|
||||
<p class="problem">Item is withdrawn.</p>
|
||||
|
|
Loading…
Reference in a new issue