odoo-addon-l10n-es-verifactu-oca 18.0.1.2.1__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_verifactu_oca/README.rst +195 -0
- odoo/addons/l10n_es_verifactu_oca/__init__.py +3 -0
- odoo/addons/l10n_es_verifactu_oca/__manifest__.py +50 -0
- odoo/addons/l10n_es_verifactu_oca/data/ir_config_parameter.xml +9 -0
- odoo/addons/l10n_es_verifactu_oca/data/ir_cron.xml +13 -0
- odoo/addons/l10n_es_verifactu_oca/data/l10n.es.aeat.map.tax.line.tax.csv +50 -0
- odoo/addons/l10n_es_verifactu_oca/data/mail_activity_data.xml +11 -0
- odoo/addons/l10n_es_verifactu_oca/data/neutralize.sql +2 -0
- odoo/addons/l10n_es_verifactu_oca/data/template/account.fiscal.position-es_common.csv +27 -0
- odoo/addons/l10n_es_verifactu_oca/data/verifactu.map.csv +2 -0
- odoo/addons/l10n_es_verifactu_oca/data/verifactu.map.line.csv +8 -0
- odoo/addons/l10n_es_verifactu_oca/data/verifactu_registration_key_data.xml +205 -0
- odoo/addons/l10n_es_verifactu_oca/data/verifactu_tax_agency_data.xml +19 -0
- odoo/addons/l10n_es_verifactu_oca/hooks.py +43 -0
- odoo/addons/l10n_es_verifactu_oca/i18n/es.po +1682 -0
- odoo/addons/l10n_es_verifactu_oca/i18n/l10n_es_verifactu_oca.pot +1640 -0
- odoo/addons/l10n_es_verifactu_oca/migrations/18.0.1.1.0/pre-migration.py +25 -0
- odoo/addons/l10n_es_verifactu_oca/models/__init__.py +15 -0
- odoo/addons/l10n_es_verifactu_oca/models/account_chart_template.py +17 -0
- odoo/addons/l10n_es_verifactu_oca/models/account_fiscal_position.py +34 -0
- odoo/addons/l10n_es_verifactu_oca/models/account_journal.py +64 -0
- odoo/addons/l10n_es_verifactu_oca/models/account_move.py +631 -0
- odoo/addons/l10n_es_verifactu_oca/models/aeat_tax_agency.py +30 -0
- odoo/addons/l10n_es_verifactu_oca/models/res_company.py +48 -0
- odoo/addons/l10n_es_verifactu_oca/models/res_partner.py +26 -0
- odoo/addons/l10n_es_verifactu_oca/models/verifactu_chaining.py +37 -0
- odoo/addons/l10n_es_verifactu_oca/models/verifactu_developer.py +16 -0
- odoo/addons/l10n_es_verifactu_oca/models/verifactu_invoice_entry.py +398 -0
- odoo/addons/l10n_es_verifactu_oca/models/verifactu_invoice_entry_response.py +116 -0
- odoo/addons/l10n_es_verifactu_oca/models/verifactu_invoice_entry_response_line.py +47 -0
- odoo/addons/l10n_es_verifactu_oca/models/verifactu_map.py +68 -0
- odoo/addons/l10n_es_verifactu_oca/models/verifactu_mixin.py +485 -0
- odoo/addons/l10n_es_verifactu_oca/models/verifactu_registration_key.py +26 -0
- odoo/addons/l10n_es_verifactu_oca/readme/CONFIGURE.md +27 -0
- odoo/addons/l10n_es_verifactu_oca/readme/CONTRIBUTORS.md +18 -0
- odoo/addons/l10n_es_verifactu_oca/readme/DESCRIPTION.md +1 -0
- odoo/addons/l10n_es_verifactu_oca/readme/INSTALL.md +6 -0
- odoo/addons/l10n_es_verifactu_oca/readme/ROADMAP.md +30 -0
- odoo/addons/l10n_es_verifactu_oca/readme/USAGE.md +3 -0
- odoo/addons/l10n_es_verifactu_oca/security/ir.model.access.csv +23 -0
- odoo/addons/l10n_es_verifactu_oca/security/verifactu_security.xml +6 -0
- odoo/addons/l10n_es_verifactu_oca/static/description/icon.png +0 -0
- odoo/addons/l10n_es_verifactu_oca/static/description/index.html +551 -0
- odoo/addons/l10n_es_verifactu_oca/tests/__init__.py +2 -0
- odoo/addons/l10n_es_verifactu_oca/tests/common.py +281 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_accepted_with_errors.json +35 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_cancel.json +35 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_cancel_incorrect.json +37 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_cancel_with_errors.json +35 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_correct.json +35 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_duplicated.json +43 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_incorrect.json +37 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_out_invoice_s_iva10b_s_iva21s_dict.json +59 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_out_invoice_s_iva21s_s_req52_dict.json +58 -0
- odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_out_refund_s_iva10b_s_iva10b_s_iva21s_dict.json +66 -0
- odoo/addons/l10n_es_verifactu_oca/tests/test_10n_es_verifactu.py +506 -0
- odoo/addons/l10n_es_verifactu_oca/tests/test_verifactu_invoice.py +348 -0
- odoo/addons/l10n_es_verifactu_oca/views/account_fiscal_position_view.xml +29 -0
- odoo/addons/l10n_es_verifactu_oca/views/account_journal_view.xml +22 -0
- odoo/addons/l10n_es_verifactu_oca/views/account_move_view.xml +237 -0
- odoo/addons/l10n_es_verifactu_oca/views/aeat_tax_agency_view.xml +31 -0
- odoo/addons/l10n_es_verifactu_oca/views/report_invoice.xml +53 -0
- odoo/addons/l10n_es_verifactu_oca/views/res_company_view.xml +50 -0
- odoo/addons/l10n_es_verifactu_oca/views/verifactu_chaining_view.xml +45 -0
- odoo/addons/l10n_es_verifactu_oca/views/verifactu_developer_view.xml +46 -0
- odoo/addons/l10n_es_verifactu_oca/views/verifactu_invoice_entry_response_view.xml +134 -0
- odoo/addons/l10n_es_verifactu_oca/views/verifactu_invoice_entry_view.xml +127 -0
- odoo/addons/l10n_es_verifactu_oca/views/verifactu_map_lines_view.xml +16 -0
- odoo/addons/l10n_es_verifactu_oca/views/verifactu_map_view.xml +54 -0
- odoo/addons/l10n_es_verifactu_oca/views/verifactu_registration_keys_view.xml +43 -0
- odoo/addons/l10n_es_verifactu_oca/wizards/__init__.py +2 -0
- odoo/addons/l10n_es_verifactu_oca/wizards/account_move_reversal.py +16 -0
- odoo/addons/l10n_es_verifactu_oca/wizards/verifactu_cancel_invoice_wizard.py +24 -0
- odoo/addons/l10n_es_verifactu_oca/wizards/verifactu_cancel_invoice_wizard_view.xml +35 -0
- odoo_addon_l10n_es_verifactu_oca-18.0.1.2.1.dist-info/METADATA +213 -0
- odoo_addon_l10n_es_verifactu_oca-18.0.1.2.1.dist-info/RECORD +78 -0
- odoo_addon_l10n_es_verifactu_oca-18.0.1.2.1.dist-info/WHEEL +5 -0
- odoo_addon_l10n_es_verifactu_oca-18.0.1.2.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
|
+
<!-- Copyright 2025 Factor Libre - Almudena de La Puente <almudena.delapuente@factorlibre.com
|
|
3
|
+
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -->
|
|
4
|
+
<odoo>
|
|
5
|
+
<record id="verifactu_cancel_invoice_wizard_form_view" model="ir.ui.view">
|
|
6
|
+
<field name="name">verifactu.cancel.invoice.wizard.form</field>
|
|
7
|
+
<field name="model">verifactu.cancel.invoice.wizard</field>
|
|
8
|
+
<field name="arch" type="xml">
|
|
9
|
+
<form>
|
|
10
|
+
<sheet>
|
|
11
|
+
<group>
|
|
12
|
+
<field name="invoice_id" />
|
|
13
|
+
<field name="cancel_reason" />
|
|
14
|
+
</group>
|
|
15
|
+
</sheet>
|
|
16
|
+
<footer>
|
|
17
|
+
<button
|
|
18
|
+
name="cancel_invoice_in_verifactu"
|
|
19
|
+
string="Cancel Invoice"
|
|
20
|
+
type="object"
|
|
21
|
+
class="oe_highlight"
|
|
22
|
+
/>
|
|
23
|
+
<button string="Close" special="cancel" />
|
|
24
|
+
</footer>
|
|
25
|
+
</form>
|
|
26
|
+
</field>
|
|
27
|
+
</record>
|
|
28
|
+
|
|
29
|
+
<record id="verifactu_cancel_invoice_wizard_action" model="ir.actions.act_window">
|
|
30
|
+
<field name="name">VERI*FACTU Cancel Invoice</field>
|
|
31
|
+
<field name="res_model">verifactu.cancel.invoice.wizard</field>
|
|
32
|
+
<field name="view_mode">form</field>
|
|
33
|
+
<field name="target">new</field>
|
|
34
|
+
</record>
|
|
35
|
+
</odoo>
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: odoo-addon-l10n_es_verifactu_oca
|
|
3
|
+
Version: 18.0.1.2.1
|
|
4
|
+
Requires-Python: >=3.10
|
|
5
|
+
Requires-Dist: odoo-addon-account_invoice_refund_link==18.0.*
|
|
6
|
+
Requires-Dist: odoo-addon-l10n_es_aeat==18.0.*
|
|
7
|
+
Requires-Dist: odoo==18.0.*
|
|
8
|
+
Summary: =?utf-8?q?Comunicaci=C3=B3n_VERI*FACTU?=
|
|
9
|
+
Home-page: https://github.com/OCA/l10n-spain
|
|
10
|
+
License: AGPL-3
|
|
11
|
+
Author: Aures Tic,ForgeFlow,Tecnativa,Factor Libre,Odoo Community Association (OCA)
|
|
12
|
+
Author-email: support@odoo-community.org
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Framework :: Odoo
|
|
15
|
+
Classifier: Framework :: Odoo :: 18.0
|
|
16
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
17
|
+
Description-Content-Type: text/x-rst
|
|
18
|
+
|
|
19
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
20
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
21
|
+
:alt: Odoo Community Association
|
|
22
|
+
|
|
23
|
+
=======================
|
|
24
|
+
Comunicación VERI*FACTU
|
|
25
|
+
=======================
|
|
26
|
+
|
|
27
|
+
..
|
|
28
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
|
+
!! This file is generated by oca-gen-addon-readme !!
|
|
30
|
+
!! changes will be overwritten. !!
|
|
31
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
32
|
+
!! source digest: sha256:c3c2f451254cc2c78b8c6084c2aa5dcaf61491b6bcb95eedcf40dcc3a990fd0f
|
|
33
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
34
|
+
|
|
35
|
+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
36
|
+
:target: https://odoo-community.org/page/development-status
|
|
37
|
+
:alt: Beta
|
|
38
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
39
|
+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
40
|
+
:alt: License: AGPL-3
|
|
41
|
+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--spain-lightgray.png?logo=github
|
|
42
|
+
:target: https://github.com/OCA/l10n-spain/tree/18.0/l10n_es_verifactu_oca
|
|
43
|
+
:alt: OCA/l10n-spain
|
|
44
|
+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
45
|
+
:target: https://translation.odoo-community.org/projects/l10n-spain-18-0/l10n-spain-18-0-l10n_es_verifactu_oca
|
|
46
|
+
:alt: Translate me on Weblate
|
|
47
|
+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
48
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-spain&target_branch=18.0
|
|
49
|
+
:alt: Try me on Runboat
|
|
50
|
+
|
|
51
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
52
|
+
|
|
53
|
+
Módulo para la presentación inmediata de la facturación.
|
|
54
|
+
|
|
55
|
+
**Table of contents**
|
|
56
|
+
|
|
57
|
+
.. contents::
|
|
58
|
+
:local:
|
|
59
|
+
|
|
60
|
+
Installation
|
|
61
|
+
============
|
|
62
|
+
|
|
63
|
+
Para instalar esté módulo necesita:
|
|
64
|
+
|
|
65
|
+
1. Libreria Python Zeep, se puede instalar con el comando 'pip install
|
|
66
|
+
zeep'
|
|
67
|
+
2. Libreria Python Requests, se puede instalar con el comando 'pip
|
|
68
|
+
install requests'
|
|
69
|
+
|
|
70
|
+
Configuration
|
|
71
|
+
=============
|
|
72
|
+
|
|
73
|
+
Para configurar este módulo es necesario:
|
|
74
|
+
|
|
75
|
+
1. Acceder a Facturación/Contabilidad -> Configuración -> AEAT ->
|
|
76
|
+
Agencia Tributaria, podrás consultar las URLs del servicio SOAP de
|
|
77
|
+
Hacienda. Estas URLs pueden cambiar según comunidades
|
|
78
|
+
2. El certificado enviado por la FMNT es en formato p12, este
|
|
79
|
+
certificado no se puede usar directamente con Zeep. Accede a
|
|
80
|
+
Facturación/Contabilidad -> Configuración -> AEAT -> Certificados
|
|
81
|
+
AEAT, y allí podrás: Subir el certificado p12 y extraer las claves
|
|
82
|
+
públicas y privadas con el botón "Obtener claves"
|
|
83
|
+
3. Debes tener en cuenta que los certificados se alojan en una carpeta
|
|
84
|
+
accesible por la instalación de Odoo.
|
|
85
|
+
4. Completar los datos de desarrollador y del encadenamiento a nivel de
|
|
86
|
+
compañía en la pestaña de VERI*FACTU.
|
|
87
|
+
|
|
88
|
+
En caso de que la obtención de claves no funcione y uses Linux, cuentas
|
|
89
|
+
con los siguientes comandos para tratar de solucionarlo:
|
|
90
|
+
|
|
91
|
+
- Clave pública: "openssl pkcs12 -in Certificado.p12 -nokeys -out
|
|
92
|
+
publicCert.crt -nodes"
|
|
93
|
+
- Clave privada: "openssl pkcs12 -in Certificado.p12 -nocerts -out
|
|
94
|
+
privateKey.pem -nodes"
|
|
95
|
+
|
|
96
|
+
1. Establecer en las posiciones fiscales la clave de impuestos y la
|
|
97
|
+
clave de registro VERI*FACTU.
|
|
98
|
+
2. Para aplicar las claves ejecute el asistente de actualización del
|
|
99
|
+
módulo accountchart_update.
|
|
100
|
+
|
|
101
|
+
Usage
|
|
102
|
+
=====
|
|
103
|
+
|
|
104
|
+
Cuando se valida una factura, automáticamente genera el registro de
|
|
105
|
+
envío para verifactu. Cada minuto se enviarán todos aquellos registros
|
|
106
|
+
pendientes de enviar mediante un cron.
|
|
107
|
+
|
|
108
|
+
Known issues / Roadmap
|
|
109
|
+
======================
|
|
110
|
+
|
|
111
|
+
- Refactorización SII-VERI*FACTU en l10nes_aeat de los métodos que
|
|
112
|
+
sean comunes.
|
|
113
|
+
- Envío separado de la confirmación de la factura
|
|
114
|
+
(cron.trigger/queque.job)
|
|
115
|
+
- Control de errores del sistema, generar avisos. (caída de aeat,
|
|
116
|
+
errores de conexión, etc.)
|
|
117
|
+
- Posibilidad de consultar el estado de las facturas enviadas.
|
|
118
|
+
- Operaciones exentas y causas de exención.
|
|
119
|
+
- Crear un selection con todos los valores posibles de codigos de
|
|
120
|
+
error, para poder guardarlo y agrupar las facturas por ese código.
|
|
121
|
+
- Contemplar el tiempo de espera entre envíos de registros cuando
|
|
122
|
+
AEAT devuelve un tiempo superior a 60 segundos.
|
|
123
|
+
- Facturación de terceros o de destinatarios (autofacturación), con
|
|
124
|
+
los datos de los mismos.
|
|
125
|
+
|
|
126
|
+
CASOS NO CUBIERTOS: 1 - Modificación de facturas enviadas (AEAT
|
|
127
|
+
recomienda generar rectificativa). Según AEAT: Si los errores detectados
|
|
128
|
+
tras la emisión NO están contemplados en el ROF, pero afectan a campos
|
|
129
|
+
del registro de facturación (RF) generado al emitir la factura (que,
|
|
130
|
+
digamos, “no se ven” en la factura impresa, es decir, son campos
|
|
131
|
+
“internos”, como ciertas codificaciones tributarias), se debe corregir
|
|
132
|
+
la factura original (esos datos “internos” de la misma) y se debe
|
|
133
|
+
generar un RF de alta de subsanación de esa factura donde conste ya la
|
|
134
|
+
nueva información que proceda. Estos casos deberían ser MUY POCO
|
|
135
|
+
FRECUENTES. 2 - Anulación de facturas enviadas (AEAT recomienda generar
|
|
136
|
+
rectificativa). Según AEAT: "Si se considera que "toda la factura" en sí
|
|
137
|
+
misma está mal o no debería haberse emitido, siempre que para
|
|
138
|
+
solucionarlo no deba emplearse algún procedimiento (de rectificativa u
|
|
139
|
+
otro) previsto en el ROF, se podrá "anular" generando para ello un RF de
|
|
140
|
+
anulación. Estos casos deberían ser MUY POCO FRECUENTES."
|
|
141
|
+
|
|
142
|
+
Bug Tracker
|
|
143
|
+
===========
|
|
144
|
+
|
|
145
|
+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-spain/issues>`_.
|
|
146
|
+
In case of trouble, please check there if your issue has already been reported.
|
|
147
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
148
|
+
`feedback <https://github.com/OCA/l10n-spain/issues/new?body=module:%20l10n_es_verifactu_oca%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
149
|
+
|
|
150
|
+
Do not contact contributors directly about support or help with technical issues.
|
|
151
|
+
|
|
152
|
+
Credits
|
|
153
|
+
=======
|
|
154
|
+
|
|
155
|
+
Authors
|
|
156
|
+
-------
|
|
157
|
+
|
|
158
|
+
* Aures Tic
|
|
159
|
+
* ForgeFlow
|
|
160
|
+
* Tecnativa
|
|
161
|
+
* Factor Libre
|
|
162
|
+
|
|
163
|
+
Contributors
|
|
164
|
+
------------
|
|
165
|
+
|
|
166
|
+
- Aures TIC:
|
|
167
|
+
|
|
168
|
+
- Jose Zambudio
|
|
169
|
+
- Almudena de La Puente
|
|
170
|
+
- Anna Martínez
|
|
171
|
+
|
|
172
|
+
- ForgeFlow S.L.:
|
|
173
|
+
|
|
174
|
+
- Laura Cazorla
|
|
175
|
+
- Andreu Orensanz
|
|
176
|
+
- Jordi Ballester
|
|
177
|
+
|
|
178
|
+
- Ozono multimedia:
|
|
179
|
+
|
|
180
|
+
- Iván Antón
|
|
181
|
+
|
|
182
|
+
- SDi:
|
|
183
|
+
|
|
184
|
+
- Fernando La Chica
|
|
185
|
+
|
|
186
|
+
- Process control:
|
|
187
|
+
|
|
188
|
+
- Jorge Luis López
|
|
189
|
+
|
|
190
|
+
- Tecnativa:
|
|
191
|
+
|
|
192
|
+
- Pedro M. Baeza
|
|
193
|
+
|
|
194
|
+
- Factor Libre S.L.:
|
|
195
|
+
|
|
196
|
+
- Luis J. Salvatierra
|
|
197
|
+
|
|
198
|
+
Maintainers
|
|
199
|
+
-----------
|
|
200
|
+
|
|
201
|
+
This module is maintained by the OCA.
|
|
202
|
+
|
|
203
|
+
.. image:: https://odoo-community.org/logo.png
|
|
204
|
+
:alt: Odoo Community Association
|
|
205
|
+
:target: https://odoo-community.org
|
|
206
|
+
|
|
207
|
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
208
|
+
mission is to support the collaborative development of Odoo features and
|
|
209
|
+
promote its widespread use.
|
|
210
|
+
|
|
211
|
+
This module is part of the `OCA/l10n-spain <https://github.com/OCA/l10n-spain/tree/18.0/l10n_es_verifactu_oca>`_ project on GitHub.
|
|
212
|
+
|
|
213
|
+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
odoo/addons/l10n_es_verifactu_oca/README.rst,sha256=2SJz654S5tD55QpomZzPERWUCOIrTnX23dSTVE88riA,6992
|
|
2
|
+
odoo/addons/l10n_es_verifactu_oca/__init__.py,sha256=GnWm38RNVl0F1QEHgICghDeuin84Dfykn-GEIm_MLUo,92
|
|
3
|
+
odoo/addons/l10n_es_verifactu_oca/__manifest__.py,sha256=2T1VvFhROSTUE51xyHLu2Kg0_UYY9_P0fJw97P9ekAk,1938
|
|
4
|
+
odoo/addons/l10n_es_verifactu_oca/hooks.py,sha256=6N6n-GUbWnzR3yYOJdueqXpfVXR-tINLasbkAD7rHWk,1865
|
|
5
|
+
odoo/addons/l10n_es_verifactu_oca/data/ir_config_parameter.xml,sha256=JEq2J9YjsjCbFRY9XeoZUuHvP8hs2rhTAgs7fqmFuf8,393
|
|
6
|
+
odoo/addons/l10n_es_verifactu_oca/data/ir_cron.xml,sha256=o-_hgrUaf7clBVzTTdZ6EftXnIDZzBikztD1KARKNfw,654
|
|
7
|
+
odoo/addons/l10n_es_verifactu_oca/data/l10n.es.aeat.map.tax.line.tax.csv,sha256=d8xXnjIJQrOifCNk-Cgu1qrRuMoR8Da47Oqi_Qb4Aas,1948
|
|
8
|
+
odoo/addons/l10n_es_verifactu_oca/data/mail_activity_data.xml,sha256=3TVX1YY2AJyoBa_sizJ9PGyY5uHUxAYSm56b27jHSSU,495
|
|
9
|
+
odoo/addons/l10n_es_verifactu_oca/data/neutralize.sql,sha256=eTzbCKiCMSm5NaKhA1mWfhEKHkQdqJf7TuzqIBedua0,81
|
|
10
|
+
odoo/addons/l10n_es_verifactu_oca/data/verifactu.map.csv,sha256=Wsgb3LG0l91CQJtNWgQRKjEoixeWrAnr09zXzEMBmWo,41
|
|
11
|
+
odoo/addons/l10n_es_verifactu_oca/data/verifactu.map.line.csv,sha256=3NnObZLtu1dCplWIPD08IJB-jF8ODvshv772nAAi-Yw,1263
|
|
12
|
+
odoo/addons/l10n_es_verifactu_oca/data/verifactu_registration_key_data.xml,sha256=nEJ7xDVElXxAnNAau_fpMNa2khksEmb6IKmkXsIPv2s,10696
|
|
13
|
+
odoo/addons/l10n_es_verifactu_oca/data/verifactu_tax_agency_data.xml,sha256=_YUGlGGJQAObWECaketUzWudrTCVwT2IwTaocse6fMo,888
|
|
14
|
+
odoo/addons/l10n_es_verifactu_oca/data/template/account.fiscal.position-es_common.csv,sha256=rF3gj9iSA8TBjczIFI3ZxwXVqMClFcfB4Z8fdzkgEew,1351
|
|
15
|
+
odoo/addons/l10n_es_verifactu_oca/i18n/es.po,sha256=4qqejmsYMhOcyZSqN1KLp0GKB4j2o2r0wx6Z490lZ8w,78021
|
|
16
|
+
odoo/addons/l10n_es_verifactu_oca/i18n/l10n_es_verifactu_oca.pot,sha256=H_B81p_K-AwcJKJt6F0nmTmDQugSKgWAusyI936YwyQ,69701
|
|
17
|
+
odoo/addons/l10n_es_verifactu_oca/migrations/18.0.1.1.0/pre-migration.py,sha256=bK4Ro8n9cOPiPqkmrhthWCcIZtr3DGci7lMsJf8qDus,768
|
|
18
|
+
odoo/addons/l10n_es_verifactu_oca/models/__init__.py,sha256=0q84HT4f_I54KG6PsiqiMFtAWhziVYVBYuPEmX1rIO4,517
|
|
19
|
+
odoo/addons/l10n_es_verifactu_oca/models/account_chart_template.py,sha256=4yT2M2nk7NMaXWY9gk0YheL3WNqk8NQAxkzPD92h3o4,561
|
|
20
|
+
odoo/addons/l10n_es_verifactu_oca/models/account_fiscal_position.py,sha256=u8G-XgHIrqv45amDX0P85DlsyExeshfPgg6gAX72x6Q,1171
|
|
21
|
+
odoo/addons/l10n_es_verifactu_oca/models/account_journal.py,sha256=Opc6Cg__wM5ph_swXDRhToGsX7UXNaCQd5l7WlYHAvU,2638
|
|
22
|
+
odoo/addons/l10n_es_verifactu_oca/models/account_move.py,sha256=Ut3iCk8F02345JOP2VUF0wPI2mwSxzjwm-Cl7LzjwDs,26389
|
|
23
|
+
odoo/addons/l10n_es_verifactu_oca/models/aeat_tax_agency.py,sha256=yoxH5aa0sZuBt1sDodzy5_KlJblT4tosNvyenWdU1HY,1138
|
|
24
|
+
odoo/addons/l10n_es_verifactu_oca/models/res_company.py,sha256=C9wj4RqzyHXy_0Y_6rC3Mm9FyVfJpMDiJN3vfC4Ol1U,1700
|
|
25
|
+
odoo/addons/l10n_es_verifactu_oca/models/res_partner.py,sha256=9WlymT_18IYyPOTwLoSf0zQiQdBT6bQJEYeUBmno6rE,876
|
|
26
|
+
odoo/addons/l10n_es_verifactu_oca/models/verifactu_chaining.py,sha256=N1Fypr2KCHU_XtIjGYDXYqPbQM7JzgxXCrtjaZKf_8Y,1185
|
|
27
|
+
odoo/addons/l10n_es_verifactu_oca/models/verifactu_developer.py,sha256=rOt-N30jj9tvQkdSDwV2dA2CgT8b8d2zl2OBTzR35UE,666
|
|
28
|
+
odoo/addons/l10n_es_verifactu_oca/models/verifactu_invoice_entry.py,sha256=YM7rFxK5pPn_dgSjFq8bBGGwnYeo5s65a7owv_LHHX0,15983
|
|
29
|
+
odoo/addons/l10n_es_verifactu_oca/models/verifactu_invoice_entry_response.py,sha256=7hZSTQtPxV5oQ-Rktv4hNFAghh1o7c7SmOoqe3I8cvU,4519
|
|
30
|
+
odoo/addons/l10n_es_verifactu_oca/models/verifactu_invoice_entry_response_line.py,sha256=ZIeZKEblB8jx2LgkwrXw27LuI4E01to0MgD_IPhdIfU,1715
|
|
31
|
+
odoo/addons/l10n_es_verifactu_oca/models/verifactu_map.py,sha256=FpSmqq1zosjEXhlGn7S5_s2dTe1pL2Bw2YZ2LCNcFEU,2285
|
|
32
|
+
odoo/addons/l10n_es_verifactu_oca/models/verifactu_mixin.py,sha256=DjjVJkMxRy3BVfH0w0E0_E0zimtzQxZXYAE2c4p8J9A,18632
|
|
33
|
+
odoo/addons/l10n_es_verifactu_oca/models/verifactu_registration_key.py,sha256=JAuRCN101mdK8yeBqQm7NZQtgNTcXQ3mDF74G1k7Lx8,844
|
|
34
|
+
odoo/addons/l10n_es_verifactu_oca/readme/CONFIGURE.md,sha256=PJEl93c6SL8OjugVkCJnjg-hahWWNZarqkGeLqMkdnw,1338
|
|
35
|
+
odoo/addons/l10n_es_verifactu_oca/readme/CONTRIBUTORS.md,sha256=uECgWu09YDTzvG8XnHqqt8513MLKsU3Fc8gHO0vTLzk,336
|
|
36
|
+
odoo/addons/l10n_es_verifactu_oca/readme/DESCRIPTION.md,sha256=ddeSH1Wf9HPJEwbn9-ArBJZFcGINV9eNm914c3i8cdw,60
|
|
37
|
+
odoo/addons/l10n_es_verifactu_oca/readme/INSTALL.md,sha256=Yggdl5ps9StrTeqfFcP9LkkBxJiIKpC7Ey1Tdu-jKxE,211
|
|
38
|
+
odoo/addons/l10n_es_verifactu_oca/readme/ROADMAP.md,sha256=hx4lI-o9X2I6UkvvH1rCuILxuBfpLUoPmYMV2b99JmY,1803
|
|
39
|
+
odoo/addons/l10n_es_verifactu_oca/readme/USAGE.md,sha256=j__r7F3ZFSPDhKCaaqHiZ1dBdktoSuY1Z9Sjx9yqzsQ,181
|
|
40
|
+
odoo/addons/l10n_es_verifactu_oca/security/ir.model.access.csv,sha256=2fj4HxkK8DsVRcns7HGxvOh2nbuKw0BiGleLf03Z2lQ,3188
|
|
41
|
+
odoo/addons/l10n_es_verifactu_oca/security/verifactu_security.xml,sha256=CRVoyXoLa8ovzDMIAc_3F8HOzEkZdnk_JH2YH1n3PkY,227
|
|
42
|
+
odoo/addons/l10n_es_verifactu_oca/static/description/icon.png,sha256=CgnOEZCwoe6f1vlLwkqFVfc2q_uwBMU0UnXN8j6X5ag,10254
|
|
43
|
+
odoo/addons/l10n_es_verifactu_oca/static/description/index.html,sha256=NJNRNzIArIxFgSpHwIW2DX16a6-mvNa9F2_q9OutjHA,17463
|
|
44
|
+
odoo/addons/l10n_es_verifactu_oca/tests/__init__.py,sha256=6LNl_lyd3IHnmLNKN6TlxcntSYIJ-y159FbnzPF6rPA,73
|
|
45
|
+
odoo/addons/l10n_es_verifactu_oca/tests/common.py,sha256=2ZsmIhn22OXuFP9FXyUPU-i7YXPQfP_SwwcjwTE3YHs,10026
|
|
46
|
+
odoo/addons/l10n_es_verifactu_oca/tests/test_10n_es_verifactu.py,sha256=hGGxCWlAPlT2RY7MbGCsugNI9kPvknkV25z5d1mG0Uk,21304
|
|
47
|
+
odoo/addons/l10n_es_verifactu_oca/tests/test_verifactu_invoice.py,sha256=rkd8-fcKyqU8dbPoF7_gBEQwm9pmMalohJ-UNHnaww4,12659
|
|
48
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_accepted_with_errors.json,sha256=LHm5V879epI67rc6a9AwUXBZavog2sy_pMEUU1B7ta8,841
|
|
49
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_cancel.json,sha256=e8HZuoXkjX6lorujEGhd9McC__0APUn5DbsOE48bbiI,836
|
|
50
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_cancel_incorrect.json,sha256=uQ8VqzJL07HuddZsGGR1wdO4Ac-31v4opCMr9smndQI,1020
|
|
51
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_cancel_with_errors.json,sha256=atjuar3sBLlZ3T7BcHd4zd-5KEN8ZKx4GzY1krR8-aw,845
|
|
52
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_correct.json,sha256=Yb_D0IwEquC97yAFwN0pxSTwgfhdeo55172AhcxRCOw,831
|
|
53
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_duplicated.json,sha256=IpDUyhCb6RX5sMQ8x1fJFD3G0AUQOl1ltCv36tAaO0Y,1147
|
|
54
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_mocked_response_incorrect.json,sha256=4d312E5JRFGIAEA2N4l2qmy2c32ZnPD1CvzFX2gRrbI,1015
|
|
55
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_out_invoice_s_iva10b_s_iva21s_dict.json,sha256=FdOL4fbSZ0X_W6YKa_TcnQZoN72_FP20VxMXkI3SY0M,1496
|
|
56
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_out_invoice_s_iva21s_s_req52_dict.json,sha256=YYxduFRWxA5fsnjtjEY4KU8CXLDzlYo_XlNXbhpX-hQ,1558
|
|
57
|
+
odoo/addons/l10n_es_verifactu_oca/tests/json/verifactu_out_refund_s_iva10b_s_iva10b_s_iva21s_dict.json,sha256=JooUcpXB3PqAQFnXBRIZmlRquImCsskHGjdTLT8MwfU,1783
|
|
58
|
+
odoo/addons/l10n_es_verifactu_oca/views/account_fiscal_position_view.xml,sha256=qbWbUbMC9cQJOsmkvRNFtXjqcvyrKU-D6ltEg6-ZdeY,1285
|
|
59
|
+
odoo/addons/l10n_es_verifactu_oca/views/account_journal_view.xml,sha256=6dDGsK5kfrVu9OVGeddzPm0e6_28kabvrolw7g2yUJ8,921
|
|
60
|
+
odoo/addons/l10n_es_verifactu_oca/views/account_move_view.xml,sha256=gG0NQA1hWagjtz7M7LgfdHnCWqUbigItmbC8x4gYBxc,11722
|
|
61
|
+
odoo/addons/l10n_es_verifactu_oca/views/aeat_tax_agency_view.xml,sha256=dF2VoTFu-OenP9vRZ8-f2x5Ooxfoey7qEn9kAwV27lQ,1393
|
|
62
|
+
odoo/addons/l10n_es_verifactu_oca/views/report_invoice.xml,sha256=u4OltFwc8u6gYuEXI3Ve8FLDw9M3CwgJpPYbYFPqlt8,2162
|
|
63
|
+
odoo/addons/l10n_es_verifactu_oca/views/res_company_view.xml,sha256=fuEwygLUeZ5EvsR0DukMPvcUu-MwhG7vAZ8_z9BidF4,2340
|
|
64
|
+
odoo/addons/l10n_es_verifactu_oca/views/verifactu_chaining_view.xml,sha256=CV4OORpqk3PJ73VdeD8EI2uPPCfG9tS033Ll0q9i0c8,1785
|
|
65
|
+
odoo/addons/l10n_es_verifactu_oca/views/verifactu_developer_view.xml,sha256=op3pt365qpj2-I2OletnQ6nntjlgoiJwBjS_u9uHrwA,1789
|
|
66
|
+
odoo/addons/l10n_es_verifactu_oca/views/verifactu_invoice_entry_response_view.xml,sha256=du1Gm4T-o_t8t2YygTt_SsUPS51UfD55fiBq8VVqH3I,6208
|
|
67
|
+
odoo/addons/l10n_es_verifactu_oca/views/verifactu_invoice_entry_view.xml,sha256=IEe_lE7pmfTIYjQiYuIYZCD8YnwPzZoU-EPvZK3Q6xA,5897
|
|
68
|
+
odoo/addons/l10n_es_verifactu_oca/views/verifactu_map_lines_view.xml,sha256=z9aj9FnIOukKBRNvs3F_1jGuIeRdcjcTYufJQV2nGmw,636
|
|
69
|
+
odoo/addons/l10n_es_verifactu_oca/views/verifactu_map_view.xml,sha256=vDdPcfyebCEjROfQjqgjl4kx3e39gL6elE1js2Q5NCI,2037
|
|
70
|
+
odoo/addons/l10n_es_verifactu_oca/views/verifactu_registration_keys_view.xml,sha256=HQVuarK7MFa2WHuuAQLPFkRhcEkxFxljWepaR0Ldy68,1750
|
|
71
|
+
odoo/addons/l10n_es_verifactu_oca/wizards/__init__.py,sha256=FAlfl7JHbVis3iSrrKJxrJRsxsegnqhDvEGflVtTvDY,82
|
|
72
|
+
odoo/addons/l10n_es_verifactu_oca/wizards/account_move_reversal.py,sha256=GQ-ioHPVHppF0iOtVGv8HU6kuwZ1IQIXrfjLxjfKJsU,546
|
|
73
|
+
odoo/addons/l10n_es_verifactu_oca/wizards/verifactu_cancel_invoice_wizard.py,sha256=HAoVk24qYiYdAvfWR__VQLkkkxVGNXAsoeFL-j-TlpM,821
|
|
74
|
+
odoo/addons/l10n_es_verifactu_oca/wizards/verifactu_cancel_invoice_wizard_view.xml,sha256=m209vZbXgNcelk1n2RRMcG2762HgzcU6asYERrt_mP0,1442
|
|
75
|
+
odoo_addon_l10n_es_verifactu_oca-18.0.1.2.1.dist-info/METADATA,sha256=u8qKCaK8qdi0dZb881RCApiPCmcq-VjOz6ydsQ9tUmk,7695
|
|
76
|
+
odoo_addon_l10n_es_verifactu_oca-18.0.1.2.1.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
77
|
+
odoo_addon_l10n_es_verifactu_oca-18.0.1.2.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
78
|
+
odoo_addon_l10n_es_verifactu_oca-18.0.1.2.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
odoo
|