mirror of
https://gitlab.com/flectra-community/l10n-switzerland-flectra.git
synced 2024-11-16 19:12:04 +00:00
14a109dc87
[ADD] l10n_ch_zip [ADD] l10n_ch_bank_statement_import_postfinance
35 lines
1.4 KiB
Python
35 lines
1.4 KiB
Python
# Copyright 2018 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
|
|
|
|
|
from flectra.models import _
|
|
from flectra.addons.web.controllers import main as report
|
|
from flectra.http import content_disposition, request, route
|
|
|
|
|
|
class ReportController(report.ReportController):
|
|
@route()
|
|
def report_routes(self, reportname, docids=None, converter=None, **data):
|
|
if converter == "reportlab-pdf":
|
|
report_slip = request.env.ref(
|
|
'l10n_ch_payment_slip.one_slip_per_page_from_invoice')
|
|
filename = ''
|
|
invoice_id = []
|
|
if docids:
|
|
invoice_id = [int(i) for i in docids.split(',')]
|
|
filename = ''.join([
|
|
_('ISR'),
|
|
'_multiple_invoices' if len(invoice_id) > 1
|
|
else '{0:05d}'.format(invoice_id[0]),
|
|
'.pdf'
|
|
])
|
|
data, format_report = report_slip.render(invoice_id)
|
|
pdfhttpheaders = [
|
|
('Content-Type', 'application/pdf'),
|
|
('Content-Disposition', content_disposition(filename)),
|
|
('Content-Length', len(data)),
|
|
]
|
|
return request.make_response(data, headers=pdfhttpheaders)
|
|
return super(ReportController, self).report_routes(
|
|
reportname, docids, converter, **data)
|