mirror of
https://github.com/bringout/oca-ocb-l10n_americas.git
synced 2026-04-27 10:32:05 +02:00
Initial commit: L10N_Americas packages
This commit is contained in:
commit
12b27ce151
714 changed files with 79328 additions and 0 deletions
25
odoo-bringout-oca-ocb-l10n_ec/l10n_ec/demo/account_demo.py
Normal file
25
odoo-bringout-oca-ocb-l10n_ec/l10n_ec/demo/account_demo.py
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import logging
|
||||
|
||||
from odoo import api, models
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class AccountChartTemplate(models.Model):
|
||||
_inherit = "account.chart.template"
|
||||
|
||||
@api.model
|
||||
def _get_demo_data_move(self):
|
||||
ref = self.env.ref
|
||||
cid = self.env.company.id
|
||||
model, data = super()._get_demo_data_move()
|
||||
if self.env.company.account_fiscal_country_id.code == 'EC':
|
||||
document_type = ref('l10n_ec.ec_dt_01', False) and ref('l10n_ec.ec_dt_01').id or False
|
||||
data[f'{cid}_demo_invoice_1']['l10n_latam_document_type_id'] = document_type
|
||||
data[f'{cid}_demo_invoice_2']['l10n_latam_document_type_id'] = document_type
|
||||
data[f'{cid}_demo_invoice_3']['l10n_latam_document_type_id'] = document_type
|
||||
data[f'{cid}_demo_invoice_followup']['l10n_latam_document_type_id'] = document_type
|
||||
data[f'{cid}_demo_invoice_5']['l10n_latam_document_number'] = '001-001-00001'
|
||||
data[f'{cid}_demo_invoice_equipment_purchase']['l10n_latam_document_number'] = '001-001-00002'
|
||||
return model, data
|
||||
Loading…
Add table
Add a link
Reference in a new issue