2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, fields, models, _
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class AccountCommonReport(models.TransientModel):
|
|
|
|
_name = "account.common.report"
|
|
|
|
_description = "Account Common Report"
|
2018-01-17 11:23:19 +01:00
|
|
|
_inherit = ['ir.branch.company.mixin']
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
company_id = fields.Many2one('res.company', string='Company', readonly=True, default=lambda self: self.env.user.company_id)
|
|
|
|
journal_ids = fields.Many2many('account.journal', string='Journals', required=True, default=lambda self: self.env['account.journal'].search([]))
|
|
|
|
date_from = fields.Date(string='Start Date')
|
|
|
|
date_to = fields.Date(string='End Date')
|
|
|
|
target_move = fields.Selection([('posted', 'All Posted Entries'),
|
|
|
|
('all', 'All Entries'),
|
|
|
|
], string='Target Moves', required=True, default='posted')
|
|
|
|
|
|
|
|
def _build_contexts(self, data):
|
|
|
|
result = {}
|
|
|
|
result['journal_ids'] = 'journal_ids' in data['form'] and data['form']['journal_ids'] or False
|
|
|
|
result['state'] = 'target_move' in data['form'] and data['form']['target_move'] or ''
|
|
|
|
result['date_from'] = data['form']['date_from'] or False
|
|
|
|
result['date_to'] = data['form']['date_to'] or False
|
2018-01-17 11:23:19 +01:00
|
|
|
result['branch_id'] = data['form']['branch_id'] or False
|
2018-01-16 06:58:15 +01:00
|
|
|
result['strict_range'] = True if result['date_from'] else False
|
|
|
|
return result
|
|
|
|
|
|
|
|
def _print_report(self, data):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
@api.multi
|
|
|
|
def check_report(self):
|
|
|
|
self.ensure_one()
|
|
|
|
data = {}
|
|
|
|
data['ids'] = self.env.context.get('active_ids', [])
|
|
|
|
data['model'] = self.env.context.get('active_model', 'ir.ui.menu')
|
2018-01-17 11:23:19 +01:00
|
|
|
data['form'] = self.read(['date_from', 'date_to', 'journal_ids', 'target_move', 'branch_id'])[0]
|
2018-01-16 06:58:15 +01:00
|
|
|
used_context = self._build_contexts(data)
|
|
|
|
data['form']['used_context'] = dict(used_context, lang=self.env.context.get('lang') or 'en_US')
|
|
|
|
return self._print_report(data)
|