Odoo18-Base/addons/l10n_fr/models/template_fr.py

65 lines
2.6 KiB
Python
Raw Permalink Normal View History

2025-03-10 10:52:11 +07:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, Command
from odoo.addons.account.models.chart_template import template
class AccountChartTemplate(models.AbstractModel):
_inherit = 'account.chart.template'
@template('fr')
def _get_fr_template_data(self):
return {
'code_digits': 6,
'property_account_receivable_id': 'fr_pcg_recv',
'property_account_payable_id': 'fr_pcg_pay',
'property_account_expense_categ_id': 'pcg_607_account',
'property_account_income_categ_id': 'pcg_707_account',
}
@template('fr', 'res.company')
def _get_fr_res_company(self):
return {
self.env.company.id: {
'account_fiscal_country_id': 'base.fr',
'bank_account_code_prefix': '512',
'cash_account_code_prefix': '53',
'transfer_account_code_prefix': '58',
'account_default_pos_receivable_account_id': 'fr_pcg_recv_pos',
'income_currency_exchange_account_id': 'pcg_766',
'expense_currency_exchange_account_id': 'pcg_666',
'account_journal_suspense_account_id': 'pcg_471',
'account_journal_payment_debit_account_id': 'pcg_472',
'account_journal_payment_credit_account_id': 'pcg_473',
'account_journal_early_pay_discount_loss_account_id': 'pcg_665',
'account_journal_early_pay_discount_gain_account_id': 'pcg_765',
'deferred_expense_account_id': 'pcg_486',
'deferred_revenue_account_id': 'pcg_487',
'l10n_fr_rounding_difference_loss_account_id': 'pcg_4768',
'l10n_fr_rounding_difference_profit_account_id': 'pcg_4778',
'account_sale_tax_id': 'tva_normale',
'account_purchase_tax_id': 'tva_acq_normale',
},
}
@template('fr', 'account.journal')
def _get_fr_account_journal(self):
return {
'sale': {'refund_sequence': True},
'purchase': {'refund_sequence': True},
}
@template('fr', 'account.reconcile.model')
def _get_fr_reconcile_model(self):
return {
'bank_charges_reconcile_model': {
'name': 'Bank fees',
'line_ids': [
Command.create({
'account_id': 'pcg_6278',
'amount_type': 'percentage',
'amount_string': '100',
}),
],
},
}