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 (+4 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');
329
327
330
328
# fill template
331
# fill template
329
$template->param(
332
$template->param(
Lines 368-373 $template->param( Link Here
368
    budget_loop      => $budget_loop,
371
    budget_loop      => $budget_loop,
369
    isbn             => $data->{'isbn'},
372
    isbn             => $data->{'isbn'},
370
    seriestitle      => $data->{'seriestitle'},
373
    seriestitle      => $data->{'seriestitle'},
374
    itemtypeloop  => \@itemtypes,
371
    quantity         => $data->{'quantity'},
375
    quantity         => $data->{'quantity'},
372
    quantityrec      => $data->{'quantity'},
376
    quantityrec      => $data->{'quantity'},
373
    rrp              => $data->{'rrp'},
377
    rrp              => $data->{'rrp'},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tmpl (-1 / +18 lines)
Lines 247-252 $(document).ready(function() Link Here
247
                <input type="text" size="50" name="series" id="series" value="<!-- TMPL_VAR NAME="seriestitle" -->" />
247
                <input type="text" size="50" name="series" id="series" value="<!-- TMPL_VAR NAME="seriestitle" -->" />
248
            <!-- /TMPL_IF -->
248
            <!-- /TMPL_IF -->
249
        </li>
249
        </li>
250
        </li>
251
            <!-- TMPL_UNLESS name="biblionumber" -->
252
            <!-- TMPL_IF name="itemtypeloop" -->
253
            <li>
254
                <span class="label">Item type:</span>
255
                <select name="itemtype" style="width:12em;">
256
                <!-- TMPL_LOOP NAME="itemtypeloop" -->
257
                    <!-- TMPL_IF Name="selected"-->
258
                    <option value="<!-- TMPL_VAR NAME="itemtype" -->" selected="selected"><!-- TMPL_VAR NAME="description" --></option>
259
                    <!--TMPL_ELSE --> <option value="<!-- TMPL_VAR NAME="itemtype" -->"><!-- TMPL_VAR NAME="description" --></option>
260
                    <!-- /TMPL_IF -->
261
                <!-- /TMPL_LOOP -->
262
                </select>
263
            </li>
264
            <!-- /TMPL_IF -->
265
            <!-- /TMPL_UNLESS -->
266
267
250
        </ol>
268
        </ol>
251
    </fieldset>
269
    </fieldset>
252
    <!-- TMPL_IF name="items" -->
270
    <!-- TMPL_IF name="items" -->
253
- 

Return to bug 6066