Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions addons/base_vat/i18n/es_EC.po
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ msgid ""
"The VAT number [%s] for partner [%s] does not seem to be valid. \n"
"Note: the expected format is %s"
msgstr ""
"El número de RUC/Céd [%s] para la empresa [%s] parece no ser valido. \n"
"Nota: el formato esperado es %s"

#. module: base_vat
#: code:addons/base_vat/models/res_partner.py:133
Expand Down
2 changes: 1 addition & 1 deletion addons/base_vat/models/res_partner.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'de': 'DE123456788',
'dk': 'DK12345674',
'do': 'DO1-01-85004-3 or 101850043',
'ec': 'EC1792060346-001',
'ec': '1792366836001 or 0103647616 or 9999999999999', #Ecuador by Andres Calle @ Trescloud
'ee': 'EE123456780',
'el': 'EL12345670',
'es': 'ESA12345674',
Expand Down
2 changes: 1 addition & 1 deletion addons/l10n_ec/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

# Copyright (C) 2010-2012 Cristian Salamea Gnuthink Software Labs Cia. Ltda
from . import models
92 changes: 68 additions & 24 deletions addons/l10n_ec/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,35 +1,79 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Ecuadorian Accounting by Trescloud',
'version': '3.5', #pendiente mover a 3.6 con el impuesto 351
'description': '''
Functional
----------

# Copyright (C) 2010-2012 Cristian Salamea Gnuthink Software Labs Cia. Ltda
This module adds accounting features for Ecuadorian localization, which
represent the minimun requirements to operate a business in Ecuador in compliance
with local regulation bodies such as the ecuadorian tax authority -SRI- and the
Superintendency of Companies -Super Intendencia de Compañías-

{
'name': 'Ecuador - Accounting',
'version': '1.1',
'category': 'Accounting/Localizations/Account Charts',
'description': """
This is the base module to manage the accounting chart for Ecuador in Odoo.
==============================================================================
Follow the next configuration steps:
1. Go to your company and configure your country as Ecuador
2. Install the invoicing or accounting module, everything will be handled automatically

Highlights:
* Ecuadorian chart of accounts will be automatically installed, based on example provided by Super Intendencia de Compañías
* List of taxes (including withholds) will also be installed, you can switch off the ones your company doesn't use
* Fiscal position, document types, list of local banks, list of local states, etc, will also be installed

Accounting chart and localization for Ecuador.
""",
'author': 'Gnuthink Co.Ltd.',
Technical
---------
Master Data:
* Chart of Accounts, based on recomendation by Super Cías
* Ecuadorian Taxes, Tax Tags, and Tax Groups
* Ecuadorian Fiscal Positions
* Document types (there are about 41 purchase documents types in Ecuador)
* Identification types
* Ecuador states with its codes
* Ecuador banks
* Partners: Consumidor Final, SRI, IESS, and also basic VAT validation

Authors:
Ing. Andres Calle <andres.calle@trescloud.com>
Ing. José Miguel Rivero <jose.rivero@trescloud.com>
''',
'author': 'TRESCLOUD',
'category': 'Localization',
'maintainer': 'TRESCLOUD CIA. LTDA.',
'website': 'http://www.trescloud.com',
'license': 'OEEL-1',
'depends': [
'account',
'base_iban',
'l10n_latam_base',
'l10n_latam_invoice_document',
],
'l10n_latam_base',
],
'data': [
'data/l10n_ec_chart_data.xml',
'data/account.account.template.csv',
'data/l10n_ec_chart_post_data.xml',
'data/account_data.xml',
'data/account_tax_data.xml',
#Chart of Accounts
'data/account_chart_template_data.xml',
'data/res.country.state.csv',
],
'demo': [
'demo/demo_company.xml',
'data/account_group_template_data.xml',
'data/account.account.template.csv',
'data/account_chart_template_setup_accounts.xml',
#Taxes
'data/account_tax_group_data.xml',
'data/account_tax_tag_data.xml',
'data/account_tax_template_vat_data.xml',
'data/account_tax_template_withhold_profit_data.xml',
'data/account_tax_template_withhold_vat_data.xml',
'data/account_fiscal_position_template.xml',
'data/account_chart_template_configure_data.xml',
'data/res_country.xml', #TODO move into Odoo core
#Partners data
'data/res_country_state_data.xml',
'data/res_bank_data.xml',
'data/l10n_latam_identification_type_data.xml',
'data/res_partner_data.xml',
#Other data
'data/l10n_latam_document_type_data.xml',
#Views
'views/account_tax_view.xml',
'views/l10n_latam_document_type_view.xml',
'views/res_partner_bank_views.xml',
],
'installable': True,
'auto_install': False,
'application': False,
}
Loading