mirror of
https://github.com/bringout/oca-ocb-l10n_americas.git
synced 2026-04-27 07:32:02 +02:00
19.0 vanilla
This commit is contained in:
parent
89c6e82fe7
commit
1b82c20a58
572 changed files with 43570 additions and 53303 deletions
71
odoo-bringout-oca-ocb-l10n_ec/l10n_ec/models/template_ec.py
Normal file
71
odoo-bringout-oca-ocb-l10n_ec/l10n_ec/models/template_ec.py
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo import models
|
||||
from odoo.addons.account.models.chart_template import template
|
||||
|
||||
|
||||
class AccountChartTemplate(models.AbstractModel):
|
||||
_inherit = 'account.chart.template'
|
||||
|
||||
@template('ec')
|
||||
def _get_ec_template_data(self):
|
||||
return {
|
||||
'property_account_receivable_id': 'ec1102050101',
|
||||
'property_account_payable_id': 'ec210301',
|
||||
'journal_account_expense_categ_id': 'ec52022816',
|
||||
'property_stock_valuation_account_id': 'ec110306',
|
||||
'loss_stock_valuation_account': 'ec510112',
|
||||
'production_stock_valuation_account': 'ec110302',
|
||||
'code_digits': '4',
|
||||
}
|
||||
|
||||
@template('ec', 'res.company')
|
||||
def _get_ec_res_company(self):
|
||||
return {
|
||||
self.env.company.id: {
|
||||
'account_fiscal_country_id': 'base.ec',
|
||||
'bank_account_code_prefix': '11010201',
|
||||
'cash_account_code_prefix': '1101010',
|
||||
'transfer_account_code_prefix': '1101030',
|
||||
'account_default_pos_receivable_account_id': 'ec1102050103',
|
||||
'income_currency_exchange_account_id': 'ec430501',
|
||||
'expense_currency_exchange_account_id': 'ec520304',
|
||||
'account_journal_early_pay_discount_loss_account_id': 'ec_early_pay_discount_loss',
|
||||
'account_journal_early_pay_discount_gain_account_id': 'ec_early_pay_discount_gain',
|
||||
'default_cash_difference_income_account_id': 'ec_income_cash_difference',
|
||||
'default_cash_difference_expense_account_id': 'ec_expense_cash_difference',
|
||||
'account_sale_tax_id': 'tax_vat_15_411_goods',
|
||||
'account_purchase_tax_id': 'tax_vat_15_510_sup_01',
|
||||
'expense_account_id': 'ec110307',
|
||||
'income_account_id': 'ec410101',
|
||||
'tax_calculation_rounding_method': 'round_per_line',
|
||||
'account_stock_journal_id': 'inventory_valuation',
|
||||
'account_stock_valuation_id': 'ec110306',
|
||||
},
|
||||
}
|
||||
|
||||
@template('ec', 'account.journal')
|
||||
def _get_ec_account_journal(self):
|
||||
""" In case of an Ecuador, we modified the sales journal"""
|
||||
return {
|
||||
'sale': {
|
||||
'name': "001-001 Facturas de cliente",
|
||||
'l10n_ec_entity': '001',
|
||||
'l10n_ec_emission': '001',
|
||||
'l10n_ec_emission_address_id': self.env.company.partner_id.id,
|
||||
},
|
||||
}
|
||||
|
||||
def _post_load_data(self, template_code, company, template_data):
|
||||
super()._post_load_data(template_code, company, template_data)
|
||||
# Setup default Income/Expense Accounts on Sale/Purchase journals
|
||||
if (purchase_journal := self.ref("purchase", raise_if_not_found=False)) and (expense_account_ref := template_data.get('journal_account_expense_categ_id')):
|
||||
purchase_journal.default_account_id = self.ref(expense_account_ref, raise_if_not_found=False)
|
||||
|
||||
@template('ec', 'account.account')
|
||||
def _get_ec_account_account(self):
|
||||
return {
|
||||
'ec110306': {
|
||||
'account_stock_expense_id': 'ec510106',
|
||||
'account_stock_variation_id': 'ec110310',
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue