pyEscoAPI 0.0.37__tar.gz → 0.0.38__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.37 → pyescoapi-0.0.38}/PKG-INFO +2 -2
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyEscoAPI/esco_api.py +8 -2
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyEscoAPI.egg-info/PKG-INFO +2 -2
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyproject.toml +1 -1
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/README.md +0 -0
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyEscoAPI/__init__.py +0 -0
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyEscoAPI/dataclasses.py +0 -0
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyEscoAPI/exception.py +0 -0
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyEscoAPI.egg-info/SOURCES.txt +0 -0
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyEscoAPI.egg-info/dependency_links.txt +0 -0
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyEscoAPI.egg-info/requires.txt +0 -0
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/pyEscoAPI.egg-info/top_level.txt +0 -0
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/setup.cfg +0 -0
- {pyescoapi-0.0.37 → pyescoapi-0.0.38}/tests/test_client.py +0 -0
|
@@ -1178,7 +1178,8 @@ class EscoAPI:
|
|
|
1178
1178
|
fecha_hasta: datetime = None,
|
|
1179
1179
|
por_concertacion: bool = True,
|
|
1180
1180
|
es_consolidado: bool = True,
|
|
1181
|
-
incluye_anulados: bool = True
|
|
1181
|
+
incluye_anulados: bool = True,
|
|
1182
|
+
moneda: str = None
|
|
1182
1183
|
):
|
|
1183
1184
|
"""
|
|
1184
1185
|
Es una consulta de todos los boletos generados en VBolsa. Solo se muestran boletos vigentes, no se
|
|
@@ -1201,7 +1202,8 @@ class EscoAPI:
|
|
|
1201
1202
|
"fechaHasta": fecha_hasta.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
|
|
1202
1203
|
"porConcertacion": por_concertacion,
|
|
1203
1204
|
"esConsolidado": es_consolidado,
|
|
1204
|
-
"incluyeAnulados": incluye_anulados
|
|
1205
|
+
"incluyeAnulados": incluye_anulados,
|
|
1206
|
+
"moneda": moneda
|
|
1205
1207
|
}
|
|
1206
1208
|
self.__pre_connection()
|
|
1207
1209
|
return self.__make_request(
|
|
@@ -1217,6 +1219,8 @@ class EscoAPI:
|
|
|
1217
1219
|
fecha_hasta: datetime = None,
|
|
1218
1220
|
por_concertacion: bool = True,
|
|
1219
1221
|
es_consolidado: bool = True,
|
|
1222
|
+
moneda: str = None,
|
|
1223
|
+
tp_tesoreria_mov: str = None
|
|
1220
1224
|
):
|
|
1221
1225
|
"""
|
|
1222
1226
|
Devuelve los recibos de comprobantes generados en VBolsa.
|
|
@@ -1237,6 +1241,8 @@ class EscoAPI:
|
|
|
1237
1241
|
"fechaHasta": fecha_hasta.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
|
|
1238
1242
|
"porConcertacion": por_concertacion,
|
|
1239
1243
|
"esConsolidado": es_consolidado,
|
|
1244
|
+
"moneda": moneda,
|
|
1245
|
+
"tpTesoreriaMov": tp_tesoreria_mov
|
|
1240
1246
|
}
|
|
1241
1247
|
self.__pre_connection()
|
|
1242
1248
|
return self.__make_request(
|
|
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
|