Lines 389-401
$template->param(
Link Here
|
389 |
total => sprintf( "%.2f", ($data->{ecost} || 0) * ($data->{'quantity'} || 0) ), |
389 |
total => sprintf( "%.2f", ($data->{ecost} || 0) * ($data->{'quantity'} || 0) ), |
390 |
ecost => sprintf( "%.2f", $data->{ecost} || 0), |
390 |
ecost => sprintf( "%.2f", $data->{ecost} || 0), |
391 |
unitprice => sprintf( "%.2f", $data->{unitprice} || 0), |
391 |
unitprice => sprintf( "%.2f", $data->{unitprice} || 0), |
392 |
notes => $data->{'notes'}, |
|
|
393 |
publishercode => $data->{'publishercode'}, |
392 |
publishercode => $data->{'publishercode'}, |
394 |
barcode_subfield => $barcode_subfield, |
393 |
barcode_subfield => $barcode_subfield, |
395 |
import_batch_id => $import_batch_id, |
394 |
import_batch_id => $import_batch_id, |
396 |
(uc(C4::Context->preference("marcflavour"))) => 1 |
395 |
(uc(C4::Context->preference("marcflavour"))) => 1 |
397 |
); |
396 |
); |
398 |
|
397 |
|
|
|
398 |
$template->param ( notes => $data->{'notes'} ) if ( $ordernumber ); |
399 |
|
399 |
output_html_with_http_headers $input, $cookie, $template->output; |
400 |
output_html_with_http_headers $input, $cookie, $template->output; |
400 |
|
401 |
|
401 |
|
402 |
|