odoo-addon-l10n-es-atc-mod415 16.0.1.0.0.2__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.
Files changed (29) hide show
  1. odoo/addons/l10n_es_atc_mod415/README.rst +87 -0
  2. odoo/addons/l10n_es_atc_mod415/__init__.py +3 -0
  3. odoo/addons/l10n_es_atc_mod415/__manifest__.py +30 -0
  4. odoo/addons/l10n_es_atc_mod415/data/mail_template_data.xml +94 -0
  5. odoo/addons/l10n_es_atc_mod415/data/tax_code_map_mod415_data.xml +91 -0
  6. odoo/addons/l10n_es_atc_mod415/i18n/es.po +1687 -0
  7. odoo/addons/l10n_es_atc_mod415/i18n/l10n_es_atc_mod415.pot +1075 -0
  8. odoo/addons/l10n_es_atc_mod415/models/__init__.py +5 -0
  9. odoo/addons/l10n_es_atc_mod415/models/account_move.py +17 -0
  10. odoo/addons/l10n_es_atc_mod415/models/mod415.py +241 -0
  11. odoo/addons/l10n_es_atc_mod415/models/res_partner.py +24 -0
  12. odoo/addons/l10n_es_atc_mod415/readme/CONTRIBUTORS.rst +2 -0
  13. odoo/addons/l10n_es_atc_mod415/readme/DESCRIPTION.rst +3 -0
  14. odoo/addons/l10n_es_atc_mod415/readme/INSTALL.rst +0 -0
  15. odoo/addons/l10n_es_atc_mod415/security/ir.model.access.csv +5 -0
  16. odoo/addons/l10n_es_atc_mod415/security/mod_415_security.xml +9 -0
  17. odoo/addons/l10n_es_atc_mod415/static/description/icon.png +0 -0
  18. odoo/addons/l10n_es_atc_mod415/static/description/index.html +424 -0
  19. odoo/addons/l10n_es_atc_mod415/tests/__init__.py +3 -0
  20. odoo/addons/l10n_es_atc_mod415/tests/test_l10n_es_atc_mod415.py +213 -0
  21. odoo/addons/l10n_es_atc_mod415/views/account_move_view.xml +13 -0
  22. odoo/addons/l10n_es_atc_mod415/views/mod415_templates.xml +63 -0
  23. odoo/addons/l10n_es_atc_mod415/views/mod415_view.xml +137 -0
  24. odoo/addons/l10n_es_atc_mod415/views/report_415_partner.xml +22 -0
  25. odoo/addons/l10n_es_atc_mod415/views/res_partner_view.xml +18 -0
  26. odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/METADATA +108 -0
  27. odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/RECORD +29 -0
  28. odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/WHEEL +5 -0
  29. odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,63 @@
1
+ <odoo>
2
+ <template id="communication_success" name="415 communication success">
3
+ <t t-call="portal.frontend_layout">
4
+ <div id="wrap">
5
+ <div class="oe_structure oe_empty">
6
+ <div class="container">
7
+ <div class="row mb32">
8
+ <div class="col-12 text-center">
9
+ <h1
10
+ class="mt32"
11
+ style="font-size: 22px; letter-spacing: 2px; font-weight: bolder;"
12
+ >Modelo 415</h1>
13
+ <div id="ok">
14
+ <img
15
+ src="/l10n_es_atc_mod415/static/src/img/415_ok.svg"
16
+ width="200"
17
+ height="233"
18
+ class="mb32"
19
+ />
20
+ <h4>
21
+ La comunicación se ha registrado correctamente.
22
+ </h4>
23
+ <p>Ya puede cerrar esta página si así lo desea.</p>
24
+ </div>
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </div>
29
+ </div>
30
+ </t>
31
+ </template>
32
+ <template id="communication_failed" name="415 communication failed">
33
+ <t t-call="portal.frontend_layout">
34
+ <div id="wrap">
35
+ <div class="oe_structure oe_empty">
36
+ <div class="container">
37
+ <div class="row mb32">
38
+ <div class="col-12 text-center">
39
+ <h1
40
+ class="mt32"
41
+ style="font-size: 22px; letter-spacing: 2px; font-weight: bolder;"
42
+ >Modelo 415</h1>
43
+ <div id="bad">
44
+ <img
45
+ src="/l10n_es_atc_mod415/static/src/img/415_bad.svg"
46
+ width="200"
47
+ height="233"
48
+ class="mb32"
49
+ />
50
+ <h4>
51
+ Ha habido un error registrando la comunicación.
52
+ </h4>
53
+ <p
54
+ >Revíselo y vuelva a intentarlo, o pongase en contacto por correo con nosotros.</p>
55
+ </div>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </div>
61
+ </t>
62
+ </template>
63
+ </odoo>
@@ -0,0 +1,137 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <odoo>
3
+ <!-- ##########################################
4
+ Modelo ATC 415 PARTNER RECORD
5
+ ########################################## -->
6
+ <!-- Tree view -->
7
+ <record model="ir.ui.view" id="view_l10n_es_atc_mod415_partner_record_tree">
8
+ <field name="model">l10n.es.atc.mod415.partner_record</field>
9
+ <field
10
+ name="inherit_id"
11
+ ref="l10n_es_aeat_mod347.view_l10n_es_aeat_mod347_partner_record_tree"
12
+ />
13
+ <field name="mode">primary</field>
14
+ <field name="arch" type="xml">
15
+ <xpath expr="." position="inside">
16
+ </xpath>
17
+ </field>
18
+ </record>
19
+ <!-- Form view -->
20
+ <record model="ir.ui.view" id="view_l10n_es_atc_mod415_partner_record_form">
21
+ <field name="model">l10n.es.atc.mod415.partner_record</field>
22
+ <field
23
+ name="inherit_id"
24
+ ref="l10n_es_aeat_mod347.view_l10n_es_aeat_mod347_partner_record_form"
25
+ />
26
+ <field name="mode">primary</field>
27
+ <field name="arch" type="xml">
28
+ <xpath expr="." position="inside">
29
+ </xpath>
30
+ </field>
31
+ </record>
32
+ <!-- Search view -->
33
+ <record id="partner_record_search_view" model="ir.ui.view">
34
+ <field name="model">l10n.es.atc.mod415.partner_record</field>
35
+ <field name="inherit_id" ref="l10n_es_aeat_mod347.partner_record_search_view" />
36
+ <field name="mode">primary</field>
37
+ <field name="arch" type="xml">
38
+ <xpath expr="." position="inside">
39
+ </xpath>
40
+ </field>
41
+ </record>
42
+ <!-- #############################################
43
+ ### Modelo ATC 415 PARTNER REAL ESTATE RECORDS ###
44
+ ############################################## -->
45
+ <!-- Tree view -->
46
+ <record id="view_l10n_es_atc_mod415_real_estate_record_tree" model="ir.ui.view">
47
+ <field name="model">l10n.es.atc.mod415.real_estate_record</field>
48
+ <field
49
+ name="inherit_id"
50
+ ref="l10n_es_aeat_mod347.view_l10n_es_aeat_mod347_real_estate_record_tree"
51
+ />
52
+ <field name="mode">primary</field>
53
+ <field name="arch" type="xml">
54
+ <xpath expr="." position="inside">
55
+ </xpath>
56
+ </field>
57
+ </record>
58
+ <!-- Form view -->
59
+ <record id="view_l10n_es_atc_mod415_real_estate_record_form" model="ir.ui.view">
60
+ <field name="model">l10n.es.atc.mod415.real_estate_record</field>
61
+ <field
62
+ name="inherit_id"
63
+ ref="l10n_es_aeat_mod347.view_l10n_es_aeat_mod347_real_estate_record_form"
64
+ />
65
+ <field name="mode">primary</field>
66
+ <field name="arch" type="xml">
67
+ <xpath expr="." position="inside">
68
+ </xpath>
69
+ </field>
70
+ </record>
71
+ <!-- #################
72
+ ### Modelo ATC 415 ###
73
+ ################## -->
74
+ <!-- Form view -->
75
+ <record id="view_l10n_es_atc_mod415_report_form" model="ir.ui.view">
76
+ <field name="model">l10n.es.atc.mod415.report</field>
77
+ <field
78
+ name="inherit_id"
79
+ ref="l10n_es_aeat_mod347.view_l10n_es_aeat_mod347_report_form"
80
+ />
81
+ <field name="arch" type="xml">
82
+ <button
83
+ name="%(l10n_es_aeat.action_wizard_aeat_export)d"
84
+ position="attributes"
85
+ >
86
+ <attribute name="invisible">True</attribute>
87
+ </button>
88
+ <field name="export_config_id" position="attributes">
89
+ <attribute name="invisible">1</attribute>
90
+ </field>
91
+ </field>
92
+ </record>
93
+ <!-- Window action -->
94
+ <record id="action_l10n_es_atc_mod415_report" model="ir.actions.act_window">
95
+ <field name="name">Modelo ATC 415</field>
96
+ <field name="res_model">l10n.es.atc.mod415.report</field>
97
+ <field name="view_mode">tree,form</field>
98
+ <field name="help" type="html">
99
+ <p class="oe_view_nocontent_create">
100
+ Click to create a Modelo ATC 415 Reports.
101
+ </p>
102
+ <p>
103
+ Basado en la Orden EHA/3012/2008, de 20 de Octubre, por el que se aprueban
104
+ los diseños físicos y lógicos del 415.
105
+ </p>
106
+ </field>
107
+ </record>
108
+ <record
109
+ model="ir.actions.act_window.view"
110
+ id="action_l10n_es_atc_mod415_report_tree"
111
+ >
112
+ <field name="sequence" eval="2" />
113
+ <field name="view_mode">tree</field>
114
+ <field
115
+ name="view_id"
116
+ ref="l10n_es_aeat_mod347.view_l10n_es_aeat_mod347_report_tree"
117
+ />
118
+ <field name="act_window_id" ref="action_l10n_es_atc_mod415_report" />
119
+ </record>
120
+ <record
121
+ model="ir.actions.act_window.view"
122
+ id="action_l10n_es_atc_mod415_report_form"
123
+ >
124
+ <field name="sequence" eval="3" />
125
+ <field name="view_mode">form</field>
126
+ <field name="view_id" ref="view_l10n_es_atc_mod415_report_form" />
127
+ <field name="act_window_id" ref="action_l10n_es_atc_mod415_report" />
128
+ </record>
129
+ <!-- ### MENU ACCESS ### -->
130
+ <menuitem
131
+ id="menu_atc_mod415_report"
132
+ parent="l10n_es_atc.menu_root_atc"
133
+ action="action_l10n_es_atc_mod415_report"
134
+ sequence="415"
135
+ name="Modelo 415"
136
+ />
137
+ </odoo>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <odoo>
3
+ <template id="report_415_partner">
4
+ <t t-call="web.html_container">
5
+ <t t-foreach="docs" t-as="o">
6
+ <t
7
+ t-call="l10n_es_aeat_mod347.report_347_partner_document"
8
+ t-lang="o.partner_id.lang"
9
+ />
10
+ </t>
11
+ </t>
12
+ </template>
13
+ <record id="415_partner" model="ir.actions.report">
14
+ <field name="name">415 Partner Detail</field>
15
+ <field name="model">l10n.es.atc.mod415.partner_record</field>
16
+ <field name="report_type">qweb-pdf</field>
17
+ <field name="report_name">l10n_es_atc_mod415.report_415_partner</field>
18
+ <field name="report_file">l10n_es_atc_mod415.report_415_partner</field>
19
+ <field name="binding_model_id" ref="model_l10n_es_atc_mod415_partner_record" />
20
+ <field name="binding_type">report</field>
21
+ </record>
22
+ </odoo>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <odoo>
3
+ <!-- PARTNERS -->
4
+ <record id="view_partner_form_mod415" model="ir.ui.view">
5
+ <field name="name">Partners - Add 'exclude from 415'</field>
6
+ <field name="model">res.partner</field>
7
+ <field name="inherit_id" ref="l10n_es_aeat.view_partner_form" />
8
+ <field name="arch" type="xml">
9
+ <page id="aeat" position="inside">
10
+ <group string="Modelo 415" name="mod415">
11
+ <group name="exclude_415">
12
+ <field name="not_in_mod415" />
13
+ </group>
14
+ </group>
15
+ </page>
16
+ </field>
17
+ </record>
18
+ </odoo>
@@ -0,0 +1,108 @@
1
+ Metadata-Version: 2.1
2
+ Name: odoo-addon-l10n-es-atc-mod415
3
+ Version: 16.0.1.0.0.2
4
+ Summary: ATC Modelo 415
5
+ Home-page: https://github.com/OCA/l10n-spain
6
+ Author: Binhex System Solutions,Odoo Community Association (OCA)
7
+ Author-email: support@odoo-community.org
8
+ License: AGPL-3
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Framework :: Odoo
12
+ Classifier: Framework :: Odoo :: 16.0
13
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
14
+ Requires-Python: >=3.10
15
+ Requires-Dist: odoo-addon-l10n-es-aeat-mod347 <16.1dev,>=16.0dev
16
+ Requires-Dist: odoo-addon-l10n-es-atc <16.1dev,>=16.0dev
17
+ Requires-Dist: odoo-addon-l10n-es-igic <16.1dev,>=16.0dev
18
+ Requires-Dist: odoo <16.1dev,>=16.0a
19
+
20
+ ==============
21
+ ATC Modelo 415
22
+ ==============
23
+
24
+ ..
25
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
+ !! This file is generated by oca-gen-addon-readme !!
27
+ !! changes will be overwritten. !!
28
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
+ !! source digest: sha256:e9a2359368716909526d77d3a8e3d31f629e90b07ff12a326fb764bae8c45ef9
30
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
31
+
32
+ .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
33
+ :target: https://odoo-community.org/page/development-status
34
+ :alt: Beta
35
+ .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
36
+ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
37
+ :alt: License: AGPL-3
38
+ .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--spain-lightgray.png?logo=github
39
+ :target: https://github.com/OCA/l10n-spain/tree/16.0/l10n_es_atc_mod415
40
+ :alt: OCA/l10n-spain
41
+ .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
42
+ :target: https://translation.odoo-community.org/projects/l10n-spain-16-0/l10n-spain-16-0-l10n_es_atc_mod415
43
+ :alt: Translate me on Weblate
44
+ .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
45
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-spain&target_branch=16.0
46
+ :alt: Try me on Runboat
47
+
48
+ |badge1| |badge2| |badge3| |badge4| |badge5|
49
+
50
+ Módulo para la presentación del modelo 415 de la Agencia Tributaria Canaria.
51
+
52
+ Instrucciones del modelo: https://www3.gobiernodecanarias.org/tributos/atc/estatico/asistencia_contribuyente/modelos/ref_y_propios/igic/mod415/pdf/instrucciones/415.pdf
53
+
54
+ **Table of contents**
55
+
56
+ .. contents::
57
+ :local:
58
+
59
+ Bug Tracker
60
+ ===========
61
+
62
+ Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-spain/issues>`_.
63
+ In case of trouble, please check there if your issue has already been reported.
64
+ If you spotted it first, help us to smash it by providing a detailed and welcomed
65
+ `feedback <https://github.com/OCA/l10n-spain/issues/new?body=module:%20l10n_es_atc_mod415%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
66
+
67
+ Do not contact contributors directly about support or help with technical issues.
68
+
69
+ Credits
70
+ =======
71
+
72
+ Authors
73
+ ~~~~~~~
74
+
75
+ * Binhex System Solutions
76
+
77
+ Contributors
78
+ ~~~~~~~~~~~~
79
+
80
+ * Nicolás Ramos <n.ramos@binhex.es>
81
+ * Christian Ramos <c.ramos@binhex.es>
82
+
83
+ Maintainers
84
+ ~~~~~~~~~~~
85
+
86
+ This module is maintained by the OCA.
87
+
88
+ .. image:: https://odoo-community.org/logo.png
89
+ :alt: Odoo Community Association
90
+ :target: https://odoo-community.org
91
+
92
+ OCA, or the Odoo Community Association, is a nonprofit organization whose
93
+ mission is to support the collaborative development of Odoo features and
94
+ promote its widespread use.
95
+
96
+ .. |maintainer-Christian-RB| image:: https://github.com/Christian-RB.png?size=40px
97
+ :target: https://github.com/Christian-RB
98
+ :alt: Christian-RB
99
+
100
+ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
101
+
102
+ |maintainer-Christian-RB|
103
+
104
+ This module is part of the `OCA/l10n-spain <https://github.com/OCA/l10n-spain/tree/16.0/l10n_es_atc_mod415>`_ project on GitHub.
105
+
106
+ You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
107
+
108
+
@@ -0,0 +1,29 @@
1
+ odoo/addons/l10n_es_atc_mod415/README.rst,sha256=TYtDNS9IEWD-p18JIxc_7-1IUBI6Mf5waSVFfdZwRco,3294
2
+ odoo/addons/l10n_es_atc_mod415/__init__.py,sha256=ZGjmXT9q1Wc3A9Eb3pRZjwDcSFijPJcJLFSMyZdyxyU,86
3
+ odoo/addons/l10n_es_atc_mod415/__manifest__.py,sha256=4_ehLgZmg0lp9rFOkTufCIlpIrUFVpn6jsqkOsPZN-I,1012
4
+ odoo/addons/l10n_es_atc_mod415/data/mail_template_data.xml,sha256=jHBnq4X3viTYGRjVC62ORPMZi2I-lipS2YGCRRkwKws,4352
5
+ odoo/addons/l10n_es_atc_mod415/data/tax_code_map_mod415_data.xml,sha256=4zijZNCSnHChph_Bdl2Ay0GrqGLJyOQSVaKCS5Yd8qg,4588
6
+ odoo/addons/l10n_es_atc_mod415/i18n/es.po,sha256=iyWs3aqEJRko2l9w4Wk_8tbwwK3s9sGwSpsvVM7PADM,63777
7
+ odoo/addons/l10n_es_atc_mod415/i18n/l10n_es_atc_mod415.pot,sha256=v4q81_OoAPgS3VoQNdkIUIH_dB3vBxVf19IhfDzsqNw,45296
8
+ odoo/addons/l10n_es_atc_mod415/models/__init__.py,sha256=K1vY7SgTQ3bWNj0llCcisOnaQhsJvt6KmPztKtTWStU,139
9
+ odoo/addons/l10n_es_atc_mod415/models/account_move.py,sha256=WpqBFLnt7HhpvBx_x311GvoTtKrJYwQA4jxiv12SEes,547
10
+ odoo/addons/l10n_es_atc_mod415/models/mod415.py,sha256=lnyS9qRzZ6ZEu1lKYvTQ7eCwxYisAnMqmHc5sP7XQ2U,8537
11
+ odoo/addons/l10n_es_atc_mod415/models/res_partner.py,sha256=h1CwT7PpuU7OIeN3sL_BihejYwGKBKX4zeujmoc4X1E,755
12
+ odoo/addons/l10n_es_atc_mod415/readme/CONTRIBUTORS.rst,sha256=GGPKz3ewItQ8aV8DkMg-MJc2s1oJMEF0hA_UB5qYJi4,75
13
+ odoo/addons/l10n_es_atc_mod415/readme/DESCRIPTION.rst,sha256=9QJWx40eVXC_ZK_UyiPdTWGz_fdAal6UydiZOmZoPPQ,248
14
+ odoo/addons/l10n_es_atc_mod415/readme/INSTALL.rst,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ odoo/addons/l10n_es_atc_mod415/security/ir.model.access.csv,sha256=3FyWUXbLxhsCIO-igBOwFfnMpOxkHa3qPH2vu5MNsPI,724
16
+ odoo/addons/l10n_es_atc_mod415/security/mod_415_security.xml,sha256=f6ncM17_mGVMmVk5oyaoE5aDBHSlLuxzYU3SCKYMufk,400
17
+ odoo/addons/l10n_es_atc_mod415/static/description/icon.png,sha256=vii2g5CrG3CHp4qWLZu8kLEtEK0ojczlsJgdkCU50SY,5267
18
+ odoo/addons/l10n_es_atc_mod415/static/description/index.html,sha256=29mdOZCVBUMFVWG532l6VskeK4mwp0m-p729O_zkMtU,12831
19
+ odoo/addons/l10n_es_atc_mod415/tests/__init__.py,sha256=KFAynDdaCJ8byU2FQ5wp9dVNcjCUeQ-vlJIOaoz9kuM,105
20
+ odoo/addons/l10n_es_atc_mod415/tests/test_l10n_es_atc_mod415.py,sha256=vUHlhjmcBMlR4t6Rt4pb-LO8zU-lEBr0S5i_Uyj9hPk,9127
21
+ odoo/addons/l10n_es_atc_mod415/views/account_move_view.xml,sha256=tPts5ciitJ8dDAuKvyXRW2VUejIALSY80FrS1eOCIhk,506
22
+ odoo/addons/l10n_es_atc_mod415/views/mod415_templates.xml,sha256=41aqXwfNd-Sne4GFY2gGnswvzkUUPxoK4CBXoml4jWM,2943
23
+ odoo/addons/l10n_es_atc_mod415/views/mod415_view.xml,sha256=0PLUA33cDQ_h5zDkfQCJ7gZR66b1aBfFLTBcEEmx-dw,5278
24
+ odoo/addons/l10n_es_atc_mod415/views/report_415_partner.xml,sha256=ORHjebPccD_TDJ2wEXI0QPQsp9fdU-W9aTwnQX2y0HM,927
25
+ odoo/addons/l10n_es_atc_mod415/views/res_partner_view.xml,sha256=a0fDIbQwty4-Exuh1WKXwVk98YaB6u8iaD0s1-B0IqA,680
26
+ odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/METADATA,sha256=BchMn3Ut2uTkkeFkhunsIshrjt3al3nnaZ6jG6aDkI8,4014
27
+ odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
28
+ odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
29
+ odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+