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

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

Return to bug 12993