MT 0002070: Batch item deletion
This commit is contained in:
parent
a52f311ab0
commit
5bd08a1d7f
2 changed files with 3 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -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="";
|
||||
|
|
Loading…
Reference in a new issue