Lines 417-495
function validate1(date) {
Link Here
|
417 |
<li><a id="debarments-tab-link" href="#reldebarments">[% debarments.size %] Restrictions</a></li> |
417 |
<li><a id="debarments-tab-link" href="#reldebarments">[% debarments.size %] Restrictions</a></li> |
418 |
</ul> |
418 |
</ul> |
419 |
|
419 |
|
420 |
<div id="checkouts"> |
420 |
[% INCLUDE "checkouts-table.inc" %] |
421 |
[% IF ( issuecount ) %] |
|
|
422 |
<div id="issues-table-loading-message"> |
423 |
<p> |
424 |
<a id="issues-table-load-now-button" href="#" class="btn"><i class="icon-book"></i> Show checkouts</a> |
425 |
</p> |
426 |
</div> |
427 |
|
428 |
<form name="issues" action="/cgi-bin/koha/tools/export.pl" method="post" class="checkboxed"> |
429 |
<table id="issues-table" style="width: 100% !Important;"> |
430 |
<thead> |
431 |
<tr> |
432 |
<th scope="col"> </th> |
433 |
<th scope="col"> </th> |
434 |
<th scope="col">Due date</th> |
435 |
<th scope="col">Due date</th> |
436 |
<th scope="col">Title</th> |
437 |
<th scope="col">Item type</th> |
438 |
<th scope="col">Checked out on</th> |
439 |
<th scope="col">Checked out from</th> |
440 |
<th scope="col">Call no</th> |
441 |
<th scope="col">Charge</th> |
442 |
<th scope="col">Price</th> |
443 |
<th scope="col">Renew <p class="column-tool"><a href="#" id="CheckAllRenewals">select all</a> | <a href="#" id="UncheckAllRenewals">none</a></p></th> |
444 |
<th scope="col">Check in <p class="column-tool"><a href="#" id="CheckAllCheckins">select all</a> | <a href="#" id="UncheckAllCheckins">none</a></p></th> |
445 |
<th scope="col">Export <p class="column-tool"><a href="#" id="CheckAllExports">select all</a> | <a href="#" id="UncheckAllExports">none</a></p></th> |
446 |
</tr> |
447 |
</thead> |
448 |
[% INCLUDE 'checkouts-table-footer.inc' %] |
449 |
</table> |
450 |
|
451 |
<label for="issues-table-load-immediately">Always show checkouts immediately</label> |
452 |
<input id="issues-table-load-immediately" type="checkbox" /> |
453 |
|
454 |
[% IF ( issuecount ) %] |
455 |
<div id="issues-table-actions"> |
456 |
<fieldset class="action"> |
457 |
[% IF ( CAN_user_circulate_override_renewals ) %] |
458 |
[% IF ( AllowRenewalLimitOverride ) %] |
459 |
<label for="override_limit">Override renewal limit:</label> |
460 |
<input type="checkbox" name="override_limit" id="override_limit" value="1" /> |
461 |
[% END %] |
462 |
[% END %] |
463 |
<button class="btn" id="RenewCheckinChecked"><i class="icon-check"></i> Renew or return checked items</button> |
464 |
<button class="btn" id="RenewAll"><i class="icon-book"></i> Renew all</button> |
465 |
</fieldset> |
466 |
|
467 |
[% IF ( exports_enabled ) %] |
468 |
<fieldset> |
469 |
<label for="output_format"><b>Export checkouts using format:</b></label> |
470 |
<select name="output_format" id="output_format"> |
471 |
<option value="iso2709_995">ISO2709 with items</option> |
472 |
<option value="iso2709">ISO2709 without items</option> |
473 |
[% IF Koha.Preference('ExportWithCsvProfile') %] |
474 |
<option value="csv">CSV</option> |
475 |
[% END %] |
476 |
</select> |
477 |
|
478 |
<label for="export_remove_fields">Don't export fields:</label> <input type="text" id="export_remove_fields" name="export_remove_fields" value="[% export_remove_fields %]" title="Use for iso2709 exports" /> |
479 |
<input type="hidden" name="op" value="export" /> |
480 |
<input type="hidden" id="output_format" name="output_format" value="iso2709" /> |
481 |
<input type="hidden" id="dont_export_item" name="dont_export_item" value="0" /> |
482 |
<input type="hidden" id="record_type" name="record_type" value="bibs" /> |
483 |
<button class="btn btn-small" id="export_submit"><i class="icon-download-alt"></i> Export</button> |
484 |
</fieldset> |
485 |
[% END %] |
486 |
</div> |
487 |
[% END %] |
488 |
</form> |
489 |
[% ELSE %] |
490 |
<p>Patron has nothing checked out.</p> |
491 |
[% END %] |
492 |
</div> |
493 |
|
421 |
|
494 |
[% IF ( relatives_issues_count ) %] |
422 |
[% IF ( relatives_issues_count ) %] |
495 |
<div id="relatives-issues"> |
423 |
<div id="relatives-issues"> |
496 |
- |
|
|