Lines 173-178
Link Here
|
173 |
|
173 |
|
174 |
<div id="item-search-block"> |
174 |
<div id="item-search-block"> |
175 |
<h1>Item search</h1> |
175 |
<h1>Item search</h1> |
|
|
176 |
|
176 |
<p><a href="/cgi-bin/koha/catalogue/search.pl">Go to advanced search</a></p> |
177 |
<p><a href="/cgi-bin/koha/catalogue/search.pl">Go to advanced search</a></p> |
177 |
<form action="/cgi-bin/koha/catalogue/itemsearch.pl" method="get" id="itemsearchform"> |
178 |
<form action="/cgi-bin/koha/catalogue/itemsearch.pl" method="get" id="itemsearchform"> |
178 |
<div id="toolbar" class="btn-toolbar"> |
179 |
<div id="toolbar" class="btn-toolbar"> |
Lines 203-208
Link Here
|
203 |
[% IF withdrawns.size %] |
204 |
[% IF withdrawns.size %] |
204 |
[% 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" %] |
205 |
[% END %] |
206 |
[% END %] |
|
|
207 |
<div class="form-field"> |
208 |
<label class="form-field-label">Availability:</label> |
209 |
<input type="radio" name="onloan" id="onloan_indifferent" value="" checked="checked"/> |
210 |
<label for="onloan_indifferent">Ignore</label> |
211 |
<input type="radio" name="onloan" id="onloan_yes" value="IS NOT NULL" /> |
212 |
<label for="onloan_yes">Checked out</label> |
213 |
<input type="radio" name="onloan" id="onloan_no" value="IS NULL" /> |
214 |
<label for="onloan_no">Available</label> |
215 |
</div> |
206 |
</fieldset> |
216 |
</fieldset> |
207 |
<fieldset> |
217 |
<fieldset> |
208 |
[% INCLUDE form_field_select_text %] |
218 |
[% INCLUDE form_field_select_text %] |
Lines 326-331
Link Here
|
326 |
+ ' <th id="items_itemlost">' + _("Lost status") + '</th>' |
336 |
+ ' <th id="items_itemlost">' + _("Lost status") + '</th>' |
327 |
+ ' <th id="items_widthdrawn">' + _("Withdrawn status") + '</th>' |
337 |
+ ' <th id="items_widthdrawn">' + _("Withdrawn status") + '</th>' |
328 |
+ ' <th id="items_checkouts">' + _("Checkouts") + '</th>' |
338 |
+ ' <th id="items_checkouts">' + _("Checkouts") + '</th>' |
|
|
339 |
+ ' <th id="items_availability">' + _("Availability") + '</th>' |
340 |
+ ' <th id="items_duedate">' + _("Due date") + '</th>' |
329 |
+ ' <th id=""></th>' |
341 |
+ ' <th id=""></th>' |
330 |
+ ' </tr>' |
342 |
+ ' </tr>' |
331 |
var table = '' |
343 |
var table = '' |
Lines 482-487
Link Here
|
482 |
{ 'sName': 'itemlost' }, |
494 |
{ 'sName': 'itemlost' }, |
483 |
{ 'sName': 'withdrawn' }, |
495 |
{ 'sName': 'withdrawn' }, |
484 |
{ 'sName': 'issues' }, |
496 |
{ 'sName': 'issues' }, |
|
|
497 |
{ 'sName': 'availability' }, |
498 |
{ 'sName': 'duedate' }, |
485 |
{ 'sName': 'actions', 'bSortable': false } |
499 |
{ 'sName': 'actions', 'bSortable': false } |
486 |
], |
500 |
], |
487 |
"sPaginationType": "full_numbers", |
501 |
"sPaginationType": "full_numbers", |
Lines 529-534
Link Here
|
529 |
null, |
543 |
null, |
530 |
[% END %] |
544 |
[% END %] |
531 |
{ 'type': 'text' }, |
545 |
{ 'type': 'text' }, |
|
|
546 |
{ 'type': 'text' }, |
547 |
{ 'type': 'text' }, |
532 |
null |
548 |
null |
533 |
] |
549 |
] |
534 |
}); |
550 |
}); |
535 |
- |
|
|