@@ -, +, @@ templates - From the Print menu in the toolbar, choose "Print summary." The patron summary page should open and the print dialog should be automatically triggered. - From the Print menu in the toolbar, choose "Print slip." The patron slip page should open and the print dialog should be automatically triggered. - From the Print menu in the toolbar, choose "Print quick slip." The patron quick slip page should open and the print dialog should be automatically triggered. - Click the patron's "Fines" tab in the left-hand sidebar and then choose the "Account" tab. -- Click the "Print" button for an account payment (the link should point to printfeercpt.pl). A print receipt page should open and the print dialog should be automatically triggered. -- Follow the same procedure for a transaction which is not an account payment (the link should point to printinvoice.pl). - Click the "Create manual invoice" tab. -- Select one of the "type" choices. Doing so should automatically populate the "Description" field with the corresponding code. -- If necessary, define one or more values for the MANUAL_INV authorized value and confirm that those invoice types work as well. - From the patron's "Pay fines" tab, click the "Pay amount" button. In the "collect from patron" field, enter any combination of letters, numbers, and symbols. When you tab away from that field your text should be reformatted to currency format. - From the patrons home page, change the filter in the left-hand sidebar and submit it. The correct results should be returned. --- .../intranet-tmpl/prog/en/includes/slip-print.inc | 6 ++--- .../prog/en/modules/circ/printslip.tt | 2 +- .../prog/en/modules/members/maninvoice.tt | 26 ++++++++++++---------- .../prog/en/modules/members/member.tt | 5 ++++- .../prog/en/modules/members/moremember-print.tt | 5 +---- .../prog/en/modules/members/moremember-receipt.tt | 2 +- .../prog/en/modules/members/paycollect.tt | 16 ++++++------- .../prog/en/modules/members/printfeercpt.tt | 4 +--- .../prog/en/modules/members/printinvoice.tt | 7 +++--- 9 files changed, 36 insertions(+), 37 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/slip-print.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/slip-print.inc @@ -2,9 +2,9 @@ [% IF ( Koha.Preference('IntranetSlipPrinterJS') ) %] [% Koha.Preference('IntranetSlipPrinterJS') %] [% ELSE %] - function printThenClose() { + $( window ).load(function() { window.print(); setTimeout('window.close()', 1); - } + }); [% END %] - + --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/printslip.tt @@ -19,7 +19,7 @@ [% INCLUDE 'slip-print.inc' #printThenClose %] - +
[% IF plain %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/maninvoice.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/maninvoice.tt @@ -4,9 +4,22 @@ [% INCLUDE 'doc-head-close.inc' %] @@ -44,19 +57,8 @@ $(document).ready(function(){ Manual invoice
  1. - - --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt @@ -109,6 +109,9 @@ $(document).ready(function() { e.preventDefault(); clearFilters(true); }); + $("#searchform").on("submit",function(){ + return filter(); + }); }); var dtMemberResults; @@ -409,7 +412,7 @@ function filterByFirstLetterSurname(letter) {
-
+

Filters

--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt @@ -5,12 +5,9 @@ [% INCLUDE 'doc-head-open.inc' %] Summary for [% firstname %] [% surname %] ([% cardnumber %]) [% INCLUDE 'doc-head-close.inc' %] - - - [% INCLUDE 'slip-print.inc' #printThenClose %] - +

Account summary: [% firstname %] [% surname %] ([% cardnumber %])

--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-receipt.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-receipt.tt @@ -8,7 +8,7 @@ [% INCLUDE 'slip-print.inc' #printThenClose %] - +
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt @@ -7,11 +7,11 @@ // - -