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

(-)a/acqui/neworderempty.pl (+1 lines)
Lines 402-407 $template->param( Link Here
402
    ecost            => sprintf( "%.2f", $data->{ecost} || 0),
402
    ecost            => sprintf( "%.2f", $data->{ecost} || 0),
403
    unitprice        => sprintf( "%.2f", $data->{unitprice} || 0),
403
    unitprice        => sprintf( "%.2f", $data->{unitprice} || 0),
404
    publishercode    => $data->{'publishercode'},
404
    publishercode    => $data->{'publishercode'},
405
    itype            => $data->{itemtype},
405
    barcode_subfield => $barcode_subfield,
406
    barcode_subfield => $barcode_subfield,
406
    import_batch_id  => $import_batch_id,
407
    import_batch_id  => $import_batch_id,
407
    subscriptionid   => $subscriptionid,
408
    subscriptionid   => $subscriptionid,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-2 / +1 lines)
Lines 409-415 $(document).ready(function() Link Here
409
                <span class="label">Item type:</span>
409
                <span class="label">Item type:</span>
410
                <select name="itemtype" id="itemtype" style="width:12em;">
410
                <select name="itemtype" id="itemtype" style="width:12em;">
411
                [% FOREACH itemtype IN itemtypeloop %]
411
                [% FOREACH itemtype IN itemtypeloop %]
412
                    [% IF ( itemtype.selected ) %]
412
                    [% IF ( itemtype.itemtype == itype ) %]
413
                        <option value="[% itemtype.itemtype %]" selected="selected">[% itemtype.description %]</option>
413
                        <option value="[% itemtype.itemtype %]" selected="selected">[% itemtype.description %]</option>
414
                    [% ELSE %]
414
                    [% ELSE %]
415
                        <option value="[% itemtype.itemtype %]">[% itemtype.description %]</option>
415
                        <option value="[% itemtype.itemtype %]">[% itemtype.description %]</option>
416
- 

Return to bug 12993