You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.3 KiB
58 lines
2.3 KiB
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Author: Vincent Renaville,Damien Crier
|
|
# Copyright 2014-2015 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, fields, api, _
|
|
|
|
|
|
class PartnerPrintActivity(models.TransientModel):
|
|
_name = 'partner.print.activity'
|
|
_description = 'Partner printing activity'
|
|
|
|
@api.model
|
|
def _get_partner_ids(self):
|
|
context = self.env.context
|
|
if context.get('active_model') != 'res.partner':
|
|
return False
|
|
return context.get('active_ids', False)
|
|
|
|
partner_information = fields.Boolean(string='Print partner address',
|
|
default=True)
|
|
partner_address_information = fields.Boolean(
|
|
string='Print partner contacts',
|
|
default=True)
|
|
|
|
partner_ids = fields.Many2many(comodel_name='res.partner',
|
|
string='Partner ids',
|
|
default=_get_partner_ids)
|
|
user_id = fields.Many2one(comodel_name='res.users', string='User',
|
|
required=False, default=1)
|
|
|
|
@api.multi
|
|
def print_report(self):
|
|
self.ensure_one()
|
|
if not self.partner_ids:
|
|
raise api.Warning(_('No partner selected'))
|
|
report_name = 'partner_activity_report_base.'\
|
|
'report_partner_activity_qweb'
|
|
report_obj = self.env['report'].with_context(
|
|
active_ids=self.id
|
|
)
|
|
return report_obj.get_action(self, report_name)
|