Owen Leonard
8fd75227fc
The staff client has two almost identical include files which can be consolidated: circ-toolbar.inc and members-toolbar.inc. This patch marges the slight differences between them and eliminates circ-toolbar.inc, that being the one which was used on fewer pages. In order to accommodate the different "destination" variable for operations which redirect back either to circ or patrons, circulation.pl defines "destination" in the template. Revision corrects a redirect error in setstatus.pl which predates this patch but which never showed up until now. To test, perform various operations from the toolbar on at least two pages: circulation.pl and moremember.pl. Operations: Edit, add child, duplicate, change password, print (all options), search to hold, renew, set permissions, delete, update child to adult, and export checked-in barcodes. In most cases simply confirming that the link takes you to the right place is enough. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
136 lines
7.2 KiB
HTML
136 lines
7.2 KiB
HTML
<div id="toolbar">
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
[% IF ( CAN_user_borrowers ) %]
|
|
function confirm_deletion() {
|
|
var is_confirmed = window.confirm(_('Are you sure you want to delete this patron? This cannot be undone.'));
|
|
if (is_confirmed) {
|
|
window.location='/cgi-bin/koha/members/deletemem.pl?member=[% borrowernumber %]';
|
|
}
|
|
}
|
|
|
|
[% IF ( is_child ) %]function confirm_updatechild() {
|
|
var is_confirmed = window.confirm(_('Are you sure you want to update this child to an Adult category? This cannot be undone.'));
|
|
if (is_confirmed) {
|
|
window.location='/cgi-bin/koha/members/update-child.pl?op=update&borrowernumber=[% borrowernumber %]&catcode=[% catcode %]&catcode_multi=[% CATCODE_MULTI %]';
|
|
}
|
|
}
|
|
|
|
function update_child() {
|
|
[% IF ( CATCODE_MULTI ) %]
|
|
window.open('/cgi-bin/koha/members/update-child.pl?op=multi&borrowernumber=[% borrowernumber %]','UpdateChild','width=400,height=300,toolbar=no,scrollbars=yes,resizable=yes');
|
|
[% ELSE %]
|
|
confirm_updatechild();
|
|
[% END %]
|
|
}[% ELSE %][% END %]
|
|
|
|
function confirm_reregistration() {
|
|
var is_confirmed = window.confirm(_('Are you sure you want to renew this patron\'s registration?'));
|
|
if (is_confirmed) {
|
|
window.location = '/cgi-bin/koha/members/setstatus.pl?borrowernumber=[% borrowernumber %]&cardnumber=[% cardnumber %]&destination=[% destination %]&reregistration=y';
|
|
}
|
|
}
|
|
function export_barcodes() {
|
|
window.open('/cgi-bin/koha/members/readingrec.pl?borrowernumber=[% borrowernumber %]&op=export_barcodes');
|
|
}
|
|
[% END %]
|
|
|
|
// prepare DOM for YUI Toolbar
|
|
|
|
$(document).ready(function() {
|
|
$("#printslip,#patronflags,#deletepatron").parent().remove();
|
|
$("#moremenuc,#printmenuc,#searchtoholdc").empty();
|
|
yuiToolbar();
|
|
});
|
|
|
|
// YUI Toolbar Functions
|
|
var slip_re = /slip/;
|
|
function printx_window(print_type) {
|
|
var handler = print_type.match(slip_re) ? "printslip" : "moremember";
|
|
window.open("/cgi-bin/koha/members/" + handler + ".pl?borrowernumber=[% borrowernumber %]&print=" + print_type, "printwindow");
|
|
return false;
|
|
}
|
|
function searchToHold(){
|
|
var date = new Date();
|
|
date.setTime(date.getTime() + (10 * 60 * 1000));
|
|
$.cookie("holdfor", "[% borrowernumber %]", { path: "/", expires: date });
|
|
location.href="/cgi-bin/koha/catalogue/search.pl";
|
|
}
|
|
function yuiToolbar() {
|
|
var printmenu = [
|
|
{ text: _("Print summary"), onclick: {fn: function(){printx_window("page")}} },
|
|
{ text: _("Print slip"), onclick: {fn: function(){printx_window("slip")}} },
|
|
{ text: _("Print quick slip"), onclick: {fn: function(){printx_window("qslip")}} }
|
|
];
|
|
|
|
var moremenu = [
|
|
{ text: _("Renew patron"), [% UNLESS CAN_user_borrowers %]disabled: true, [% END %] onclick: { fn: confirm_reregistration } },
|
|
{ text: _("Set permissions"), url: "/cgi-bin/koha/members/member-flags.pl?member=[% borrowernumber %]"[% UNLESS CAN_user_permissions %], disabled: true[% END %]},
|
|
{ text: _("Delete"), [% UNLESS CAN_user_borrowers %]disabled: true, [% END %] onclick: { fn: confirm_deletion } },
|
|
{ text: _("Update child to adult patron")[% IF is_child && CAN_user_borrowers %], onclick: { fn: update_child }[% ELSE %], disabled: true[% END %]},
|
|
{ text: _("Export today's checked in barcodes"), [% UNLESS CAN_user_borrowers %]disabled: true, [% END %] onclick: { fn: export_barcodes }}
|
|
];
|
|
|
|
new YAHOO.widget.Button({
|
|
type: "menu",
|
|
label: _("Print"),
|
|
name: "printmenubutton",
|
|
menu: printmenu,
|
|
container: "printmenuc"
|
|
});
|
|
new YAHOO.widget.Button({
|
|
id: "searchtohold",
|
|
type: "button",
|
|
label: _("Search to hold"),
|
|
container: "searchtoholdc",
|
|
onclick: {fn: searchToHold }
|
|
});
|
|
new YAHOO.widget.Button({
|
|
type: "menu",
|
|
label: _("More"),
|
|
name: "moremenubutton",
|
|
menu: moremenu,
|
|
container: "moremenuc"
|
|
});
|
|
|
|
[% IF ( CAN_user_borrowers ) %][% IF ( adultborrower ) %]new YAHOO.widget.Button("addchild");[% END %]
|
|
new YAHOO.widget.Button("editpatron");
|
|
new YAHOO.widget.Button("changepassword");
|
|
new YAHOO.widget.Button("duplicate");[% END %]
|
|
new YAHOO.widget.Button("printslip");
|
|
new YAHOO.widget.Button("printpage");
|
|
}
|
|
|
|
//]]>
|
|
</script>
|
|
<ul class="toolbar">
|
|
[% IF ( CAN_user_borrowers ) %]
|
|
[% IF ( category_type ) %]
|
|
[% IF ( guarantor ) %]
|
|
<li><a id="editpatron" href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=[% destination %]&borrowernumber=[% borrowernumber %]&guarantorid=[% guarantorborrowernumber %]&category_type=[% category_type %]">
|
|
[% ELSE %]
|
|
<li><a id="editpatron" href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=[% destination %]&borrowernumber=[% borrowernumber %]&category_type=[% category_type %]">
|
|
[% END %]Edit</a></li>
|
|
[% ELSE %] <!-- try with categorycode if no category_type -->
|
|
[% IF ( categorycode ) %]
|
|
<li><a id="editpatron" href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=[% destination %]&borrowernumber=[% borrowernumber %]&categorycode=[% categorycode %]">Edit</a></li>
|
|
[% ELSE %] <!-- if no categorycode, set category_type to A by default -->
|
|
<li><a id="editpatron" href="/cgi-bin/koha/members/memberentry.pl?op=modify&destination=[% destination %]&borrowernumber=[% borrowernumber %]&category_type=A">Edit</a></li>
|
|
[% END %]
|
|
[% END %]
|
|
[% IF ( adultborrower AND activeBorrowerRelationship ) %]<li><a id="addchild" href="/cgi-bin/koha/members/memberentry.pl?op=add&guarantorid=[% borrowernumber %]&category_type=C">Add child</a></li>[% END %]
|
|
<li><a id="changepassword" href="/cgi-bin/koha/members/member-password.pl?member=[% borrowernumber %]">Change password</a></li>
|
|
<li><a id="duplicate" href="/cgi-bin/koha/members/memberentry.pl?op=duplicate&borrowernumber=[% borrowernumber %]&category_type=[% category_type %]">Duplicate</a></li>
|
|
[% END %]
|
|
<li id="printmenuc"><a id="printpage" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]&print=page">Print summary</a></li>
|
|
<li><a id="printslip" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]&print=slip">Print slip</a></li>
|
|
<li id="searchtoholdc"><a id="searchtohold" href="#">Search to hold</a></li>
|
|
[% IF ( CAN_user_borrowers ) %]<li id="moremenuc"><a id="renewpatron" href="/cgi-bin/koha/members/moremember.pl?reregistration=y&borrowernumber=[% borrowernumber %]">Renew account</a></li>[% END %]
|
|
[% IF ( CAN_user_permissions ) %]
|
|
[% IF ( CAN_user_staffaccess ) %]
|
|
<li><a id="patronflags" href="/cgi-bin/koha/members/member-flags.pl?member=[% borrowernumber %]">Set permissions</a></li>
|
|
[% END %]
|
|
[% END %]
|
|
[% IF ( CAN_user_staffaccess ) %]<li><a id="deletepatron" href="#" onclick="confirm_deletion();">Delete</a></li>[% END %]
|
|
|
|
</ul></div>
|