Bugzilla – Attachment 164744 Details for
Bug 33478
Customise the format of notices when they are printed
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33478: Apply formatting to HOLD_SLIP
Bug-33478-Apply-formatting-to-HOLDSLIP.patch (text/plain), 1.54 KB, created by
Martin Renvoize (ashimema)
on 2024-04-11 14:29:01 UTC
(
hide
)
Description:
Bug 33478: Apply formatting to HOLD_SLIP
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-04-11 14:29:01 UTC
Size:
1.54 KB
patch
obsolete
>From 750110d7acb6e93770961b031ff1e7f1434f0889 Mon Sep 17 00:00:00 2001 >From: Aleisha Amohia <aleisha@catalyst.net.nz> >Date: Sun, 12 Nov 2023 21:24:53 +0000 >Subject: [PATCH] Bug 33478: Apply formatting to HOLD_SLIP > >To test: > >1. Place a hold on a record >2. Check in an item attached to the record >3. When the pop-up for the hold is triggered, confirm hold and print slip >4. Confirm your format settings for HOLD_SLIP are applied > >Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> >--- > circ/hold-transfer-slip.pl | 10 ++++++---- > 1 file changed, 6 insertions(+), 4 deletions(-) > >diff --git a/circ/hold-transfer-slip.pl b/circ/hold-transfer-slip.pl >index 61aef56c4cd..435d1c14e08 100755 >--- a/circ/hold-transfer-slip.pl >+++ b/circ/hold-transfer-slip.pl >@@ -41,17 +41,19 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( > ); > > my $userenv = C4::Context->userenv; >-my ($slip, $is_html); >+my ( $slip, $is_html, $style ); > if ( my $letter = ReserveSlip ({ > branchcode => $session->param('branch') || $userenv->{branch}, > reserve_id => $reserve_id, > }) ) { >- $slip = $letter->{content}; >+ $slip = $letter->{content}; > $is_html = $letter->{is_html}; >+ $style = $letter->{style}; > } >-$template->param( slip => $slip ) if ($slip); >+$template->param( slip => $slip ) if ($slip); > $template->param( caller => 'hold-transfer' ); >-$template->param( plain => !$is_html ); >+$template->param( plain => !$is_html ); >+$template->param( style => $style ); > > output_html_with_http_headers $input, $cookie, $template->output; > >-- >2.44.0
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 33478
:
149743
|
149785
|
149786
|
149787
|
149914
|
149915
|
149916
|
149917
|
149918
|
149999
|
150000
|
150001
|
150002
|
150003
|
150004
|
150005
|
150006
|
150007
|
150008
|
150009
|
150010
|
150011
|
150012
|
150265
|
150266
|
150267
|
150268
|
150269
|
150270
|
150271
|
150272
|
150273
|
150274
|
150275
|
150276
|
150277
|
150324
|
150325
|
150326
|
150327
|
150328
|
150329
|
150330
|
150331
|
150332
|
150333
|
150334
|
150335
|
150336
|
150337
|
150338
|
150339
|
150340
|
150341
|
150342
|
150343
|
150344
|
150345
|
151548
|
151580
|
151581
|
151582
|
151583
|
151584
|
151585
|
151586
|
151587
|
151588
|
151589
|
151590
|
151591
|
151592
|
151593
|
156469
|
157368
|
157369
|
157370
|
157371
|
157372
|
157373
|
157374
|
157375
|
157376
|
157377
|
157378
|
157379
|
157380
|
157381
|
157382
|
157387
|
158835
|
158836
|
158837
|
158838
|
158839
|
158840
|
158841
|
158842
|
158843
|
158844
|
158845
|
158846
|
158847
|
158848
|
158849
|
158856
|
162556
|
162557
|
162558
|
162559
|
162560
|
162561
|
162562
|
162563
|
162564
|
162565
|
162566
|
162567
|
162568
|
162569
|
163903
|
163904
|
163905
|
163906
|
163907
|
163908
|
163909
|
163910
|
163911
|
163912
|
163913
|
163914
|
163915
|
163916
|
163924
|
163925
|
163926
|
163927
|
163928
|
163929
|
163930
|
163931
|
163932
|
163933
|
163934
|
163935
|
163936
|
163937
|
163938
|
164719
|
164720
|
164721
|
164722
|
164723
|
164724
|
164725
|
164726
|
164727
|
164728
|
164729
|
164730
|
164731
|
164732
|
164733
|
164741
|
164742
|
164743
| 164744 |
164745
|
164746
|
164747
|
164748
|
164749
|
164750
|
164751
|
164752
|
164753
|
164754
|
164755