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

(-)a/acqui/addorderiso2709.pl (-1 / +1 lines)
Lines 539-545 sub import_biblios_list { Link Here
539
539
540
            $cellrecord{'iteminfos'} = \@itemlist;
540
            $cellrecord{'iteminfos'} = \@itemlist;
541
        } else {
541
        } else {
542
            $item_error = 1;
542
            $cellrecord{'item_error'} = 1;
543
        }
543
        }
544
        push @list, \%cellrecord;
544
        push @list, \%cellrecord;
545
545
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt (-2 / +1 lines)
Lines 287-293 Link Here
287
                          </ol>
287
                          </ol>
288
                        </div>
288
                        </div>
289
                        <div style="float:right">
289
                        <div style="float:right">
290
                        [% IF item_error %]Item records could not be processed because the number of item fields was uneven.[% END %]
290
                        [% IF biblio.item_error %]Item records could not be processed because the number of item fields was uneven.[% END %]
291
                        [% FOREACH item IN biblio.iteminfos %]
291
                        [% FOREACH item IN biblio.iteminfos %]
292
                        <fieldset>
292
                        <fieldset>
293
                        <legend>Item Record [% item.item_id %]</legend>
293
                        <legend>Item Record [% item.item_id %]</legend>
294
- 

Return to bug 15503