View | Details | Raw Unified | Return to bug 6751
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-toolbar.inc (-2 / +7 lines)
Lines 33-38 function update_child() { Link Here
33
[% END %]
33
[% END %]
34
}
34
}
35
35
36
function export_barcodes() {
37
    window.open('/cgi-bin/koha/members/readingrec.pl?borrowernumber=[% borrowernumber %]&op=export_barcodes');
38
}
39
36
	// prepare DOM for YUI Toolbar
40
	// prepare DOM for YUI Toolbar
37
41
38
	 $(document).ready(function() {
42
	 $(document).ready(function() {
Lines 65-72 function update_child() { Link Here
65
			{ text: _("Renew Patron"),  onclick: { fn: confirm_reregistration } },
69
			{ text: _("Renew Patron"),  onclick: { fn: confirm_reregistration } },
66
			{ text: _("Set Permissions"), url: "/cgi-bin/koha/members/member-flags.pl?member=[% borrowernumber %]"[% UNLESS CAN_user_permissions %], disabled: true[% END %]},
70
			{ text: _("Set Permissions"), url: "/cgi-bin/koha/members/member-flags.pl?member=[% borrowernumber %]"[% UNLESS CAN_user_permissions %], disabled: true[% END %]},
67
            { text: _("Delete"), [% UNLESS CAN_user_borrowers %]disabled: true, [% END %] onclick: { fn: confirm_deletion } },
71
            { text: _("Delete"), [% UNLESS CAN_user_borrowers %]disabled: true, [% END %] onclick: { fn: confirm_deletion } },
68
			{ text: _("Update Child to Adult Patron") , onclick: { fn: update_child }[% UNLESS is_child %], disabled: true[% END %]}
72
            { text: _("Update Child to Adult Patron") , onclick: { fn: update_child }[% UNLESS is_child %], disabled: true[% END %]},
69
		];
73
            { text: _("Export today checkin barcodes"), onclick: { fn: export_barcodes }}
74
        ];
70
75
71
	    new YAHOO.widget.Button({
76
	    new YAHOO.widget.Button({
72
	        type: "menu",
77
	        type: "menu",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/members/readingrec.tt (-1 / +3 lines)
Lines 4-9 Link Here
4
4
5
<p>The circulation history tab will appear if you have set the intranetreadinghistory preference to allow it to appear. If you have the OPACPrivacy system preference set to 'Allow' and the patron has decided that the library cannot keep this information this tab will only show currently checked out items.</p>
5
<p>The circulation history tab will appear if you have set the intranetreadinghistory preference to allow it to appear. If you have the OPACPrivacy system preference set to 'Allow' and the patron has decided that the library cannot keep this information this tab will only show currently checked out items.</p>
6
6
7
<p>You can export the today checkin barcodes by clinking on the link above the table. It simply generates a list of barcodes.</p>
8
7
<p><strong>See the full documentation for Circulation History in the <a href="http://manual.koha-community.org/3.6/en/patroninformation.html#circhistory">manual</a> (online).</strong></p>
9
<p><strong>See the full documentation for Circulation History in the <a href="http://manual.koha-community.org/3.6/en/patroninformation.html#circhistory">manual</a> (online).</strong></p>
8
10
9
[% INCLUDE 'help-bottom.inc' %]
11
[% INCLUDE 'help-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt (-2 lines)
Lines 29-35 Link Here
29
[% IF ( loop_reading ) %]
29
[% IF ( loop_reading ) %]
30
<form action="/cgi-bin/koha/members/readingrec.pl" method="get"><input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" /></form>
30
<form action="/cgi-bin/koha/members/readingrec.pl" method="get"><input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" /></form>
31
31
32
<p><a href="readingrec.pl?borrowernumber=[% borrowernumber %]&amp;op=export_barcodes">Export checkin barcodes</a></p>
33
<div id="pagertable_readingrec">
32
<div id="pagertable_readingrec">
34
[% INCLUDE 'table-pager.inc' perpage='20' %]
33
[% INCLUDE 'table-pager.inc' perpage='20' %]
35
</div>
34
</div>
36
- 

Return to bug 6751