Lines 26-34
Link Here
|
26 |
[%- CASE 'All collection codes' %]<span>All collections</span> |
26 |
[%- CASE 'All collection codes' %]<span>All collections</span> |
27 |
[%- CASE 'notforloan' %]<span>Status</span> |
27 |
[%- CASE 'notforloan' %]<span>Status</span> |
28 |
[%- CASE 'All statuses' %]<span>All statuses</span> |
28 |
[%- CASE 'All statuses' %]<span>All statuses</span> |
29 |
[%- CASE 'damaged' %]<span>Damaged</span> |
|
|
30 |
[%- CASE 'itemlost' %]<span>Lost</span> |
29 |
[%- CASE 'itemlost' %]<span>Lost</span> |
31 |
[%- CASE 'withdrawn' %]<span>Withdrawn</span> |
30 |
[%- CASE 'withdrawn' %]<span>Withdrawn</span> |
|
|
31 |
[%- CASE 'damaged' %]<span>Damaged</span> |
32 |
[%- CASE 'new_status' %]<span>Is new</span> |
32 |
[%- CASE 'new_status' %]<span>Is new</span> |
33 |
[%- END -%] |
33 |
[%- END -%] |
34 |
[%- END -%] |
34 |
[%- END -%] |
Lines 204-209
Link Here
|
204 |
[% IF withdrawns.size %] |
204 |
[% IF withdrawns.size %] |
205 |
[% INCLUDE form_field_select name="withdrawn" options = withdrawns empty_option = "All statuses" %] |
205 |
[% INCLUDE form_field_select name="withdrawn" options = withdrawns empty_option = "All statuses" %] |
206 |
[% END %] |
206 |
[% END %] |
|
|
207 |
[% IF damageds.size %] |
208 |
[% INCLUDE form_field_select name="damaged" options = damageds empty_option = "All statuses" %] |
209 |
[% END %] |
207 |
<div class="form-field"> |
210 |
<div class="form-field"> |
208 |
<label class="form-field-label">Availability:</label> |
211 |
<label class="form-field-label">Availability:</label> |
209 |
<input type="radio" name="onloan" id="onloan_indifferent" value="" checked="checked"/> |
212 |
<input type="radio" name="onloan" id="onloan_indifferent" value="" checked="checked"/> |
Lines 231-237
Link Here
|
231 |
<input type="text" id="itemcallnumber_to" name="itemcallnumber_to" value="" /> |
234 |
<input type="text" id="itemcallnumber_to" name="itemcallnumber_to" value="" /> |
232 |
<span class="hint">(inclusive)</span> |
235 |
<span class="hint">(inclusive)</span> |
233 |
</div> |
236 |
</div> |
234 |
[% INCLUDE form_field_radio_yes_no name="damaged" %] |
|
|
235 |
[% IF ( has_new_status ) %] |
237 |
[% IF ( has_new_status ) %] |
236 |
[% INCLUDE form_field_radio_yes_no name="new_status" divclass='item-new-status' %] |
238 |
[% INCLUDE form_field_radio_yes_no name="new_status" divclass='item-new-status' %] |
237 |
[% END %] |
239 |
[% END %] |
Lines 336-341
Link Here
|
336 |
+ ' <th id="items_status">' + _("Not for loan status") + '</th>' |
338 |
+ ' <th id="items_status">' + _("Not for loan status") + '</th>' |
337 |
+ ' <th id="items_itemlost">' + _("Lost status") + '</th>' |
339 |
+ ' <th id="items_itemlost">' + _("Lost status") + '</th>' |
338 |
+ ' <th id="items_widthdrawn">' + _("Withdrawn status") + '</th>' |
340 |
+ ' <th id="items_widthdrawn">' + _("Withdrawn status") + '</th>' |
|
|
341 |
+ ' <th id="items_damaged">' + _("Damaged status") + '</th>' |
339 |
+ ' <th id="items_checkouts">' + _("Checkouts") + '</th>' |
342 |
+ ' <th id="items_checkouts">' + _("Checkouts") + '</th>' |
340 |
+ ' <th id="items_date_due">' + _("Due date") + '</th>' |
343 |
+ ' <th id="items_date_due">' + _("Due date") + '</th>' |
341 |
+ ' <th id=""></th>' |
344 |
+ ' <th id=""></th>' |
Lines 495-500
Link Here
|
495 |
{ 'sName': 'notforloan' }, |
498 |
{ 'sName': 'notforloan' }, |
496 |
{ 'sName': 'itemlost' }, |
499 |
{ 'sName': 'itemlost' }, |
497 |
{ 'sName': 'withdrawn' }, |
500 |
{ 'sName': 'withdrawn' }, |
|
|
501 |
{ 'sName': 'damaged' }, |
498 |
{ 'sName': 'issues' }, |
502 |
{ 'sName': 'issues' }, |
499 |
{ 'sName': 'date_due' }, |
503 |
{ 'sName': 'date_due' }, |
500 |
{ 'sName': 'actions', 'bSortable': false } |
504 |
{ 'sName': 'actions', 'bSortable': false } |
Lines 544-549
Link Here
|
544 |
[% ELSE %] |
548 |
[% ELSE %] |
545 |
null, |
549 |
null, |
546 |
[% END %] |
550 |
[% END %] |
|
|
551 |
[% IF damageds.size %] |
552 |
{ 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => damageds %] }, |
553 |
[% ELSE %] |
554 |
null, |
555 |
[% END %] |
547 |
{ 'type': 'text' }, |
556 |
{ 'type': 'text' }, |
548 |
{ 'type': 'text' }, |
557 |
{ 'type': 'text' }, |
549 |
null |
558 |
null |
550 |
- |
|
|