pyEscoAPI 0.0.26__tar.gz → 0.0.28__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/PKG-INFO +1 -1
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyEscoAPI/esco_api.py +25 -25
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyEscoAPI.egg-info/PKG-INFO +1 -1
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyproject.toml +1 -1
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/README.md +0 -0
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyEscoAPI/__init__.py +0 -0
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyEscoAPI/dataclasses.py +0 -0
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyEscoAPI/exception.py +0 -0
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyEscoAPI.egg-info/SOURCES.txt +0 -0
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyEscoAPI.egg-info/dependency_links.txt +0 -0
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyEscoAPI.egg-info/requires.txt +0 -0
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/pyEscoAPI.egg-info/top_level.txt +0 -0
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/setup.cfg +0 -0
- {pyescoapi-0.0.26 → pyescoapi-0.0.28}/tests/test_client.py +0 -0
|
@@ -702,7 +702,7 @@ class EscoAPI:
|
|
|
702
702
|
precio: decimal = None,
|
|
703
703
|
importe: decimal = None,
|
|
704
704
|
moneda: str = "ARS",
|
|
705
|
-
fecha_concertacion: date = date.today(),
|
|
705
|
+
fecha_concertacion: date | None = date.today(),
|
|
706
706
|
observacion: str = None,
|
|
707
707
|
cod_usuario: int = None,
|
|
708
708
|
id_usuario: str = None,
|
|
@@ -763,7 +763,7 @@ class EscoAPI:
|
|
|
763
763
|
"importe": importe,
|
|
764
764
|
"cuenta": cuenta,
|
|
765
765
|
"moneda": moneda,
|
|
766
|
-
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d"),
|
|
766
|
+
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d") if fecha_concertacion else None,
|
|
767
767
|
"plazo": plazo,
|
|
768
768
|
"observacion": observacion,
|
|
769
769
|
"codUsuario": cod_usuario,
|
|
@@ -872,7 +872,7 @@ class EscoAPI:
|
|
|
872
872
|
precio: decimal = None,
|
|
873
873
|
importe: decimal = None,
|
|
874
874
|
moneda: str = "ARS",
|
|
875
|
-
fecha_concertacion: date = date.today(),
|
|
875
|
+
fecha_concertacion: date | None = date.today(),
|
|
876
876
|
observacion: str = None,
|
|
877
877
|
cod_usuario: int = None,
|
|
878
878
|
id_usuario: str = None,
|
|
@@ -932,7 +932,7 @@ class EscoAPI:
|
|
|
932
932
|
"importe": importe,
|
|
933
933
|
"cuenta": cuenta,
|
|
934
934
|
"moneda": moneda,
|
|
935
|
-
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d"),
|
|
935
|
+
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d") if fecha_concertacion else None,
|
|
936
936
|
"plazo": plazo,
|
|
937
937
|
"observacion": observacion,
|
|
938
938
|
"codUsuario": cod_usuario,
|
|
@@ -968,8 +968,8 @@ class EscoAPI:
|
|
|
968
968
|
fondo: str,
|
|
969
969
|
cuenta: str,
|
|
970
970
|
importe: decimal,
|
|
971
|
-
fecha_concertacion: date = date.today(),
|
|
972
|
-
fecha_acreditacion: date =
|
|
971
|
+
fecha_concertacion: date | None = date.today(),
|
|
972
|
+
fecha_acreditacion: date | None = None,
|
|
973
973
|
tp_cambio_mov_pais: decimal = 1,
|
|
974
974
|
moneda: str = "ARS",
|
|
975
975
|
cod_usuario: int = None,
|
|
@@ -1008,8 +1008,8 @@ class EscoAPI:
|
|
|
1008
1008
|
req_body = {
|
|
1009
1009
|
"fondo": fondo,
|
|
1010
1010
|
"cuenta": cuenta,
|
|
1011
|
-
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d"),
|
|
1012
|
-
"fechaAcreditacion": fecha_acreditacion.strftime("%Y-%m-%d"),
|
|
1011
|
+
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d") if fecha_concertacion else None,
|
|
1012
|
+
"fechaAcreditacion": fecha_acreditacion.strftime("%Y-%m-%d") if fecha_acreditacion else None,
|
|
1013
1013
|
"importe": importe,
|
|
1014
1014
|
"tpCambioMovPais": tp_cambio_mov_pais,
|
|
1015
1015
|
"moneda": moneda,
|
|
@@ -1040,8 +1040,8 @@ class EscoAPI:
|
|
|
1040
1040
|
cant_cuotapartes: decimal = None,
|
|
1041
1041
|
es_total: bool = False,
|
|
1042
1042
|
es_por_cantidad: bool = False,
|
|
1043
|
-
fecha_concertacion: date = date.today(),
|
|
1044
|
-
fecha_acreditacion: date =
|
|
1043
|
+
fecha_concertacion: date | None = date.today(),
|
|
1044
|
+
fecha_acreditacion: date | None = None,
|
|
1045
1045
|
tp_cambio_mov_pais: decimal = 1,
|
|
1046
1046
|
moneda: str = "ARS",
|
|
1047
1047
|
cod_usuario: int = None,
|
|
@@ -1083,8 +1083,8 @@ class EscoAPI:
|
|
|
1083
1083
|
req_body = {
|
|
1084
1084
|
"fondo": fondo,
|
|
1085
1085
|
"cuenta": cuenta,
|
|
1086
|
-
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d"),
|
|
1087
|
-
"fechaAcreditacion": fecha_acreditacion.strftime("%Y-%m-%d"),
|
|
1086
|
+
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d") if fecha_concertacion else None,
|
|
1087
|
+
"fechaAcreditacion": fecha_acreditacion.strftime("%Y-%m-%d") if fecha_acreditacion else None,
|
|
1088
1088
|
"cantCuotapartes": cant_cuotapartes,
|
|
1089
1089
|
"esTotal": es_total,
|
|
1090
1090
|
"esPorCantidad": es_por_cantidad,
|
|
@@ -1438,7 +1438,7 @@ class EscoAPI:
|
|
|
1438
1438
|
precio: decimal = None,
|
|
1439
1439
|
importe: decimal = None,
|
|
1440
1440
|
moneda: str = "ARS",
|
|
1441
|
-
fecha_concertacion: date = date.today(),
|
|
1441
|
+
fecha_concertacion: date | None = date.today(),
|
|
1442
1442
|
observacion: str = None,
|
|
1443
1443
|
cod_usuario: int = None,
|
|
1444
1444
|
id_usuario: str = None,
|
|
@@ -1498,7 +1498,7 @@ class EscoAPI:
|
|
|
1498
1498
|
"importe": importe,
|
|
1499
1499
|
"cuenta": cuenta,
|
|
1500
1500
|
"moneda": moneda,
|
|
1501
|
-
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d"),
|
|
1501
|
+
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d") if fecha_concertacion else None,
|
|
1502
1502
|
"plazo": plazo,
|
|
1503
1503
|
"observacion": observacion,
|
|
1504
1504
|
"codUsuario": cod_usuario,
|
|
@@ -1538,7 +1538,7 @@ class EscoAPI:
|
|
|
1538
1538
|
precio: decimal = None,
|
|
1539
1539
|
importe: decimal = None,
|
|
1540
1540
|
moneda: str = "ARS",
|
|
1541
|
-
fecha_concertacion: date = date.today(),
|
|
1541
|
+
fecha_concertacion: date | None = date.today(),
|
|
1542
1542
|
observacion: str = None,
|
|
1543
1543
|
cod_usuario: int = None,
|
|
1544
1544
|
id_usuario: str = None,
|
|
@@ -1598,7 +1598,7 @@ class EscoAPI:
|
|
|
1598
1598
|
"importe": importe,
|
|
1599
1599
|
"cuenta": cuenta,
|
|
1600
1600
|
"moneda": moneda,
|
|
1601
|
-
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d"),
|
|
1601
|
+
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d") if fecha_concertacion else None,
|
|
1602
1602
|
"plazo": plazo,
|
|
1603
1603
|
"observacion": observacion,
|
|
1604
1604
|
"codUsuario": cod_usuario,
|
|
@@ -1638,7 +1638,7 @@ class EscoAPI:
|
|
|
1638
1638
|
precio: decimal = None,
|
|
1639
1639
|
importe: decimal = None,
|
|
1640
1640
|
moneda: str = "ARS",
|
|
1641
|
-
fecha_concertacion: date = date.today(),
|
|
1641
|
+
fecha_concertacion: date | None = date.today(),
|
|
1642
1642
|
observacion: str = None,
|
|
1643
1643
|
cod_usuario: int = None,
|
|
1644
1644
|
id_usuario: str = None,
|
|
@@ -1683,7 +1683,7 @@ class EscoAPI:
|
|
|
1683
1683
|
"importe": importe,
|
|
1684
1684
|
"cuenta": cuenta,
|
|
1685
1685
|
"moneda": moneda,
|
|
1686
|
-
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d"),
|
|
1686
|
+
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d") if fecha_concertacion else None,
|
|
1687
1687
|
"plazo": plazo,
|
|
1688
1688
|
"observacion": observacion,
|
|
1689
1689
|
"codUsuario": cod_usuario,
|
|
@@ -1715,7 +1715,7 @@ class EscoAPI:
|
|
|
1715
1715
|
precio: decimal = None,
|
|
1716
1716
|
importe: decimal = None,
|
|
1717
1717
|
moneda: str = "ARS",
|
|
1718
|
-
fecha_concertacion: date = date.today(),
|
|
1718
|
+
fecha_concertacion: date | None = date.today(),
|
|
1719
1719
|
observacion: str = None,
|
|
1720
1720
|
cod_usuario: int = None,
|
|
1721
1721
|
id_usuario: str = None,
|
|
@@ -1763,7 +1763,7 @@ class EscoAPI:
|
|
|
1763
1763
|
"importe": importe,
|
|
1764
1764
|
"cuenta": cuenta,
|
|
1765
1765
|
"moneda": moneda,
|
|
1766
|
-
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d"),
|
|
1766
|
+
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d") if fecha_concertacion else None,
|
|
1767
1767
|
"plazo": plazo,
|
|
1768
1768
|
"observacion": observacion,
|
|
1769
1769
|
"codUsuario": cod_usuario,
|
|
@@ -1894,8 +1894,8 @@ class EscoAPI:
|
|
|
1894
1894
|
moneda: str,
|
|
1895
1895
|
importe: decimal,
|
|
1896
1896
|
cuenta_contable: int,
|
|
1897
|
-
fecha_concertacion: date = date.today(),
|
|
1898
|
-
fecha_liquidacion: date =
|
|
1897
|
+
fecha_concertacion: date | None = date.today(),
|
|
1898
|
+
fecha_liquidacion: date | None = None,
|
|
1899
1899
|
tp_cambio_mov_pais: int = 1,
|
|
1900
1900
|
cuenta_bancaria_comitente: int = None,
|
|
1901
1901
|
controla_saldo_monetario: bool = True,
|
|
@@ -1927,8 +1927,8 @@ class EscoAPI:
|
|
|
1927
1927
|
req_body = {
|
|
1928
1928
|
"cuenta": cuenta,
|
|
1929
1929
|
"moneda": moneda,
|
|
1930
|
-
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d"),
|
|
1931
|
-
"fechaLiquidacion": fecha_liquidacion.strftime("%Y-%m-%d"),
|
|
1930
|
+
"fechaConcertacion": fecha_concertacion.strftime("%Y-%m-%d") if fecha_concertacion else None,
|
|
1931
|
+
"fechaLiquidacion": fecha_liquidacion.strftime("%Y-%m-%d") if fecha_liquidacion else None,
|
|
1932
1932
|
"importe": importe,
|
|
1933
1933
|
"tpCambioMovPais": tp_cambio_mov_pais,
|
|
1934
1934
|
"cuentaContable": cuenta_contable,
|
|
@@ -1989,7 +1989,7 @@ class EscoAPI:
|
|
|
1989
1989
|
"""
|
|
1990
1990
|
self.__pre_connection()
|
|
1991
1991
|
return self.__make_request(
|
|
1992
|
-
request_endpoint="/get-
|
|
1992
|
+
request_endpoint="/get-grupos-aranceles-bursatiles",
|
|
1993
1993
|
request_body={},
|
|
1994
1994
|
request_method=HTTPMethod.GET
|
|
1995
1995
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|