-
-
Notifications
You must be signed in to change notification settings - Fork 520
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] l10n_es_aeat_sii_oca: black, isort, prettier
- Loading branch information
1 parent
6cb1e6b
commit 972a770
Showing
17 changed files
with
206 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["whool"] | ||
build-backend = "whool.buildapi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Para configurar este módulo es necesario: | ||
|
||
1. En la compañia se almacenan las URLs del servicio SOAP de hacienda. | ||
Estas URLs pueden cambiar según comunidades | ||
2. Los certificados deben alojarse en una carpeta accesible por la | ||
instalación de Odoo. | ||
3. Preparar el certificado. El certificado enviado por la FMNT es en | ||
formato p12, este certificado no se puede usar directamente con | ||
Zeep. Se tiene que extraer la clave pública y la clave privada. | ||
|
||
En Linux se pueden usar los siguientes comandos: | ||
|
||
- Clave pública: "openssl pkcs12 -in Certificado.p12 -nokeys -out | ||
publicCert.crt -nodes" | ||
- Clave privada: "openssl pkcs12 -in Certifcado.p12 -nocerts -out | ||
privateKey.pem -nodes" | ||
|
||
Además, el módulo queue_job necesita estar configurado de una de estas | ||
formas: | ||
|
||
1. Ajustando variables de entorno: | ||
|
||
> ODOO_QUEUE_JOB_CHANNELS=root:4 | ||
u otro canal de configuración. Por defecto es root:1 | ||
|
||
Si xmlrpc_port no está definido: ODOO_QUEUE_JOB_PORT=8069 | ||
|
||
2. Otra alternativa es usuando un fichero de configuración: | ||
|
||
> \[options\] (...) workers = 4 server_wide_modules = | ||
> web,base_sparse_field,queue_job | ||
> | ||
> (...) \[queue_job\] channels = root:4 | ||
3. Por último, arrancando Odoo con | ||
--load=web,base_sparse_field,queue_job y --workers más grande que 1. | ||
|
||
Más información <http://odoo-connector.com> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
- Ignacio Ibeas \<<ignacio@acysos.com>\> | ||
- Rubén Cerdà \<<ruben.cerda.roig@diagram.es>\> | ||
- Ramon Guiu \<<ramon.guiu@minorisa.net>\> | ||
- Pablo Fuentes \<<pablo@studio73.es>\> | ||
- Jordi Tolsà \<<jordi@studio73.es>\> | ||
- Ismael Calvo \<<ismael.calvo@factorlibre.es>\> | ||
- Omar Castiñeira - Comunitea S.L. \<<omar@comunitea.com>\> | ||
- Juanjo Algaz \<<jalgaz@gmail.com>\>, Planeta Huerto | ||
\<<juanjoalgaz@planetahuerto.es>\> | ||
- Javi Melendez \<<javimelex@gmail.com>\> | ||
- Santi Argüeso - Comunitea S.L. \<<santi@comunitea.com>\> | ||
- Angel Moya - PESOL \<<angel.moya@pesol.es>\> | ||
- Eric Antonés - NuoBiT Solutions, S.L. \<<eantones@nuobit.com>\> | ||
- [Sygel](https://www.sygel.es): | ||
- Valentin Vinagre | ||
- [Tecnativa](https://www.tecnativa.com): | ||
- Pedro M. Baeza | ||
- João Marques | ||
- Lois Rilo Antelo \<<lois.rilo@forgeflow.com>\> | ||
- Eduardo de Miguel (<edu@moduon.team>) | ||
- Jose Zambudio \<<jose@aurestic.es>\> | ||
- [Factor Libre](https://factorlibre.com): | ||
- Luis J. Salvatierra \<<luis.salvatierra@factorlibre.com>\> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Módulo para la presentación inmediata del IVA | ||
<https://www.agenciatributaria.es/static_files/AEAT/Contenidos_Comunes/La_Agencia_Tributaria/Modelos_y_formularios/Suministro_inmediato_informacion/FicherosSuministros/V_1_1/SII_Descripcion_ServicioWeb_v1.1.pdf> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Para instalar esté módulo necesita: | ||
|
||
1. Libreria Python Zeep, se puede instalar con el comando 'pip install | ||
zeep' | ||
2. Libreria Python Requests, se puede instalar con el comando 'pip | ||
install requests' | ||
|
||
y el módulo queue_job que se encuentra en: | ||
|
||
<https://github.com/OCA/queue> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.