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

(-)a/circ/article-request-slip.pl (+1 lines)
Lines 81-86 $template->param( Link Here
81
    caller => 'article-request',
81
    caller => 'article-request',
82
    plain  => 0,
82
    plain  => 0,
83
    style  => $style,
83
    style  => $style,
84
    id     => 'ar_slip',
84
);
85
);
85
86
86
output_html_with_http_headers $cgi, $cookie, $template->output;
87
output_html_with_http_headers $cgi, $cookie, $template->output;
(-)a/circ/hold-transfer-slip.pl (+1 lines)
Lines 54-59 $template->param( slip => $slip ) if ($slip); Link Here
54
$template->param( caller => 'hold-transfer' );
54
$template->param( caller => 'hold-transfer' );
55
$template->param( plain  => !$is_html );
55
$template->param( plain  => !$is_html );
56
$template->param( style  => $style );
56
$template->param( style  => $style );
57
$template->param( id     => 'reserve_slip' );
57
58
58
output_html_with_http_headers $input, $cookie, $template->output;
59
output_html_with_http_headers $input, $cookie, $template->output;
59
60
(-)a/circ/transfer-slip.pl (+1 lines)
Lines 60-65 $template->param( Link Here
60
    caller => 'cud-transfer',
60
    caller => 'cud-transfer',
61
    stylesheet => C4::Context->preference("SlipCSS"),
61
    stylesheet => C4::Context->preference("SlipCSS"),
62
    style      => $style,
62
    style      => $style,
63
    id         => 'transfer_slip',
63
);
64
);
64
65
65
output_html_with_http_headers $input, $cookie, $template->output;
66
output_html_with_http_headers $input, $cookie, $template->output;
(-)a/members/print_overdues.pl (+1 lines)
Lines 68-73 $template->param( Link Here
68
    plain          => !$letter->{is_html},
68
    plain          => !$letter->{is_html},
69
    borrowernumber => $borrowernumber,
69
    borrowernumber => $borrowernumber,
70
    style          => $letter->{style},
70
    style          => $letter->{style},
71
    id             => 'overdues_slip',
71
);
72
);
72
73
73
output_html_with_http_headers $input, $cookie, $template->output;
74
output_html_with_http_headers $input, $cookie, $template->output;
(-)a/preservation/print_slip.pl (+3 lines)
Lines 40-45 my $logged_in_user = Koha::Patrons->find($loggedinuser); Link Here
40
my $branch         = C4::Context->userenv->{'branch'};
40
my $branch         = C4::Context->userenv->{'branch'};
41
41
42
my @slips;
42
my @slips;
43
my $count = 0;
43
for my $train_item_id (@train_item_ids) {
44
for my $train_item_id (@train_item_ids) {
44
    my $train_item = Koha::Preservation::Train::Items->find($train_item_id);
45
    my $train_item = Koha::Preservation::Train::Items->find($train_item_id);
45
    my $letter     = C4::Letters::GetPreparedLetter(
46
    my $letter     = C4::Letters::GetPreparedLetter(
Lines 55-60 for my $train_item_id (@train_item_ids) { Link Here
55
    push @slips, {
56
    push @slips, {
56
        content => $letter->{content},
57
        content => $letter->{content},
57
        is_html => $letter->{is_html},
58
        is_html => $letter->{is_html},
59
        style   => $letter->{style},
60
        id      => ++$count,
58
    };
61
    };
59
}
62
}
60
63
(-)a/recalls/recall_pickup_slip.pl (-1 / +1 lines)
Lines 70-75 $template->param( Link Here
70
    plain  => !$is_html,
70
    plain  => !$is_html,
71
    caller => 'recall',
71
    caller => 'recall',
72
    style  => $style,
72
    style  => $style,
73
    id     => 'recall_request_det',
73
);
74
);
74
75
75
output_html_with_http_headers $input, $cookie, $template->output;
76
output_html_with_http_headers $input, $cookie, $template->output;
76
- 

Return to bug 38089