forked from reingart/pyafipws
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from reingart/ro
RG5259 - RG5264/22 (Actividades)
- Loading branch information
Showing
2 changed files
with
93 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
__author__ = "Mariano Reingart <[email protected]>" | ||
__copyright__ = "Copyright (C) 2010-2021 Mariano Reingart" | ||
__license__ = "LGPL-3.0-or-later" | ||
__version__ = "3.15d" | ||
__version__ = "3.16a" | ||
|
||
import datetime | ||
import decimal | ||
|
@@ -47,6 +47,7 @@ class WSMTXCA(BaseWS): | |
"EstablecerCampoItem", | ||
"AgregarOpcional", | ||
"AgregarPeriodoComprobantesAsociados", | ||
"AgregarActividad", | ||
"AutorizarComprobante", | ||
"CAESolicitar", | ||
"AutorizarAjusteIVA", | ||
|
@@ -67,6 +68,7 @@ class WSMTXCA(BaseWS): | |
"ConsultarCondicionesIVA", | ||
"ConsultarMonedas", | ||
"ConsultarUnidadesMedida", | ||
"ConsultarActividadesVigentes", | ||
"ConsultarTiposTributo", | ||
"ConsultarTiposDatosAdicionales", | ||
"ConsultarCotizacionMoneda", | ||
|
@@ -223,6 +225,7 @@ def CrearFactura( | |
"iva": [], | ||
"detalles": [], | ||
"opcionales": [], | ||
"actividades": [], | ||
} | ||
if fecha_serv_desde: | ||
fact["fecha_serv_desde"] = fecha_serv_desde | ||
|
@@ -359,6 +362,13 @@ def AgregarOpcional( | |
self.factura["opcionales"].append(op) | ||
return True | ||
|
||
@inicializar_y_capturar_excepciones | ||
def AgregarActividad(self, actividad_id=0, **kwarg): | ||
"Agrego actividades a una factura (interna)" | ||
act = { 'actividad_id': actividad_id} | ||
self.factura['actividades'].append(act) | ||
return True | ||
|
||
@inicializar_y_capturar_excepciones | ||
def AutorizarComprobante(self): | ||
f = self.factura | ||
|
@@ -468,6 +478,16 @@ def AutorizarComprobante(self): | |
for dato in f["opcionales"] | ||
] | ||
or None, | ||
"arrayActividades": f["actividades"] | ||
and [ | ||
{ | ||
"actividad": { | ||
"codigo": act["actividad_id"], | ||
} | ||
} | ||
for act in f["actividades"] | ||
] | ||
or None, | ||
} | ||
|
||
ret = self.client.autorizarComprobante( | ||
|
@@ -1436,6 +1456,15 @@ def ConsultarPtosVtaCAEANoInformados(self, caea): | |
for p in ret["arrayPuntosVenta"] | ||
] | ||
|
||
@inicializar_y_capturar_excepciones | ||
def ConsultarActividadesVigentes(self): | ||
"Este método permite consultar las actividades vigentes para el contribuyente" | ||
ret = self.client.consultarActividadesVigentes( | ||
authRequest={'token': self.Token, 'sign': self.Sign, 'cuitRepresentada': self.Cuit}, | ||
) | ||
return ["%(codigo)s: %(orden)s %(descripcion)s" % p['actividad'] | ||
for p in ret['arrayActividades']] | ||
|
||
|
||
def main(): | ||
"Función principal de pruebas (obtener CAE)" | ||
|
@@ -1469,7 +1498,7 @@ def main(): | |
if "--prueba" in sys.argv: | ||
##print wsmtxca.client.help("autorizarComprobante").encode("latin1") | ||
try: | ||
tipo_cbte = 201 | ||
tipo_cbte = 1 | ||
punto_vta = 4000 | ||
cbte_nro = wsmtxca.ConsultarUltimoComprobanteAutorizado( | ||
tipo_cbte, punto_vta | ||
|
@@ -1584,6 +1613,9 @@ def main(): | |
if "--rg4540" in sys.argv: | ||
wsmtxca.AgregarPeriodoComprobantesAsociados("2020-01-01", "2020-01-31") | ||
|
||
if '--rg5259' in sys.argv: | ||
wsmtxca.AgregarActividad(960990) | ||
|
||
print(wsmtxca.factura) | ||
|
||
if "--caea" in sys.argv: | ||
|
@@ -1740,6 +1772,8 @@ def main(): | |
print(wsmtxca.ConsultarUnidadesMedida()) | ||
print(wsmtxca.ConsultarTiposTributo()) | ||
print(wsmtxca.ConsultarTiposDatosAdicionales()) | ||
if '--rg5259' in sys.argv: | ||
print(wsmtxca.ConsultarActividadesVigentes()) | ||
|
||
if "--puntosventa" in sys.argv: | ||
print(wsmtxca.ConsultarPuntosVentaCAE()) | ||
|