mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-27 06:41:59 +02:00
Initial commit: L10N_Europe packages
This commit is contained in:
commit
9803722600
2377 changed files with 380711 additions and 0 deletions
6
odoo-bringout-oca-ocb-l10n_fr/l10n_fr/models/__init__.py
Normal file
6
odoo-bringout-oca-ocb-l10n_fr/l10n_fr/models/__init__.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import l10n_fr
|
||||
from . import account_chart_template
|
||||
from . import res_company
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class AccountChartTemplate(models.Model):
|
||||
_inherit = 'account.chart.template'
|
||||
|
||||
@api.model
|
||||
def _prepare_all_journals(self, acc_template_ref, company, journals_dict=None):
|
||||
journal_data = super(AccountChartTemplate, self)._prepare_all_journals(
|
||||
acc_template_ref, company, journals_dict)
|
||||
if company.account_fiscal_country_id.code != 'FR':
|
||||
return journal_data
|
||||
|
||||
for journal in journal_data:
|
||||
if journal['type'] in ('sale', 'purchase'):
|
||||
journal.update({'refund_sequence': True})
|
||||
return journal_data
|
||||
9
odoo-bringout-oca-ocb-l10n_fr/l10n_fr/models/l10n_fr.py
Normal file
9
odoo-bringout-oca-ocb-l10n_fr/l10n_fr/models/l10n_fr.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo import fields, models, api, _
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = 'res.partner'
|
||||
|
||||
siret = fields.Char(string='SIRET', size=14)
|
||||
77
odoo-bringout-oca-ocb-l10n_fr/l10n_fr/models/res_company.py
Normal file
77
odoo-bringout-oca-ocb-l10n_fr/l10n_fr/models/res_company.py
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
# -*- 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue