mirror of
https://github.com/OCA/report-print-send.git
synced 2025-02-16 07:11:31 +02:00
78 lines
3.3 KiB
Python
78 lines
3.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Author: Guewen Baconnier
|
|
# Copyright 2014 Camptocamp SA
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
|
|
from openerp import models, exceptions, _
|
|
|
|
|
|
class Report(models.Model):
|
|
_inherit = 'report'
|
|
|
|
def print_document(self, cr, uid, ids, report_name, html=None,
|
|
data=None, context=None):
|
|
""" Print a document, do not return the document file """
|
|
if context is None:
|
|
context = self.pool['res.users'].context_get(cr, uid)
|
|
local_context = context.copy()
|
|
local_context['must_skip_send_to_printer'] = True
|
|
document = self.get_pdf(cr, uid, ids, report_name,
|
|
html=html, data=data, context=local_context)
|
|
report = self._get_report_from_name(cr, uid, report_name)
|
|
behaviour = report.behaviour()[report.id]
|
|
printer = behaviour['printer']
|
|
if not printer:
|
|
raise exceptions.Warning(
|
|
_('No printer configured to print this report.')
|
|
)
|
|
return printer.print_document(report, document, report.report_type)
|
|
|
|
def _can_print_report(self, cr, uid, ids, behaviour, printer, document,
|
|
context=None):
|
|
"""Predicate that decide if report can be sent to printer
|
|
|
|
If you want to prevent `get_pdf` to send report you can set
|
|
the `must_skip_send_to_printer` key to True in the context
|
|
"""
|
|
if context is not None and context.get('must_skip_send_to_printer'):
|
|
return False
|
|
if behaviour['action'] == 'server' and printer and document:
|
|
return True
|
|
return False
|
|
|
|
def get_pdf(self, cr, uid, ids, report_name, html=None,
|
|
data=None, context=None):
|
|
""" Generate a PDF and returns it.
|
|
|
|
If the action configured on the report is server, it prints the
|
|
generated document as well.
|
|
"""
|
|
document = super(Report, self).get_pdf(cr, uid, ids, report_name,
|
|
html=html, data=data,
|
|
context=context)
|
|
report = self._get_report_from_name(cr, uid, report_name)
|
|
behaviour = report.behaviour()[report.id]
|
|
printer = behaviour['printer']
|
|
can_print_report = self._can_print_report(cr, uid, ids,
|
|
behaviour, printer, document,
|
|
context=context)
|
|
if can_print_report:
|
|
printer.print_document(report, document, report.report_type)
|
|
return document
|