odoo-addon-l10n-es-aeat 17.0.2.5.1.1__py3-none-any.whl → 18.0.1.0.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/l10n_es_aeat/README.rst +6 -7
- odoo/addons/l10n_es_aeat/__manifest__.py +1 -1
- odoo/addons/l10n_es_aeat/data/aeat_tax_agency_data.xml +1 -1
- odoo/addons/l10n_es_aeat/hooks.py +3 -4
- odoo/addons/l10n_es_aeat/i18n/bg.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/ca.po +11 -79
- odoo/addons/l10n_es_aeat/i18n/cs.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/de.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/es.po +11 -78
- odoo/addons/l10n_es_aeat/i18n/eu.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/fr.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/gl.po +11 -79
- odoo/addons/l10n_es_aeat/i18n/hr.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/l10n_es_aeat.pot +19 -210
- odoo/addons/l10n_es_aeat/i18n/nl.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/pl.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/pt.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/pt_BR.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/ru.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/sl.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/sv.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/tr.po +11 -76
- odoo/addons/l10n_es_aeat/i18n/vi.po +11 -76
- odoo/addons/l10n_es_aeat/models/__init__.py +1 -0
- odoo/addons/l10n_es_aeat/models/account_journal.py +0 -12
- odoo/addons/l10n_es_aeat/models/aeat_certificate.py +3 -3
- odoo/addons/l10n_es_aeat/models/aeat_mixin.py +6 -3
- odoo/addons/l10n_es_aeat/models/ir_cron_trigger.py +46 -0
- odoo/addons/l10n_es_aeat/models/l10n_es_aeat_export_config_line.py +7 -5
- odoo/addons/l10n_es_aeat/models/l10n_es_aeat_map_tax.py +3 -3
- odoo/addons/l10n_es_aeat/models/l10n_es_aeat_report.py +15 -21
- odoo/addons/l10n_es_aeat/models/l10n_es_aeat_report_tax_mapping.py +3 -3
- odoo/addons/l10n_es_aeat/models/res_company.py +0 -6
- odoo/addons/l10n_es_aeat/models/res_partner.py +1 -1
- odoo/addons/l10n_es_aeat/readme/CONFIGURE.md +35 -35
- odoo/addons/l10n_es_aeat/readme/CONTRIBUTORS.md +0 -1
- odoo/addons/l10n_es_aeat/readme/DESCRIPTION.md +18 -18
- odoo/addons/l10n_es_aeat/readme/INSTALL.md +2 -2
- odoo/addons/l10n_es_aeat/readme/ROADMAP.md +3 -3
- odoo/addons/l10n_es_aeat/readme/USAGE.md +18 -18
- odoo/addons/l10n_es_aeat/static/description/index.html +4 -5
- odoo/addons/l10n_es_aeat/tests/test_l10n_es_aeat.py +4 -3
- odoo/addons/l10n_es_aeat/tests/test_l10n_es_aeat_certificate.py +3 -2
- odoo/addons/l10n_es_aeat/tests/test_l10n_es_aeat_export_config.py +2 -2
- odoo/addons/l10n_es_aeat/tests/test_l10n_es_aeat_map_tax.py +3 -2
- odoo/addons/l10n_es_aeat/tests/test_l10n_es_aeat_mod_base.py +8 -10
- odoo/addons/l10n_es_aeat/tests/test_l10n_es_aeat_report.py +3 -9
- odoo/addons/l10n_es_aeat/views/account_journal_view.xml +2 -15
- odoo/addons/l10n_es_aeat/views/aeat_certificate_view.xml +3 -3
- odoo/addons/l10n_es_aeat/views/aeat_export_configuration_view.xml +5 -6
- odoo/addons/l10n_es_aeat/views/aeat_map_tax_views.xml +5 -5
- odoo/addons/l10n_es_aeat/views/aeat_menuitem.xml +1 -7
- odoo/addons/l10n_es_aeat/views/aeat_report_view.xml +5 -13
- odoo/addons/l10n_es_aeat/views/aeat_tax_agency_view.xml +5 -7
- odoo/addons/l10n_es_aeat/views/aeat_tax_line_view.xml +2 -2
- odoo/addons/l10n_es_aeat/views/res_company_view.xml +0 -1
- odoo/addons/l10n_es_aeat/views/res_partner_view.xml +0 -1
- odoo/addons/l10n_es_aeat/wizard/aeat_certificate_password_view.xml +5 -5
- odoo/addons/l10n_es_aeat/wizard/compare_boe_file.py +2 -2
- odoo/addons/l10n_es_aeat/wizard/compare_boe_file_views.xml +2 -3
- odoo/addons/l10n_es_aeat/wizard/export_to_boe.py +7 -7
- odoo/addons/l10n_es_aeat/wizard/export_to_boe_wizard.xml +7 -9
- {odoo_addon_l10n_es_aeat-17.0.2.5.1.1.dist-info → odoo_addon_l10n_es_aeat-18.0.1.0.0.3.dist-info}/METADATA +10 -11
- odoo_addon_l10n_es_aeat-18.0.1.0.0.3.dist-info/RECORD +90 -0
- odoo/addons/l10n_es_aeat/migrations/17.0.2.3.1/pre-migration.py +0 -20
- odoo_addon_l10n_es_aeat-17.0.2.5.1.1.dist-info/RECORD +0 -90
- {odoo_addon_l10n_es_aeat-17.0.2.5.1.1.dist-info → odoo_addon_l10n_es_aeat-18.0.1.0.0.3.dist-info}/WHEEL +0 -0
- {odoo_addon_l10n_es_aeat-17.0.2.5.1.1.dist-info → odoo_addon_l10n_es_aeat-18.0.1.0.0.3.dist-info}/top_level.txt +0 -0
|
@@ -11,7 +11,7 @@ AEAT Base
|
|
|
11
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
12
12
|
!! changes will be overwritten. !!
|
|
13
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
14
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:23a5de6ce02f4202e3e11f39b7490615fa0bb938b614cf747b37a2c0b4a47c76
|
|
15
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
16
16
|
|
|
17
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
|
|
@@ -21,13 +21,13 @@ AEAT Base
|
|
|
21
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
22
22
|
:alt: License: AGPL-3
|
|
23
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--spain-lightgray.png?logo=github
|
|
24
|
-
:target: https://github.com/OCA/l10n-spain/tree/
|
|
24
|
+
:target: https://github.com/OCA/l10n-spain/tree/18.0/l10n_es_aeat
|
|
25
25
|
:alt: OCA/l10n-spain
|
|
26
26
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
27
|
-
:target: https://translation.odoo-community.org/projects/l10n-spain-
|
|
27
|
+
:target: https://translation.odoo-community.org/projects/l10n-spain-18-0/l10n-spain-18-0-l10n_es_aeat
|
|
28
28
|
:alt: Translate me on Weblate
|
|
29
29
|
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
30
|
-
:target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-spain&target_branch=
|
|
30
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-spain&target_branch=18.0
|
|
31
31
|
:alt: Try me on Runboat
|
|
32
32
|
|
|
33
33
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
@@ -136,7 +136,7 @@ Bug Tracker
|
|
|
136
136
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-spain/issues>`_.
|
|
137
137
|
In case of trouble, please check there if your issue has already been reported.
|
|
138
138
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
139
|
-
`feedback <https://github.com/OCA/l10n-spain/issues/new?body=module:%20l10n_es_aeat%0Aversion:%
|
|
139
|
+
`feedback <https://github.com/OCA/l10n-spain/issues/new?body=module:%20l10n_es_aeat%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
140
140
|
|
|
141
141
|
Do not contact contributors directly about support or help with technical issues.
|
|
142
142
|
|
|
@@ -172,7 +172,6 @@ Contributors
|
|
|
172
172
|
- Valentin Vinagre <valentin.vinagre@sygel.es>
|
|
173
173
|
- Manuel Regidor <manuel.regidor@sygel.es>
|
|
174
174
|
- Jairo Llopis (https://www.moduon.team)
|
|
175
|
-
- Loida Vilaplana (https://www.moduon.team)
|
|
176
175
|
|
|
177
176
|
Maintainers
|
|
178
177
|
-----------
|
|
@@ -195,6 +194,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|
|
195
194
|
|
|
196
195
|
|maintainer-pedrobaeza|
|
|
197
196
|
|
|
198
|
-
This module is part of the `OCA/l10n-spain <https://github.com/OCA/l10n-spain/tree/
|
|
197
|
+
This module is part of the `OCA/l10n-spain <https://github.com/OCA/l10n-spain/tree/18.0/l10n_es_aeat>`_ project on GitHub.
|
|
199
198
|
|
|
200
199
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
<field name="name">Hacienda Foral de Navarra</field>
|
|
19
19
|
</record>
|
|
20
20
|
<record id="aeat_tax_agency_canarias" model="aeat.tax.agency">
|
|
21
|
-
<field name="name">Agencia Tributaria Canaria
|
|
21
|
+
<field name="name">Agencia Tributaria Canaria</field>
|
|
22
22
|
</record>
|
|
23
23
|
</odoo>
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
3
3
|
import logging
|
|
4
4
|
|
|
5
|
-
from odoo import
|
|
6
|
-
from odoo.tools.sql import column_exists
|
|
5
|
+
from odoo.tools.sql import column_exists, create_column
|
|
7
6
|
|
|
8
7
|
_logger = logging.getLogger(__name__)
|
|
9
8
|
|
|
@@ -13,14 +12,14 @@ def create_column_thirdparty_invoice(cr):
|
|
|
13
12
|
cr, "account_journal", "thirdparty_invoice"
|
|
14
13
|
) and not column_exists(cr, "account_move", "thirdparty_invoice"):
|
|
15
14
|
_logger.info("Initializing column thirdparty_invoice on table account_move")
|
|
16
|
-
|
|
15
|
+
create_column(
|
|
17
16
|
cr=cr,
|
|
18
17
|
tablename="account_move",
|
|
19
18
|
columnname="thirdparty_invoice",
|
|
20
19
|
columntype="boolean",
|
|
21
20
|
comment="Third-party invoice",
|
|
22
21
|
)
|
|
23
|
-
|
|
22
|
+
create_column(
|
|
24
23
|
cr=cr,
|
|
25
24
|
tablename="account_journal",
|
|
26
25
|
columnname="thirdparty_invoice",
|
|
@@ -39,7 +39,6 @@ msgstr ""
|
|
|
39
39
|
|
|
40
40
|
#. module: l10n_es_aeat
|
|
41
41
|
#: model:ir.ui.menu,name:l10n_es_aeat.menu_l10n_es_aeat_config
|
|
42
|
-
#: model:ir.ui.menu,name:l10n_es_aeat.menu_l10n_es_aeat_submenu
|
|
43
42
|
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_company_aeat_form
|
|
44
43
|
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_l10n_es_aeat_report_search
|
|
45
44
|
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_partner_form
|
|
@@ -134,20 +133,21 @@ msgstr ""
|
|
|
134
133
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod123_report_name_uniq
|
|
135
134
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod130_report_name_uniq
|
|
136
135
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod190_report_name_uniq
|
|
137
|
-
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod216_report_name_uniq
|
|
138
|
-
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod296_report_name_uniq
|
|
139
136
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod303_report_name_uniq
|
|
140
137
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod347_report_name_uniq
|
|
141
138
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod349_report_name_uniq
|
|
142
139
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod390_report_name_uniq
|
|
143
|
-
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_mod592_report_name_uniq
|
|
144
140
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_report_name_uniq
|
|
145
141
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_aeat_report_tax_mapping_name_uniq
|
|
146
|
-
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_atc_mod415_report_name_uniq
|
|
147
142
|
#: model:ir.model.constraint,message:l10n_es_aeat.constraint_l10n_es_vat_book_name_uniq
|
|
148
143
|
msgid "AEAT report identifier must be unique"
|
|
149
144
|
msgstr ""
|
|
150
145
|
|
|
146
|
+
#. module: l10n_es_aeat
|
|
147
|
+
#: model:ir.ui.menu,name:l10n_es_aeat.menu_root_aeat
|
|
148
|
+
msgid "AEAT reports"
|
|
149
|
+
msgstr ""
|
|
150
|
+
|
|
151
151
|
#. module: l10n_es_aeat
|
|
152
152
|
#: model:ir.model.fields,field_description:l10n_es_aeat.field_aeat_mixin__aeat_state
|
|
153
153
|
msgid "AEAT send state"
|
|
@@ -179,9 +179,7 @@ msgid "AEAT tax mapping line - Tax"
|
|
|
179
179
|
msgstr ""
|
|
180
180
|
|
|
181
181
|
#. module: l10n_es_aeat
|
|
182
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__account_move__aeat_state__sent_w_errors
|
|
183
182
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__aeat_mixin__aeat_state__sent_w_errors
|
|
184
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__sii_mixin__aeat_state__sent_w_errors
|
|
185
183
|
msgid "Accepted with errors"
|
|
186
184
|
msgstr ""
|
|
187
185
|
|
|
@@ -392,16 +390,12 @@ msgstr ""
|
|
|
392
390
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__state__cancelled
|
|
393
391
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__state__cancelled
|
|
394
392
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__state__cancelled
|
|
395
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__state__cancelled
|
|
396
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__state__cancelled
|
|
397
393
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__state__cancelled
|
|
398
394
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__state__cancelled
|
|
399
395
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__state__cancelled
|
|
400
396
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__state__cancelled
|
|
401
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__state__cancelled
|
|
402
397
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__state__cancelled
|
|
403
398
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__state__cancelled
|
|
404
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__state__cancelled
|
|
405
399
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__state__cancelled
|
|
406
400
|
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_l10n_es_aeat_report_search
|
|
407
401
|
msgid "Cancelled"
|
|
@@ -486,16 +480,12 @@ msgstr ""
|
|
|
486
480
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__statement_type__c
|
|
487
481
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__statement_type__c
|
|
488
482
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__statement_type__c
|
|
489
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__statement_type__c
|
|
490
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__statement_type__c
|
|
491
483
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__statement_type__c
|
|
492
484
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__statement_type__c
|
|
493
485
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__statement_type__c
|
|
494
486
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__statement_type__c
|
|
495
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__statement_type__c
|
|
496
487
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__statement_type__c
|
|
497
488
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__statement_type__c
|
|
498
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__statement_type__c
|
|
499
489
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__statement_type__c
|
|
500
490
|
msgid "Complementary"
|
|
501
491
|
msgstr ""
|
|
@@ -615,16 +605,12 @@ msgstr ""
|
|
|
615
605
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__support_type__c
|
|
616
606
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__support_type__c
|
|
617
607
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__support_type__c
|
|
618
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__support_type__c
|
|
619
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__support_type__c
|
|
620
608
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__support_type__c
|
|
621
609
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__support_type__c
|
|
622
610
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__support_type__c
|
|
623
611
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__support_type__c
|
|
624
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__support_type__c
|
|
625
612
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__support_type__c
|
|
626
613
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__support_type__c
|
|
627
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__support_type__c
|
|
628
614
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__support_type__c
|
|
629
615
|
msgid "DVD"
|
|
630
616
|
msgstr ""
|
|
@@ -678,16 +664,12 @@ msgstr "Име за Показване"
|
|
|
678
664
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__state__done
|
|
679
665
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__state__done
|
|
680
666
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__state__done
|
|
681
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__state__done
|
|
682
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__state__done
|
|
683
667
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__state__done
|
|
684
668
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__state__done
|
|
685
669
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__state__done
|
|
686
670
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__state__done
|
|
687
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__state__done
|
|
688
671
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__state__done
|
|
689
672
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__state__done
|
|
690
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__state__done
|
|
691
673
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__state__done
|
|
692
674
|
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_l10n_es_aeat_report_search
|
|
693
675
|
msgid "Done"
|
|
@@ -700,16 +682,12 @@ msgstr ""
|
|
|
700
682
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__state__draft
|
|
701
683
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__state__draft
|
|
702
684
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__state__draft
|
|
703
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__state__draft
|
|
704
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__state__draft
|
|
705
685
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__state__draft
|
|
706
686
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__state__draft
|
|
707
687
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__state__draft
|
|
708
688
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__state__draft
|
|
709
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__state__draft
|
|
710
689
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__state__draft
|
|
711
690
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__state__draft
|
|
712
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__state__draft
|
|
713
691
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__state__draft
|
|
714
692
|
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_l10n_es_aeat_report_form
|
|
715
693
|
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_l10n_es_aeat_report_search
|
|
@@ -1075,7 +1053,6 @@ msgstr ""
|
|
|
1075
1053
|
#. module: l10n_es_aeat
|
|
1076
1054
|
#: model:ir.model.fields,field_description:l10n_es_aeat.field_l10n_es_aeat_report__representative_vat
|
|
1077
1055
|
#: model:ir.model.fields,field_description:l10n_es_aeat.field_l10n_es_aeat_report_tax_mapping__representative_vat
|
|
1078
|
-
#: model:ir.model.fields,field_description:l10n_es_aeat.field_res_company__representative_vat
|
|
1079
1056
|
msgid "L.R. VAT number"
|
|
1080
1057
|
msgstr ""
|
|
1081
1058
|
|
|
@@ -1120,12 +1097,6 @@ msgstr "Последно обновено на"
|
|
|
1120
1097
|
msgid "Left"
|
|
1121
1098
|
msgstr ""
|
|
1122
1099
|
|
|
1123
|
-
#. module: l10n_es_aeat
|
|
1124
|
-
#: model:ir.model.fields,help:l10n_es_aeat.field_res_company__representative_vat
|
|
1125
|
-
msgid ""
|
|
1126
|
-
"Legal Representative VAT number for all the AEAT reports of this company."
|
|
1127
|
-
msgstr ""
|
|
1128
|
-
|
|
1129
1100
|
#. module: l10n_es_aeat
|
|
1130
1101
|
#: model:ir.model.fields,help:l10n_es_aeat.field_l10n_es_aeat_report__representative_vat
|
|
1131
1102
|
#: model:ir.model.fields,help:l10n_es_aeat.field_l10n_es_aeat_report_tax_mapping__representative_vat
|
|
@@ -1143,11 +1114,6 @@ msgstr ""
|
|
|
1143
1114
|
msgid "Load Certificate"
|
|
1144
1115
|
msgstr ""
|
|
1145
1116
|
|
|
1146
|
-
#. module: l10n_es_aeat
|
|
1147
|
-
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_account_journal_form
|
|
1148
|
-
msgid "Localization Settings"
|
|
1149
|
-
msgstr ""
|
|
1150
|
-
|
|
1151
1117
|
#. module: l10n_es_aeat
|
|
1152
1118
|
#: model:ir.model.fields,field_description:l10n_es_aeat.field_l10n_es_aeat_map_tax_line__map_parent_id
|
|
1153
1119
|
msgid "Map Parent"
|
|
@@ -1264,24 +1230,18 @@ msgstr ""
|
|
|
1264
1230
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__statement_type__n
|
|
1265
1231
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__statement_type__n
|
|
1266
1232
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__statement_type__n
|
|
1267
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__statement_type__n
|
|
1268
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__statement_type__n
|
|
1269
1233
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__statement_type__n
|
|
1270
1234
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__statement_type__n
|
|
1271
1235
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__statement_type__n
|
|
1272
1236
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__statement_type__n
|
|
1273
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__statement_type__n
|
|
1274
1237
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__statement_type__n
|
|
1275
1238
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__statement_type__n
|
|
1276
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__statement_type__n
|
|
1277
1239
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__statement_type__n
|
|
1278
1240
|
msgid "Normal"
|
|
1279
1241
|
msgstr ""
|
|
1280
1242
|
|
|
1281
1243
|
#. module: l10n_es_aeat
|
|
1282
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__account_move__aeat_state__not_sent
|
|
1283
1244
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__aeat_mixin__aeat_state__not_sent
|
|
1284
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__sii_mixin__aeat_state__not_sent
|
|
1285
1245
|
msgid "Not sent"
|
|
1286
1246
|
msgstr ""
|
|
1287
1247
|
|
|
@@ -1422,16 +1382,12 @@ msgstr ""
|
|
|
1422
1382
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__state__posted
|
|
1423
1383
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__state__posted
|
|
1424
1384
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__state__posted
|
|
1425
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__state__posted
|
|
1426
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__state__posted
|
|
1427
1385
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__state__posted
|
|
1428
1386
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__state__posted
|
|
1429
1387
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__state__posted
|
|
1430
1388
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__state__posted
|
|
1431
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__state__posted
|
|
1432
1389
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__state__posted
|
|
1433
1390
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__state__posted
|
|
1434
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__state__posted
|
|
1435
1391
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__state__posted
|
|
1436
1392
|
msgid "Posted"
|
|
1437
1393
|
msgstr ""
|
|
@@ -1453,16 +1409,12 @@ msgstr ""
|
|
|
1453
1409
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__state__calculated
|
|
1454
1410
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__state__calculated
|
|
1455
1411
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__state__calculated
|
|
1456
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__state__calculated
|
|
1457
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__state__calculated
|
|
1458
1412
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__state__calculated
|
|
1459
1413
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__state__calculated
|
|
1460
1414
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__state__calculated
|
|
1461
1415
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__state__calculated
|
|
1462
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__state__calculated
|
|
1463
1416
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__state__calculated
|
|
1464
1417
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__state__calculated
|
|
1465
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__state__calculated
|
|
1466
1418
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__state__calculated
|
|
1467
1419
|
msgid "Processed"
|
|
1468
1420
|
msgstr ""
|
|
@@ -1479,6 +1431,12 @@ msgid ""
|
|
|
1479
1431
|
"exportación del archivo BOE de la AEAT."
|
|
1480
1432
|
msgstr ""
|
|
1481
1433
|
|
|
1434
|
+
#. module: l10n_es_aeat
|
|
1435
|
+
#: model:ir.model.fields,field_description:l10n_es_aeat.field_l10n_es_aeat_report__rating_ids
|
|
1436
|
+
#: model:ir.model.fields,field_description:l10n_es_aeat.field_l10n_es_aeat_report_tax_mapping__rating_ids
|
|
1437
|
+
msgid "Ratings"
|
|
1438
|
+
msgstr ""
|
|
1439
|
+
|
|
1482
1440
|
#. module: l10n_es_aeat
|
|
1483
1441
|
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_l10n_es_aeat_report_form
|
|
1484
1442
|
msgid "Recalculate"
|
|
@@ -1522,11 +1480,6 @@ msgstr ""
|
|
|
1522
1480
|
msgid "Report identifier"
|
|
1523
1481
|
msgstr ""
|
|
1524
1482
|
|
|
1525
|
-
#. module: l10n_es_aeat
|
|
1526
|
-
#: model:ir.ui.menu,name:l10n_es_aeat.menu_root_aeat
|
|
1527
|
-
msgid "Reports"
|
|
1528
|
-
msgstr ""
|
|
1529
|
-
|
|
1530
1483
|
#. module: l10n_es_aeat
|
|
1531
1484
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__res_partner__aeat_identification_type__05
|
|
1532
1485
|
msgid "Residential certificate"
|
|
@@ -1554,9 +1507,7 @@ msgid "SII send failed"
|
|
|
1554
1507
|
msgstr ""
|
|
1555
1508
|
|
|
1556
1509
|
#. module: l10n_es_aeat
|
|
1557
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__account_move__aeat_state__sent
|
|
1558
1510
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__aeat_mixin__aeat_state__sent
|
|
1559
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__sii_mixin__aeat_state__sent
|
|
1560
1511
|
msgid "Sent"
|
|
1561
1512
|
msgstr ""
|
|
1562
1513
|
|
|
@@ -1631,16 +1582,12 @@ msgstr ""
|
|
|
1631
1582
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__statement_type__s
|
|
1632
1583
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__statement_type__s
|
|
1633
1584
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__statement_type__s
|
|
1634
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__statement_type__s
|
|
1635
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__statement_type__s
|
|
1636
1585
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__statement_type__s
|
|
1637
1586
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__statement_type__s
|
|
1638
1587
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__statement_type__s
|
|
1639
1588
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__statement_type__s
|
|
1640
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__statement_type__s
|
|
1641
1589
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__statement_type__s
|
|
1642
1590
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__statement_type__s
|
|
1643
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__statement_type__s
|
|
1644
1591
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__statement_type__s
|
|
1645
1592
|
msgid "Substitutive"
|
|
1646
1593
|
msgstr ""
|
|
@@ -1663,7 +1610,6 @@ msgstr ""
|
|
|
1663
1610
|
|
|
1664
1611
|
#. module: l10n_es_aeat
|
|
1665
1612
|
#: model:ir.actions.act_window,name:l10n_es_aeat.aeat_tax_agency_action
|
|
1666
|
-
#: model:ir.model.fields,field_description:l10n_es_aeat.field_account_journal__tax_agency_id
|
|
1667
1613
|
#: model:ir.model.fields,field_description:l10n_es_aeat.field_l10n_es_aeat_report__tax_agency_ids
|
|
1668
1614
|
#: model:ir.model.fields,field_description:l10n_es_aeat.field_l10n_es_aeat_report_tax_mapping__tax_agency_ids
|
|
1669
1615
|
#: model:ir.model.fields,field_description:l10n_es_aeat.field_res_company__tax_agency_id
|
|
@@ -1711,16 +1657,12 @@ msgstr ""
|
|
|
1711
1657
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod123_report__support_type__t
|
|
1712
1658
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod130_report__support_type__t
|
|
1713
1659
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod190_report__support_type__t
|
|
1714
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod216_report__support_type__t
|
|
1715
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod296_report__support_type__t
|
|
1716
1660
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod303_report__support_type__t
|
|
1717
1661
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod347_report__support_type__t
|
|
1718
1662
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod349_report__support_type__t
|
|
1719
1663
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod390_report__support_type__t
|
|
1720
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_mod592_report__support_type__t
|
|
1721
1664
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report__support_type__t
|
|
1722
1665
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_aeat_report_tax_mapping__support_type__t
|
|
1723
|
-
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_atc_mod415_report__support_type__t
|
|
1724
1666
|
#: model:ir.model.fields.selection,name:l10n_es_aeat.selection__l10n_es_vat_book__support_type__t
|
|
1725
1667
|
msgid "Telematics"
|
|
1726
1668
|
msgstr ""
|
|
@@ -1890,13 +1832,6 @@ msgstr ""
|
|
|
1890
1832
|
msgid "Year"
|
|
1891
1833
|
msgstr ""
|
|
1892
1834
|
|
|
1893
|
-
#. module: l10n_es_aeat
|
|
1894
|
-
#: model:ir.model.fields,help:l10n_es_aeat.field_account_journal__tax_agency_id
|
|
1895
|
-
msgid ""
|
|
1896
|
-
"You can select a tax agency other than the one defined in the company,so you "
|
|
1897
|
-
"can pay taxes at different agencies."
|
|
1898
|
-
msgstr ""
|
|
1899
|
-
|
|
1900
1835
|
#. module: l10n_es_aeat
|
|
1901
1836
|
#: model_terms:ir.ui.view,arch_db:l10n_es_aeat.view_l10n_es_aeat_report_form
|
|
1902
1837
|
msgid "You have"
|