MT 0002070: Batch item deletion

This commit is contained in:
Matthias Meusburger 2009-10-15 12:12:45 +02:00 committed by Henri-Damien LAURENT
parent a52f311ab0
commit 5bd08a1d7f
2 changed files with 3 additions and 1 deletions

View file

@ -111,11 +111,11 @@
<!-- /TMPL_LOOP -->
</ol>
</fieldset>
<!-- /TMPL_IF -->
<fieldset class="action">
<input type="submit" name="submit" value="Go" />
</fieldset>
</div>
<!-- /TMPL_IF -->
<!-- TMPL_ELSE -->
<h3>No results!</h3>
<a href="javascript:window.history.back()">Go back</a>

View file

@ -56,6 +56,7 @@ my $dbh = C4::Context->dbh;
my $error = $input->param('error');
my @itemnumbers = $input->param('itemnumber');
my $op = $input->param('op');
my $del = $input->param('del');
my ($template, $loggedinuser, $cookie)
= get_template_and_user({template_name => "tools/batchMod.tmpl",
@ -68,6 +69,7 @@ my ($template, $loggedinuser, $cookie)
my $today_iso = C4::Dates->today('iso');
$template->param(today_iso => $today_iso);
$template->param(del => $del);
my $itemrecord;
my $nextop="";