Bugzilla – Attachment 158400 Details for
Bug 32986
Add ability to generate custom slips for patrons
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32986: (QA follow-up) Fix QA script complaints: tabs and TT filters
Bug-32986-QA-follow-up-Fix-QA-script-complaints-ta.patch (text/plain), 4.19 KB, created by
Katrin Fischer
on 2023-11-04 22:57:54 UTC
(
hide
)
Description:
Bug 32986: (QA follow-up) Fix QA script complaints: tabs and TT filters
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2023-11-04 22:57:54 UTC
Size:
4.19 KB
patch
obsolete
>From 1e392c556412fb160a6b3bb1150a8dd2b5143bd2 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Tue, 11 Apr 2023 21:35:56 +0000 >Subject: [PATCH] Bug 32986: (QA follow-up) Fix QA script complaints: tabs and > TT filters > >* Perltidied the section with tabs in printslip.pl >* Fixed indentation and tabs in letter.tt >* Added missing TT filters to members-toolbar.inc > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > .../prog/en/includes/members-toolbar.inc | 7 +++-- > members/printslip.pl | 27 ++++++++++--------- > tools/letter.pl | 2 +- > 3 files changed, 18 insertions(+), 18 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc >index d49e3c15d2..d0837d4a6b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc >@@ -32,10 +32,9 @@ > <li><a id="print_overdues" href="#">Print overdues</a></li> > [% END %] > <li><a class="printslip" data-code="checkinslip" href="#">Print checkin slip</a></li> >- [% FOREACH notice IN Notices.GetTemplates( 'patron_slip' ) %] >- <li><a class="printslip" data-code="[% notice.code %]" href="#">Print [% notice.name %] slip</a></li> >- [% END %] >- >+ [% FOREACH notice IN Notices.GetTemplates( 'patron_slip' ) %] >+ <li><a class="printslip" data-code="[% notice.code | html %]" href="#">Print [% notice.name | html %] slip</a></li> >+ [% END %] > </ul> > </div> > [% END %] >diff --git a/members/printslip.pl b/members/printslip.pl >index d693b7e55c..d7709775e6 100755 >--- a/members/printslip.pl >+++ b/members/printslip.pl >@@ -66,13 +66,13 @@ my $patron = Koha::Patrons->find( $borrowernumber ); > output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } ); > > my $branch=C4::Context->userenv->{'branch'}; >-my ($letter, $slip, $is_html); >+my ( $letter, $slip, $is_html ); > if ( $print eq 'checkinslip' ) { > my $checkinslip_branch = $session->param('branch') ? $session->param('branch') : $branch; > > # get today's checkins > my @issue_ids = $patron->old_checkouts->filter_by_todays_checkins->get_column('issue_id'); >- my %loops = ( >+ my %loops = ( > old_issues => \@issue_ids, > ); > >@@ -89,24 +89,25 @@ if ( $print eq 'checkinslip' ) { > message_transport_type => 'print' > ); > >-} elsif ( $print eq 'issueslip' ){ >- $letter = IssueSlip ($session->param('branch') || $branch, $borrowernumber, 0); >-} elsif ( $print eq 'issueqslip' ){ >- $letter = IssueSlip ($session->param('branch') || $branch, $borrowernumber, 1); >+} elsif ( $print eq 'issueslip' ) { >+ $letter = IssueSlip( $session->param('branch') || $branch, $borrowernumber, 0 ); >+} elsif ( $print eq 'issueqslip' ) { >+ $letter = IssueSlip( $session->param('branch') || $branch, $borrowernumber, 1 ); > } else { > $letter = C4::Letters::GetPreparedLetter( >- module => 'patron_slip', >- letter_code => $print, >- branchcode => $branch, >- lang => $patron->lang, >- tables => { >- branches => $branch, >- borrowers => $borrowernumber >+ module => 'patron_slip', >+ letter_code => $print, >+ branchcode => $branch, >+ lang => $patron->lang, >+ tables => { >+ branches => $branch, >+ borrowers => $borrowernumber > }, > message_transport_type => 'print' > ); > } > >+ > $slip = $letter->{content}; > $is_html = $letter->{is_html}; > >diff --git a/tools/letter.pl b/tools/letter.pl >index 85452aa531..4214d8e2cc 100755 >--- a/tools/letter.pl >+++ b/tools/letter.pl >@@ -252,7 +252,7 @@ sub add_form { > elsif ($module eq 'claimissues') { > push @{$field_selection}, add_fields('aqbooksellers', 'serial', 'subscription', 'biblio', 'biblioitems'); > } >- elsif ($module eq 'patron_slip') { >+ elsif ( $module eq 'patron_slip' ) { > push @{$field_selection}, add_fields('borrowers'); > } > elsif ($module eq 'serial') { >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 32986
:
146750
|
148267
|
148361
|
148374
|
148376
|
149506
|
149507
|
153479
|
153480
|
153481
|
153482
|
156800
|
158399
| 158400 |
158401
|
158402
|
158403
|
158404
|
158405
|
158523