# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import fields, models, api, _ class ResCompany(models.Model): _inherit = 'res.company' l10n_fr_closing_sequence_id = fields.Many2one('ir.sequence', 'Sequence to use to build sale closings', readonly=True) siret = fields.Char(related='partner_id.siret', string='SIRET', size=14, readonly=False) ape = fields.Char(string='APE') is_france_country = fields.Boolean( compute="_compute_is_france_country", string="Is Part of DOM-TOM", ) @api.depends('country_code') def _compute_is_france_country(self): for company in self: company.is_france_country = company.country_code in self._get_france_country_codes() @api.model def _get_france_country_codes(self): """Returns every country code that can be used to represent France """ return ['FR', 'MF', 'MQ', 'NC', 'PF', 'RE', 'GF', 'GP', 'TF', 'BL', 'PM', 'YT', 'WF'] # These codes correspond to France and DOM-TOM. @api.model def _get_unalterable_country(self): return self._get_france_country_codes() def _is_accounting_unalterable(self): if not self.vat and not self.country_id: return False return self.country_id and self.country_id.code in self._get_unalterable_country() @api.model_create_multi def create(self, vals_list): companies = super().create(vals_list) for company in companies: #when creating a new french company, create the securisation sequence as well if company._is_accounting_unalterable(): sequence_fields = ['l10n_fr_closing_sequence_id'] company._create_secure_sequence(sequence_fields) return companies def write(self, vals): res = super(ResCompany, self).write(vals) #if country changed to fr, create the securisation sequence for company in self: if company._is_accounting_unalterable(): sequence_fields = ['l10n_fr_closing_sequence_id'] company._create_secure_sequence(sequence_fields) return res def _create_secure_sequence(self, sequence_fields): """This function creates a no_gap sequence on each company in self that will ensure a unique number is given to all posted account.move in such a way that we can always find the previous move of a journal entry on a specific journal. """ for company in self: vals_write = {} for seq_field in sequence_fields: if not company[seq_field]: vals = { 'name': _('Securisation of %s - %s') % (seq_field, company.name), 'code': 'FRSECURE%s-%s' % (company.id, seq_field), 'implementation': 'no_gap', 'prefix': '', 'suffix': '', 'padding': 0, 'company_id': company.id} seq = self.env['ir.sequence'].create(vals) vals_write[seq_field] = seq.id if vals_write: company.write(vals_write)