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_ve/__manifest__.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/l10n_ve/__manifest__.py')
| -rw-r--r-- | addons/l10n_ve/__manifest__.py | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/addons/l10n_ve/__manifest__.py b/addons/l10n_ve/__manifest__.py new file mode 100644 index 00000000..4a40ef46 --- /dev/null +++ b/addons/l10n_ve/__manifest__.py @@ -0,0 +1,57 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +# Module programed and financed by: +# Vauxoo, C.A. (<http://vauxoo.com>). +# Our Community team mantain this module: +# https://launchpad.net/~openerp-venezuela + +{ + 'name' : 'Venezuela - Accounting', + 'author': ['Odoo S.A.', 'Vauxoo'], + 'category': 'Accounting/Localizations/Account Charts', + 'description': +""" +Chart of Account for Venezuela. +=============================== + +Venezuela doesn't have any chart of account by law, but the default +proposed in Odoo should comply with some Accepted best practices in Venezuela, +this plan comply with this practices. + +This module has been tested as base for more of 1000 companies, because +it is based in a mixtures of most common software in the Venezuelan +market what will allow for sure to accountants feel them first steps with +Odoo more comfortable. + +This module doesn't pretend be the total localization for Venezuela, +but it will help you to start really quickly with Odoo in this country. + +This module give you. +--------------------- + +- Basic taxes for Venezuela. +- Have basic data to run tests with community localization. +- Start a company from 0 if your needs are basic from an accounting PoV. + +We recomend use of account_anglo_saxon if you want valued your +stocks as Venezuela does with out invoices. + +If you install this module, and select Custom chart a basic chart will be proposed, +but you will need set manually account defaults for taxes. +""", + 'depends': ['account', + ], + 'data': [ + 'data/l10n_ve_chart_data.xml', + 'data/account.account.template.csv', + 'data/l10n_ve_chart_post_data.xml', + 'data/account_data.xml', + 'data/account_tax_data.xml', + 'data/account_chart_template_data.xml' + ], + 'demo': [ + 'demo/demo_company.xml', + ], + 'license': 'LGPL-3', +} |
