mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-26 21:22:06 +02:00
Initial commit: L10N_Europe packages
This commit is contained in:
commit
9803722600
2377 changed files with 380711 additions and 0 deletions
|
|
@ -0,0 +1,49 @@
|
|||
# coding: utf-8
|
||||
# Copyright 2016 iterativo (https://www.iterativo.do) <info@iterativo.do>
|
||||
|
||||
from odoo import models, api, _
|
||||
|
||||
|
||||
class AccountChartTemplate(models.Model):
|
||||
_inherit = "account.chart.template"
|
||||
|
||||
@api.model
|
||||
def _get_default_bank_journals_data(self):
|
||||
if self.env.company.account_fiscal_country_id.code == 'DO':
|
||||
return [
|
||||
{'acc_name': _('Cash'), 'account_type': 'cash'},
|
||||
{'acc_name': _('Caja Chica'), 'account_type': 'cash'},
|
||||
{'acc_name': _('Cheques Clientes'), 'account_type': 'cash'},
|
||||
{'acc_name': _('Bank'), 'account_type': 'bank'}
|
||||
]
|
||||
return super(AccountChartTemplate, self)._get_default_bank_journals_data()
|
||||
|
||||
def _prepare_all_journals(self, acc_template_ref, company, journals_dict=None):
|
||||
"""Create fiscal journals for buys"""
|
||||
res = super(AccountChartTemplate, self)._prepare_all_journals(
|
||||
acc_template_ref, company, journals_dict=journals_dict)
|
||||
if not self == self.env.ref('l10n_do.do_chart_template'):
|
||||
return res
|
||||
for journal in res:
|
||||
if journal['code'] == 'FACT':
|
||||
journal['name'] = _('Compras Fiscales')
|
||||
res += [{
|
||||
'type': 'purchase',
|
||||
'name': _('Gastos No Deducibles'),
|
||||
'code': 'GASTO',
|
||||
'company_id': company.id,
|
||||
'show_on_dashboard': True
|
||||
}, {
|
||||
'type': 'purchase',
|
||||
'name': _('Migración CxP'),
|
||||
'code': 'CXP',
|
||||
'company_id': company.id,
|
||||
'show_on_dashboard': True
|
||||
}, {
|
||||
'type': 'sale',
|
||||
'name': _('Migración CxC'),
|
||||
'code': 'CXC',
|
||||
'company_id': company.id,
|
||||
'show_on_dashboard': True
|
||||
}]
|
||||
return res
|
||||
Loading…
Add table
Add a link
Reference in a new issue