pyEscoAPI 0.0.23__tar.gz → 0.0.24__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.23 → pyescoapi-0.0.24}/PKG-INFO +1 -1
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyEscoAPI/esco_api.py +12 -0
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyEscoAPI.egg-info/PKG-INFO +1 -1
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyproject.toml +1 -1
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/tests/test_client.py +6 -1
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/README.md +0 -0
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyEscoAPI/__init__.py +0 -0
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyEscoAPI/dataclasses.py +0 -0
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyEscoAPI/exception.py +0 -0
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyEscoAPI.egg-info/SOURCES.txt +0 -0
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyEscoAPI.egg-info/dependency_links.txt +0 -0
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyEscoAPI.egg-info/requires.txt +0 -0
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/pyEscoAPI.egg-info/top_level.txt +0 -0
- {pyescoapi-0.0.23 → pyescoapi-0.0.24}/setup.cfg +0 -0
|
@@ -1959,3 +1959,15 @@ class EscoAPI:
|
|
|
1959
1959
|
request_body={},
|
|
1960
1960
|
request_method=HTTPMethod.GET
|
|
1961
1961
|
)
|
|
1962
|
+
|
|
1963
|
+
def get_cuentas_bancarias_comitente(self, cuenta: str):
|
|
1964
|
+
"""
|
|
1965
|
+
Devuelve las cuentas bancarias asociadas a una cuenta comitente.
|
|
1966
|
+
:param cuenta: Cuenta comitente a la pertenecen las cuentas bancarias a buscar.
|
|
1967
|
+
"""
|
|
1968
|
+
self.__pre_connection()
|
|
1969
|
+
return self.__make_request(
|
|
1970
|
+
request_endpoint=f"/get-cuentas-bancarias-comitente?cuenta={cuenta}",
|
|
1971
|
+
request_body={},
|
|
1972
|
+
request_method=HTTPMethod.GET
|
|
1973
|
+
)
|
|
@@ -310,4 +310,9 @@ def test_insert_ejecucion_orden(api_client):
|
|
|
310
310
|
precio = 100,
|
|
311
311
|
num_ejecucion=1
|
|
312
312
|
)
|
|
313
|
-
assert "codOperacion" in result
|
|
313
|
+
assert "codOperacion" in result
|
|
314
|
+
|
|
315
|
+
def test_get_cuentas_bancarias_comitente(api_client):
|
|
316
|
+
result = api_client.get_cuentas_bancarias_comitente(cuenta="172998")
|
|
317
|
+
assert isinstance(result, list)
|
|
318
|
+
assert "cuit" in result[0]
|
|
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
|