mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
73 lines
2.6 KiB
Python
73 lines
2.6 KiB
Python
# Copyright 2012-2017 Camptocamp SA
|
|
# Copyright 2017 Okia SPRL (https://okia.be)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import _, api, fields, models
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class CreditControlMarker(models.TransientModel):
|
|
""" Change the state of lines in mass """
|
|
|
|
_name = 'credit.control.marker'
|
|
_description = 'Mass marker'
|
|
|
|
@api.model
|
|
def _default_lines(self):
|
|
context = self.env.context
|
|
if not (context.get('active_model') == 'credit.control.line' and
|
|
context.get('active_ids')):
|
|
return False
|
|
line_obj = self.env['credit.control.line']
|
|
lines = line_obj.browse(context['active_ids'])
|
|
return self._filter_lines(lines)
|
|
|
|
name = fields.Selection([('ignored', 'Ignored'),
|
|
('to_be_sent', 'Ready To Send'),
|
|
('sent', 'Done')],
|
|
string='Mark as',
|
|
default='to_be_sent',
|
|
required=True)
|
|
line_ids = fields.Many2many('credit.control.line',
|
|
string='Credit Control Lines',
|
|
default=lambda self: self._default_lines(),
|
|
domain="[('state', '!=', 'sent')]")
|
|
|
|
@api.model
|
|
@api.returns('credit.control.line')
|
|
def _filter_lines(self, lines):
|
|
""" get line to be marked filter done lines """
|
|
line_obj = self.env['credit.control.line']
|
|
domain = [('state', '!=', 'sent'), ('id', 'in', lines.ids)]
|
|
return line_obj.search(domain)
|
|
|
|
@api.model
|
|
@api.returns('credit.control.line')
|
|
def _mark_lines(self, filtered_lines, state):
|
|
""" write hook """
|
|
assert state
|
|
filtered_lines.write({'state': state})
|
|
return filtered_lines
|
|
|
|
@api.multi
|
|
def mark_lines(self):
|
|
""" Write state of selected credit lines to the one in entry
|
|
done credit line will be ignored """
|
|
self.ensure_one()
|
|
|
|
if not self.line_ids:
|
|
raise UserError(_('No credit control lines selected.'))
|
|
|
|
filtered_lines = self._filter_lines(self.line_ids)
|
|
if not filtered_lines:
|
|
raise UserError(_('No lines will be changed. '
|
|
'All the selected lines are already done.'))
|
|
|
|
self._mark_lines(filtered_lines, self.name)
|
|
|
|
return {'domain': str([('id', 'in', filtered_lines.ids)]),
|
|
'view_type': 'form',
|
|
'view_mode': 'tree,form',
|
|
'view_id': False,
|
|
'res_model': 'credit.control.line',
|
|
'type': 'ir.actions.act_window'}
|