summaryrefslogtreecommitdiff
path: root/httemplate/misc/download-bill_batch.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/misc/download-bill_batch.html')
-rw-r--r--httemplate/misc/download-bill_batch.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/httemplate/misc/download-bill_batch.html b/httemplate/misc/download-bill_batch.html
index 00d9236..9b5f1ef 100644
--- a/httemplate/misc/download-bill_batch.html
+++ b/httemplate/misc/download-bill_batch.html
@@ -12,6 +12,12 @@ $m->clear_buffer;
$r->content_type('application/pdf');
$r->headers_out->add( 'Content-Disposition' =>
'attachment;filename="invoice_batch_'.$batchnum.'.pdf"');
+my $cookie = CGI::Cookie->new(
+ -name => "bill_batch_download",
+ -value => $batchnum,
+ -expires => '+1d',
+);
+$r->headers_out->add( 'Set-Cookie' => $cookie->as_string );
$m->print($content);
$batch->pdf('');