diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/l10n_cl/__manifest__.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/l10n_cl/__manifest__.py')
| -rw-r--r-- | addons/l10n_cl/__manifest__.py | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/addons/l10n_cl/__manifest__.py b/addons/l10n_cl/__manifest__.py new file mode 100644 index 00000000..837e426a --- /dev/null +++ b/addons/l10n_cl/__manifest__.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +# Copyright (c) 2019 - Blanco Martín & Asociados. https://www.bmya.cl +{ + 'name': 'Chile - Accounting', + 'version': "3.0", + 'description': """ +Chilean accounting chart and tax localization. +Plan contable chileno e impuestos de acuerdo a disposiciones vigentes + """, + 'author': 'Blanco Martín & Asociados', + 'website': 'https://www.odoo.com/documentation/14.0/applications/finance/accounting/fiscal_localizations/localizations/chile.html', + 'category': 'Accounting/Localizations/Account Charts', + 'depends': [ + 'contacts', + 'base_address_city', + 'base_vat', + 'l10n_latam_base', + 'l10n_latam_invoice_document', + 'uom', + ], + 'data': [ + 'views/account_move_view.xml', + 'views/account_tax_view.xml', + 'views/ir_sequence_view.xml', + 'views/res_bank_view.xml', + 'views/res_country_view.xml', + 'views/report_invoice.xml', + 'views/res_partner.xml', + 'views/res_config_settings_view.xml', + 'data/l10n_cl_chart_data.xml', + 'data/account_tax_report_data.xml', + 'data/account_tax_group_data.xml', + 'data/account_tax_tags_data.xml', + 'data/account_tax_data.xml', + 'data/l10n_latam_identification_type_data.xml', + 'data/l10n_latam.document.type.csv', + 'data/menuitem_data.xml', + 'data/product_data.xml', + 'data/uom_data.xml', + 'data/res.currency.csv', + 'data/res_currency_data.xml', + 'data/res.bank.csv', + 'data/res.country.csv', + 'data/res_partner.xml', + 'data/account_fiscal_template.xml', + 'data/account_chart_template_data.xml', + ], + 'demo': [ + 'demo/demo_company.xml', + 'demo/partner_demo.xml', + ], + 'license': 'LGPL-3', +} |
