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

(-)a/acqui/neworderempty.pl (-1 / +2 lines)
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'} ) unless ( $ordernumber eq '' );
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
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-2 / +1 lines)
Lines 548-554 $(document).ready(function() Link Here
548
            </li>
548
            </li>
549
            <li>
549
            <li>
550
                <label for="notes">Notes: </label>
550
                <label for="notes">Notes: </label>
551
                <textarea id="notes" cols="30" rows="3" name="notes" ></textarea>
551
                <textarea id="notes" cols="30" rows="3" name="notes" >[% IF ( notes ) %][% notes %][% END %]</textarea>
552
            </li>
552
            </li>
553
            <li><div class="hint">The 2 following fields are available for your own usage. They can be useful for statistical purposes</div>
553
            <li><div class="hint">The 2 following fields are available for your own usage. They can be useful for statistical purposes</div>
554
                <label for="sort1">Statistic 1: </label>
554
                <label for="sort1">Statistic 1: </label>
555
- 

Return to bug 9438