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

(-)a/acqui/parcel.pl (-2 / +2 lines)
Lines 284-290 $template->param( Link Here
284
    invoiceid             => $invoice->{invoiceid},
284
    invoiceid             => $invoice->{invoiceid},
285
    invoice               => $invoice->{invoicenumber},
285
    invoice               => $invoice->{invoicenumber},
286
    invoiceclosedate      => $invoice->{closedate},
286
    invoiceclosedate      => $invoice->{closedate},
287
    datereceived          => dt_from_string,
287
    shipmentdate         => $invoice->{shipmentdate},
288
    name                  => $bookseller->name,
288
    name                  => $bookseller->name,
289
    booksellerid          => $bookseller->id,
289
    booksellerid          => $bookseller->id,
290
    loop_received         => \@loop_received,
290
    loop_received         => \@loop_received,
Lines 294-299 $template->param( Link Here
294
    total_tax_excluded    => $total_tax_excluded,
294
    total_tax_excluded    => $total_tax_excluded,
295
    total_tax_included    => $total_tax_included,
295
    total_tax_included    => $total_tax_included,
296
    subtotal_for_funds    => $subtotal_for_funds,
296
    subtotal_for_funds    => $subtotal_for_funds,
297
    sticky_filters       => $sticky_filters,
297
    sticky_filters        => $sticky_filters,
298
);
298
);
299
output_html_with_http_headers $input, $cookie, $template->output;
299
output_html_with_http_headers $input, $cookie, $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-2 / +1 lines)
Lines 89-95 Link Here
89
89
90
[% UNLESS no_orders_to_display %]
90
[% UNLESS no_orders_to_display %]
91
<div id="acqui_receive_summary">
91
<div id="acqui_receive_summary">
92
<p><strong>Invoice number:</strong> [% invoice | html %] <strong>Received by:</strong> [% logged_in_user.userid | html %] <strong>On:</strong> [% datereceived | $KohaDates %]</p>
92
<p><strong>Invoice number:</strong> [% invoice | html %] <strong>Shipment date:</strong> [% shipmentdate | $KohaDates %]</p>
93
</div>
93
</div>
94
[% UNLESS (invoiceclosedate) %]
94
[% UNLESS (invoiceclosedate) %]
95
  <div id="acqui_receive_search">
95
  <div id="acqui_receive_search">
96
- 

Return to bug 17458