Skip to content

Commit 5e623b4

Browse files
committed
[ADD] l10n_es_hr_siltra
1 parent 20ee52c commit 5e623b4

19 files changed

Lines changed: 1601 additions & 0 deletions

l10n_es_hr_siltra/README.rst

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
=================================
2+
Importación de Ficheros de SILTRA
3+
=================================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:2624f009477c12315d3773bafe624d5457175c8780f9c638472dce14e5c924f3
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--spain-lightgray.png?logo=github
20+
:target: https://github.com/OCA/l10n-spain/tree/18.0/l10n_es_hr_siltra
21+
:alt: OCA/l10n-spain
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/l10n-spain-18-0/l10n-spain-18-0-l10n_es_hr_siltra
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-spain&target_branch=18.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
Este módulo permite la importación de ficheros de SILTRA de forma
32+
automàtica y su procesamiento.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Use Cases / Context
40+
===================
41+
42+
La Seguridad Social comunica de forma constante las bajas de los
43+
empleados de las empresas. Esta información se recopila en SILTRA y se
44+
subministra mediante el sistema RED Normalmente, estos ficheros los
45+
gestiona la gestoría de turno, pero si se obtienen, se pueden usar para
46+
generar automáticamente todas las ausencias necesarias.
47+
48+
Bug Tracker
49+
===========
50+
51+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-spain/issues>`_.
52+
In case of trouble, please check there if your issue has already been reported.
53+
If you spotted it first, help us to smash it by providing a detailed and welcomed
54+
`feedback <https://github.com/OCA/l10n-spain/issues/new?body=module:%20l10n_es_hr_siltra%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
55+
56+
Do not contact contributors directly about support or help with technical issues.
57+
58+
Credits
59+
=======
60+
61+
Authors
62+
-------
63+
64+
* Dixmit
65+
66+
Contributors
67+
------------
68+
69+
- `Dixmit <https://www.dixmit.com>`__
70+
71+
- Enric Tobella
72+
73+
Maintainers
74+
-----------
75+
76+
This module is maintained by the OCA.
77+
78+
.. image:: https://odoo-community.org/logo.png
79+
:alt: Odoo Community Association
80+
:target: https://odoo-community.org
81+
82+
OCA, or the Odoo Community Association, is a nonprofit organization whose
83+
mission is to support the collaborative development of Odoo features and
84+
promote its widespread use.
85+
86+
This module is part of the `OCA/l10n-spain <https://github.com/OCA/l10n-spain/tree/18.0/l10n_es_hr_siltra>`_ project on GitHub.
87+
88+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

l10n_es_hr_siltra/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import models

l10n_es_hr_siltra/__manifest__.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Copyright 2026 Dixmit
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3+
4+
{
5+
"name": "Importación de Ficheros de SILTRA",
6+
"summary": """Importa los ficheros de SILTRA para generar las
7+
ausencias necesarias de forma automática.""",
8+
"version": "18.0.1.0.0",
9+
"license": "AGPL-3",
10+
"author": "Dixmit,Odoo Community Association (OCA)",
11+
"website": "https://github.com/OCA/l10n-spain",
12+
"depends": [
13+
"hr_holidays",
14+
],
15+
"data": [
16+
"views/res_company.xml",
17+
"security/ir.model.access.csv",
18+
"views/hr_siltra.xml",
19+
"views/hr_siltra_item.xml",
20+
],
21+
"demo": [],
22+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from . import hr_siltra
2+
from . import res_company

0 commit comments

Comments
 (0)