Skip to content

Commit 1d17ad8

Browse files
committed
ampliación de endpoints
1 parent 07d50b6 commit 1d17ad8

File tree

1 file changed

+33
-4
lines changed

1 file changed

+33
-4
lines changed

django_afip/clients.py

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,48 @@
2828
WSDLS = {
2929
"production": {
3030
"wsaa": "https://wsaa.afip.gov.ar/ws/services/LoginCms?wsdl",
31-
"wsfe": "https://servicios1.afip.gov.ar/wsfev1/service.asmx?WSDL",
32-
"ws_sr_constancia_inscripcion": "https://aws.afip.gov.ar/sr-padron/webservices/personaServiceA5?WSDL",
31+
"ws_sr_constancia_inscripcion": "https://aws.afip.gov.ar/sr-padron/webservices/personaServiceA5?wsdl",
32+
"ws_sr_padron_a10": "https://aws.afip.gov.ar/sr-padron/webservices/personaServiceA10?wsdl",
3333
"ws_sr_padron_a13": "https://aws.afip.gov.ar/sr-padron/webservices/personaServiceA13?WSDL",
34+
"wsfecred": "https://serviciosjava.afip.gob.ar/wsfecred/FECredService?wsdl",
35+
"wsfe": "https://servicios1.afip.gov.ar/wsfev1/service.asmx?WSDL",
36+
"wsfex": "https://servicios1.afip.gov.ar/wsfexv1/service.asmx?WSDL",
37+
"wslpg": "https://serviciosjava.afip.gob.ar/wslpg/LpgService?wsdl",
38+
"wscpe": "https://cpea-ws.afip.gob.ar/wscpe/services/soap?wsdl",
39+
"wsapoc": "https://eapoc-ws.afip.gob.ar/service.asmx",
40+
"wsagr": "https://servicios1.afip.gov.ar/wsagr/wsagr.asmx?WSDL",
41+
"wsrgiva": "https://servicios1.afip.gov.ar/wsrgiva/wsrgiva.asmx?WSDL",
42+
"wsct": "https://serviciosjava.afip.gob.ar/wsct/CTService?wsdl",
43+
"sire-ws": "https://ws-aplicativos-reca.afip.gob.ar/sire/ws/v1/c2005/2005?wsdl",
44+
"wsremharina": "https://serviciosjava.afip.gob.ar/wsremharina/RemHarinaService?wsdl",
45+
"wsremazucar": "https://serviciosjava.afip.gob.ar/wsremazucar/RemAzucarService",
46+
"wsremcarne": "https://serviciosjava.afip.gob.ar/wsremcarne/RemCarneService?wsdl",
47+
"wsmtxca": "https://serviciosjava.afip.gob.ar/wsmtxca/services/MTXCAService?wsdl",
3448
},
3549
"sandbox": {
3650
"wsaa": "https://wsaahomo.afip.gov.ar/ws/services/LoginCms?wsdl",
37-
"wsfe": "https://wswhomo.afip.gov.ar/wsfev1/service.asmx?WSDL",
38-
"ws_sr_constancia_inscripcion": "https://awshomo.afip.gov.ar/sr-padron/webservices/personaServiceA5?WSDL",
51+
"ws_sr_constancia_inscripcion": "https://awshomo.afip.gov.ar/sr-padron/webservices/personaServiceA5?wsdl",
52+
"ws_sr_padron_a10": "https://awshomo.afip.gov.ar/sr-padron/webservices/personaServiceA10?wsdl",
3953
"ws_sr_padron_a13": "https://awshomo.afip.gov.ar/sr-padron/webservices/personaServiceA13?WSDL",
54+
"wsfecred": "https://fwshomo.afip.gov.ar/wsfecred/FECredService?wsdl",
55+
"wsfe": "https://wswhomo.afip.gov.ar/wsfev1/service.asmx?WSDL",
56+
"wsfex": "https://wswhomo.afip.gov.ar/wsfexv1/service.asmx?WSDL",
57+
"wslpg": "https://fwshomo.afip.gov.ar/wslpg/LpgService?wsdl",
58+
"wscpe": "https://cpea-ws-qaext.afip.gob.ar/wscpe/services/soap?wsdl",
59+
"wsapoc": "https://eapoc-ws-qaext.afip.gob.ar/Service.asmx?WSDL",
60+
"wsagr": "https://wswhomo.afip.gov.ar/wsagr/wsagr.asmx?WSDL",
61+
"wsrgiva": "https://fwshomo.afip.gov.ar/wsrgiva/services/RegimenPercepcionIVAService?wsdl",
62+
"wsct": "https://fwshomo.afip.gov.ar/wsct/CTService?wsdl",
63+
"sire-ws": "https://ws-aplicativos-reca.homo.afip.gov.ar/sire/ws/v1/c2005/2005?wsdl",
64+
"wsremharina": "https://fwshomo.afip.gov.ar/wsremharina/RemHarinaService?wsdl",
65+
"wsremazucar": "https://fwshomo.afip.gov.ar/wsremazucar/RemAzucarService?wsdl",
66+
"wsremcarne": "https://fwshomo.afip.gov.ar/wsremcarne/RemCarneService?",
67+
"wsmtxca": "https://fwshomo.afip.gov.ar/wsmtxca/services/MTXCAService?wsdl",
4068
},
4169
}
4270

4371

72+
4473
class AFIPAdapter(HTTPAdapter):
4574
"""An adapter with reduced security so it'll work with AFIP."""
4675

0 commit comments

Comments
 (0)