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

(-)a/acqui/neworderempty.pl (+1 lines)
Lines 396-401 $template->param( Link Here
396
    ecost            => sprintf( "%.2f", $data->{ecost} || 0),
396
    ecost            => sprintf( "%.2f", $data->{ecost} || 0),
397
    unitprice        => sprintf( "%.2f", $data->{unitprice} || 0),
397
    unitprice        => sprintf( "%.2f", $data->{unitprice} || 0),
398
    publishercode    => $data->{'publishercode'},
398
    publishercode    => $data->{'publishercode'},
399
    itype            => $data->{itemtype},
399
    barcode_subfield => $barcode_subfield,
400
    barcode_subfield => $barcode_subfield,
400
    import_batch_id  => $import_batch_id,
401
    import_batch_id  => $import_batch_id,
401
    subscriptionid   => $subscriptionid,
402
    subscriptionid   => $subscriptionid,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-2 / +1 lines)
Lines 352-358 $(document).ready(function() Link Here
352
                <span class="label">Item type:</span>
352
                <span class="label">Item type:</span>
353
                <select name="itemtype" id="itemtype" style="width:12em;">
353
                <select name="itemtype" id="itemtype" style="width:12em;">
354
                [% FOREACH itemtype IN itemtypeloop %]
354
                [% FOREACH itemtype IN itemtypeloop %]
355
                    [% IF ( itemtype.selected ) %]
355
                    [% IF ( itemtype.itemtype == itype ) %]
356
                        <option value="[% itemtype.itemtype %]" selected="selected">[% itemtype.description %]</option>
356
                        <option value="[% itemtype.itemtype %]" selected="selected">[% itemtype.description %]</option>
357
                    [% ELSE %]
357
                    [% ELSE %]
358
                        <option value="[% itemtype.itemtype %]">[% itemtype.description %]</option>
358
                        <option value="[% itemtype.itemtype %]">[% itemtype.description %]</option>
359
- 

Return to bug 12993