From aef5d4113a627b6f5de236290dc5145c90574655 Mon Sep 17 00:00:00 2001 From: Berezi Date: Mon, 16 Dec 2024 12:08:48 +0100 Subject: [PATCH] [14.0][ADD] l10n_es_aeat_sii_extra_date: --- l10n_es_aeat_sii_extra_data/README.rst | 94 +++++++++++++++++++ l10n_es_aeat_sii_extra_data/__init__.py | 0 l10n_es_aeat_sii_extra_data/__manifest__.py | 20 ++++ .../data/aeat_sii_map_data.xml | 79 ++++++++++++++++ .../odoo/addons/l10n_es_aeat_sii_extra_data | 1 + setup/l10n_es_aeat_sii_extra_data/setup.py | 6 ++ 6 files changed, 200 insertions(+) create mode 100644 l10n_es_aeat_sii_extra_data/README.rst create mode 100644 l10n_es_aeat_sii_extra_data/__init__.py create mode 100644 l10n_es_aeat_sii_extra_data/__manifest__.py create mode 100644 l10n_es_aeat_sii_extra_data/data/aeat_sii_map_data.xml create mode 120000 setup/l10n_es_aeat_sii_extra_data/odoo/addons/l10n_es_aeat_sii_extra_data create mode 100644 setup/l10n_es_aeat_sii_extra_data/setup.py diff --git a/l10n_es_aeat_sii_extra_data/README.rst b/l10n_es_aeat_sii_extra_data/README.rst new file mode 100644 index 00000000000..ae45a7a4034 --- /dev/null +++ b/l10n_es_aeat_sii_extra_data/README.rst @@ -0,0 +1,94 @@ +======================================================== +Suministro Inmediato de Información en el IVA Extra Data +======================================================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:6faf944bf9cddcc4813589aa8d024a9e47f322edc82ffe5bfa426ac894c8ab96 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png + :target: https://odoo-community.org/page/development-status + :alt: Production/Stable +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--spain-lightgray.png?logo=github + :target: https://github.com/OCA/l10n-spain/tree/14.0/l10n_es_aeat_sii_oca + :alt: OCA/l10n-spain +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/l10n-spain-14-0/l10n-spain-14-0-l10n_es_aeat_sii_oca + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-spain&target_branch=14.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Módulo que nos permite configurar cualquier cambio del plan contable en la +version 14.0 de la localización española, ya que Odoo no permite modificaciones +en versiones no mantenidas. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +Cuando se valida una factura automáticamente envia la comunicación al servidor +de AEAT. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Avanzosc (www.avanzosc.es) + +Contributors +~~~~~~~~~~~~ + +* `Avanzosc SL `__: + + * Berezi Amubieta + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-avanzosc| image:: https://github.com/avanzosc.png?size=40px + :target: https://github.com/avanzosc + :alt: avanzosc + +Current `maintainer `__: + +|maintainer-avanzosc| + +This module is part of the `OCA/l10n-spain `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/l10n_es_aeat_sii_extra_data/__init__.py b/l10n_es_aeat_sii_extra_data/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/l10n_es_aeat_sii_extra_data/__manifest__.py b/l10n_es_aeat_sii_extra_data/__manifest__.py new file mode 100644 index 00000000000..9f29e8f2e43 --- /dev/null +++ b/l10n_es_aeat_sii_extra_data/__manifest__.py @@ -0,0 +1,20 @@ +# Copyright 2024 Berezi Amubieta - AvanzOSC +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + "name": "Suministro Inmediato de Información en el IVA Datos Extra", + "version": "14.0.1.0.0", + "category": "Accounting & Finance", + "website": "https://github.com/OCA/l10n-spain", + "author": "AvanzOSC, Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "development_status": "Production/Stable", + "maintainers": ["avanzosc"], + "depends": [ + "l10n_es_aeat_sii_oca", + "l10n_es_extra_data", + ], + "data": [ + "data/aeat_sii_map_data.xml", + ], +} diff --git a/l10n_es_aeat_sii_extra_data/data/aeat_sii_map_data.xml b/l10n_es_aeat_sii_extra_data/data/aeat_sii_map_data.xml new file mode 100644 index 00000000000..e76c0955788 --- /dev/null +++ b/l10n_es_aeat_sii_extra_data/data/aeat_sii_map_data.xml @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/setup/l10n_es_aeat_sii_extra_data/odoo/addons/l10n_es_aeat_sii_extra_data b/setup/l10n_es_aeat_sii_extra_data/odoo/addons/l10n_es_aeat_sii_extra_data new file mode 120000 index 00000000000..48c0ac50105 --- /dev/null +++ b/setup/l10n_es_aeat_sii_extra_data/odoo/addons/l10n_es_aeat_sii_extra_data @@ -0,0 +1 @@ +../../../../l10n_es_aeat_sii_extra_data \ No newline at end of file diff --git a/setup/l10n_es_aeat_sii_extra_data/setup.py b/setup/l10n_es_aeat_sii_extra_data/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/l10n_es_aeat_sii_extra_data/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)