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

(-)a/acqui/addorder.pl (+1 lines)
Lines 204-209 if ( $orderinfo->{quantity} ne '0' ) { Link Here
204
                "biblioitems.publishercode"   => $$orderinfo{publishercode}   ? $$orderinfo{publishercode} : "",
204
                "biblioitems.publishercode"   => $$orderinfo{publishercode}   ? $$orderinfo{publishercode} : "",
205
                "biblioitems.publicationyear" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "",
205
                "biblioitems.publicationyear" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "",
206
                "biblio.copyrightdate"        => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "",
206
                "biblio.copyrightdate"        => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "",
207
                "biblioitems.itemtype"        => $$orderinfo{itemtype} ? $$orderinfo{itemtype} : "",
207
            });
208
            });
208
209
209
        # create the record in catalogue, with framework ''
210
        # create the record in catalogue, with framework ''
(-)a/acqui/neworderempty.pl (+3 lines)
Lines 324-329 if (C4::Context->preference('AcqCreateItem') eq 'ordering' && !$ordernumber) { Link Here
324
    
324
    
325
    $template->param(items => \@itemloop);
325
    $template->param(items => \@itemloop);
326
}
326
}
327
# Get the item types list, but only if item_level_itype is YES. Otherwise, it will be in the item, no need to display it in the biblio
328
my @itemtypes = C4::ItemType->all unless C4::Context->preference('item-level_itypes');
327
329
328
# fill template
330
# fill template
329
$template->param(
331
$template->param(
Lines 368-373 $template->param( Link Here
368
    budget_loop      => $budget_loop,
370
    budget_loop      => $budget_loop,
369
    isbn             => $data->{'isbn'},
371
    isbn             => $data->{'isbn'},
370
    seriestitle      => $data->{'seriestitle'},
372
    seriestitle      => $data->{'seriestitle'},
373
    itemtypeloop     => \@itemtypes,
371
    quantity         => $data->{'quantity'},
374
    quantity         => $data->{'quantity'},
372
    quantityrec      => $data->{'quantity'},
375
    quantityrec      => $data->{'quantity'},
373
    rrp              => $data->{'rrp'},
376
    rrp              => $data->{'rrp'},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-1 / +17 lines)
Lines 249-254 $(document).ready(function() Link Here
249
                <input type="text" size="50" name="series" id="series" value="[% seriestitle %]" />
249
                <input type="text" size="50" name="series" id="series" value="[% seriestitle %]" />
250
            [% END %]
250
            [% END %]
251
        </li>
251
        </li>
252
        </li>
253
            [% UNLESS ( biblionumber ) %]
254
            [% IF ( itemtypeloop ) %]
255
            <li>
256
                <span class="label">Item type:</span>
257
                <select name="itemtype" style="width:12em;">
258
                [% FOREACH itemtype IN itemtypeloop %]
259
                    [% IF ( itemtype.selected ) %]
260
                        <option value="[% itemtype.itemtype %]" selected="selected">[% itemtype.description %]</option>
261
                    [% ELSE %]
262
                        <option value="[% itemtype.itemtype %]">[% itemtype.description %]</option>
263
                    [% END %]
264
                [% END %]
265
                </select>
266
            </li>
267
            [% END %]
268
            [% END %]
252
        </ol>
269
        </ol>
253
    </fieldset>
270
    </fieldset>
254
    [% IF ( items ) %]
271
    [% IF ( items ) %]
255
- 

Return to bug 6066