Owen Leonard
1e69481103
This patch moves the checkboxes jQuery plugin to intranet-tmpl/prog/lib/jquery/plugins so that it will not be duplicated for each set of translated templates. To test, apply the patch and confirm that select all/clear all controls continue to work on the following pages: - Acquisitions -> Late orders - Acquisitions -> Add to order from an external source (search targets) - Acquisitions -> Suggestions - Administration -> Funds -> Planning (show/hide all columns) * Some unused code has been removed - Administration -> Library transfer limits - Staff client cart - Authorities -> New from Z39.50 (search targets) - Cataloging -> New from Z39.50 (search targets) - Circulation -> Check out to a patron (renew/check in selections) - Circulation -> Offline circulation -> Pending operations - Patrons -> Patron detail (renew/check in selections) - Patrons -> Fines -> Pay fines - Serials -> Subscription -> Serial collection - Tools -> Label creator -> Batches -> Search results - Tools -> Patron card creator -> Batches -> Search results - Tools -> Tags moderation - Tools -> Batch item deletion - Tools -> Batch item modification - Tools -> Inventory -> Submit a batch of barcodes - Lists -> List contents view Signed-off-by: David Cook <dcook@prosentient.com.au> Works as described! I don't think I've ever checked so many boxes before... Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
113 lines
5.2 KiB
Text
113 lines
5.2 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Patrons [% IF ( searching ) %]› Search results[% END %]</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<style type="text/css">
|
|
#custom-doc { width:47.23em;*width:46.04em;min-width:600px; margin:auto; text-align:left; }
|
|
</style>
|
|
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
$(document).ready(function(){
|
|
$("#CheckAll").click(function(){
|
|
$(".checkboxed").checkCheckboxes();
|
|
return false;
|
|
});
|
|
$("#CheckNone").click(function(){
|
|
$(".checkboxed").unCheckCheckboxes();
|
|
return false;
|
|
});
|
|
});
|
|
function add_item(borrowernum,batch_id,type_id){
|
|
var getstr='';
|
|
if (borrowernum == 'checked') {
|
|
itms= new Array;
|
|
if(document.resultform.borrowernumber.length > 0) {
|
|
for (var i=0; i < document.resultform.borrowernumber.length; i++) {
|
|
if (document.resultform.borrowernumber[i].checked) {
|
|
itms.push("borrower_number=" + document.resultform.borrowernumber[i].value);
|
|
}
|
|
}
|
|
getstr = itms.join("&");
|
|
} else {
|
|
getstr = "borrower_number="+document.resultform.borrowernumber.value;
|
|
}
|
|
} else {
|
|
getstr = "borrower_number="+borrowernum;
|
|
}
|
|
var myurl = "edit-batch.pl?op=add&batch_id="+batch_id+"&"+getstr;
|
|
window.opener.location.href = myurl;
|
|
}
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body id="pcard_members-search" class="tools pcard">
|
|
|
|
<div id="custom-doc" class="yui-t7">
|
|
<div id="bd">
|
|
<div class="yui-g">
|
|
<h3>Patron Search</h3>
|
|
|
|
<div class="browse">
|
|
Browse by last name:
|
|
[% FOREACH letter IN alphabet.split(' ') %]
|
|
<a href="/cgi-bin/koha/patroncards/members-search.pl?member=[% letter %]&batch_id=[% batch_id %]">[% letter %]</a>
|
|
[% END %]
|
|
</div>
|
|
|
|
<form method="get" action="/cgi-bin/koha/patroncards/members-search.pl"><p>
|
|
<input type="hidden" name="batch_id" value="[% batch_id %]" />
|
|
<input type="hidden" name="type" value="[% type %]" />
|
|
<label for="member">Name: </label>
|
|
<input id="member" name="member" />
|
|
<label for="category">Category code: </label>
|
|
<input id="category" name="category" />
|
|
<input type="submit" value="Search" /></p>
|
|
</form>
|
|
|
|
[% IF ( resultsloop ) %]
|
|
<div id="searchheader"> <h3>Results [% from %] to [% to %] of [% numresults %] found for [% IF ( member ) %]name: '<span class="ex">[% member %][% ELSIF ( category_type ) %]category code: '<span class="ex">[% category_type %][% END %]</span>'</h3></div>
|
|
[% IF ( paginationbar ) %]<div id="pagination_top" class="pages">[% paginationbar %]</div>[% END %]
|
|
<form name="resultform" action="/cgi-bin/koha/patroncards/members-search.pl" method="get" class="checkboxed"><div style="float: right; margin-top: .5em;"><input type="submit" class="icon addchecked" value="Add checked" onclick="add_item('checked',[% batch_id %]); return false" /> <input type="button" class="close" value="Done" /></div>
|
|
<div style="line-height: 2em; margin-left: .7em;"><a id="CheckAll" href="/cgi-bin/koha/patroncards/members-search.pl">Select All</a><a id="CheckNone" href="/cgi-bin/koha/patroncards/members-search.pl">Clear All</a></div>
|
|
<div class="searchresults">
|
|
|
|
<table style="float: left; margin: .5em 0;">
|
|
<tr>
|
|
<th>Select</th>
|
|
<th><a href="members-search.pl?member=[% member %]&category=[% category_type %]&batch_id=[% batch_id %]&orderby=cardnumber">Card</a></th>
|
|
<th><a href="members-search.pl?member=[% member %]&category=[% category_type %]&batch_id=[% batch_id %]&orderby=surname">Name</a></th>
|
|
<th><a href="members-search.pl?member=[% member %]&category=[% category_type %]&batch_id=[% batch_id %]&orderby=borrowers.categorycode">Category</a></th>
|
|
<th><a href="members-search.pl?member=[% member %]&category=[% category_type %]&batch_id=[% batch_id %]&orderby=branchcode">Library</a></th>
|
|
<th>Expires on</th>
|
|
<th>Notes</th>
|
|
<th></th>
|
|
</tr>
|
|
[% FOREACH resultsloo IN resultsloop %]
|
|
[% UNLESS ( loop.odd ) %]
|
|
<tr class="highlight">
|
|
[% ELSE %]
|
|
<tr>
|
|
[% END %]
|
|
<td> <input type="checkbox" name="borrowernumber" id="patron[% resultsloo.borrowernumber %]" value="[% resultsloo.borrowernumber %]" /> </td>
|
|
<td>[% resultsloo.cardnumber %]</td>
|
|
<td style="white-space: nowrap;"><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resultsloo.borrowernumber %]">[% resultsloo.surname %], [% resultsloo.firstname %]</a> <br /> [% resultsloo.address %][% IF ( resultsloo.address2 ) %]<br />[% resultsloo.address2 %][% END %][% IF ( resultsloo.city ) %]<br />[% resultsloo.city %][% END %]</td>
|
|
<td>[% resultsloo.category_description %] ([% resultsloo.categorycode %])</td>
|
|
<td>[% resultsloo.branchcode %]</td>
|
|
<td>[% resultsloo.dateexpiry %]</td>
|
|
<td>[% resultsloo.borrowernotes %]</td>
|
|
<td><a onclick="add_item('[% resultsloo.borrowernumber %]',[% batch_id %]); return false" href="/cgi-bin/koha/patroncards/edit-batch.pl?borrower_number=[% resultsloo.borrowernumber %]&batch_id=[% batch_id %]&op=add">Add</a></td>
|
|
</tr>
|
|
[% END %]
|
|
</table>
|
|
</div>
|
|
</form>
|
|
|
|
[% ELSE %]
|
|
[% IF ( searching ) %]
|
|
No results found
|
|
[% END %]
|
|
[% END %]
|
|
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'popup-bottom.inc' %]
|