mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
83 lines
2.6 KiB
Python
83 lines
2.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
# © 2012-2016 Camptocamp SA (Guewen Baconnier, Damien Crier, Matthieu Dietrich)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from openerp import models, api, fields, _
|
|
|
|
|
|
class MassReconcileHistory(models.Model):
|
|
""" Store an history of the runs per profile
|
|
Each history stores the list of reconciliations done"""
|
|
|
|
_name = 'mass.reconcile.history'
|
|
_rec_name = 'mass_reconcile_id'
|
|
_order = 'date DESC'
|
|
|
|
@api.multi
|
|
@api.depends('reconcile_ids')
|
|
def _get_reconcile_line_ids(self):
|
|
for rec in self:
|
|
rec.reconcile_line_ids = rec.mapped(
|
|
'reconcile_ids.reconciled_line_ids'
|
|
).ids
|
|
|
|
mass_reconcile_id = fields.Many2one(
|
|
'account.mass.reconcile',
|
|
string='Reconcile Profile',
|
|
readonly=True
|
|
)
|
|
date = fields.Datetime(string='Run date', readonly=True, required=True)
|
|
reconcile_ids = fields.Many2many(
|
|
comodel_name='account.full.reconcile',
|
|
relation='account_full_reconcile_history_rel',
|
|
string='Full Reconciliations',
|
|
readonly=True
|
|
)
|
|
reconcile_line_ids = fields.Many2many(
|
|
comodel_name='account.move.line',
|
|
relation='account_move_line_history_rel',
|
|
string='Reconciled Items',
|
|
compute='_get_reconcile_line_ids'
|
|
)
|
|
company_id = fields.Many2one(
|
|
'res.company',
|
|
string='Company',
|
|
store=True,
|
|
readonly=True,
|
|
related='mass_reconcile_id.company_id'
|
|
)
|
|
|
|
@api.multi
|
|
def _open_move_lines(self):
|
|
""" For an history record, open the view of move line with
|
|
the reconciled move lines
|
|
|
|
:param history_id: id of the history
|
|
:return: action to open the move lines
|
|
"""
|
|
move_line_ids = self.mapped('reconcile_ids.reconciled_line_ids').ids
|
|
name = _('Reconciliations')
|
|
return {
|
|
'name': name,
|
|
'view_mode': 'tree,form',
|
|
'view_id': False,
|
|
'view_type': 'form',
|
|
'res_model': 'account.move.line',
|
|
'type': 'ir.actions.act_window',
|
|
'nodestroy': True,
|
|
'target': 'current',
|
|
'domain': unicode([('id', 'in', move_line_ids)]),
|
|
}
|
|
|
|
@api.multi
|
|
def open_reconcile(self):
|
|
""" For an history record, open the view of move line
|
|
with the reconciled move lines
|
|
|
|
:param history_ids: id of the record as int or long
|
|
Accept a list with 1 id too to be
|
|
used from the client.
|
|
"""
|
|
self.ensure_one()
|
|
return self._open_move_lines()
|