Lines 108-118
if ($op eq ""){
Link Here
|
108 |
import_biblios_list($template, $cgiparams->{'import_batch_id'}); |
108 |
import_biblios_list($template, $cgiparams->{'import_batch_id'}); |
109 |
if ( $basket->effective_create_items eq 'ordering' && !$basket->is_standing ) { |
109 |
if ( $basket->effective_create_items eq 'ordering' && !$basket->is_standing ) { |
110 |
# prepare empty item form |
110 |
# prepare empty item form |
111 |
my $cell = PrepareItemrecordDisplay( '', '', '', 'ACQ' ); |
111 |
my $cell = PrepareItemrecordDisplay( '', '', undef, 'ACQ' ); |
112 |
|
112 |
|
113 |
# warn "==> ".Data::Dumper::Dumper($cell); |
113 |
# warn "==> ".Data::Dumper::Dumper($cell); |
114 |
unless ($cell) { |
114 |
unless ($cell) { |
115 |
$cell = PrepareItemrecordDisplay( '', '', '', '' ); |
115 |
$cell = PrepareItemrecordDisplay( '', '', undef, '' ); |
116 |
$template->param( 'NoACQframework' => 1 ); |
116 |
$template->param( 'NoACQframework' => 1 ); |
117 |
} |
117 |
} |
118 |
my @itemloop; |
118 |
my @itemloop; |
119 |
- |
|
|