From 93bc3c7d63e9a2633a4cb91229a7bfd9b43c9962 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 10 Apr 2015 09:42:18 -0400 Subject: [PATCH] Bug 11759 [QA Followup] - Fix koha-qa errors --- circ/circulation.pl | 4 +--- .../en/modules/circ/circulation_batch_checkouts.tt | 9 ++++----- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index 69580ad..0f04209 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -400,7 +400,7 @@ if (@$barcodes) { $template_params->{getTitleMessageIteminfo} = $iteminfo->{'title'}; $template_params->{getBarcodeMessageIteminfo} = $iteminfo->{'barcode'}; $template_params->{NEEDSCONFIRMATION} = 1; - $template_params->{onsite_checkout} => $onsite_checkout, + $template_params->{onsite_checkout} = $onsite_checkout; $confirm_required = 1; } } @@ -413,8 +413,6 @@ if (@$barcodes) { my ( $od, $issue, $fines ) = GetMemberIssuesAndFines($borrowernumber); - # FIXME If the issue is confirmed, we launch another time GetMemberIssuesAndFines, now display the issue count after issue - my ( $od, $issue, $fines ) = GetMemberIssuesAndFines( $borrowernumber ); $template_params->{issuecount} = $issue; if ( $iteminfo ) { diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt index c2947e8..6b691b7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -13,10 +13,9 @@ [% INCLUDE 'doc-head-close.inc' %] [% INCLUDE 'calendar.inc' %] -[% IF ( UseTablesortForCirc ) %] - + +[% INCLUDE 'datatables.inc' %] [% INCLUDE 'datatables-strings.inc' %] -[% END %]