There was an error while loading. Please reload this page.
1 parent f2c338c commit 1d29ca6Copy full SHA for 1d29ca6
1 file changed
examples.py
@@ -173,10 +173,20 @@ def main ():
173
174
# buscar en un catalogo por nombre y texto de busqueda
175
# obtiene los registros del catalogo de formas de pago (SatPaymentForms) que contengan la palabra "tarjeta"
176
- api_response = client.catalogs.search_catalog("SatPaymentForms", "tarjeta")
+ # api_response = client.catalogs.search_catalog("SatPaymentForms", "tarjeta")
177
178
- print(api_response)
+ # print(api_response)
179
+
180
181
+ # Listar facturas
182
+ #api_response = client.invoices.get_list(1, 2)
183
184
+ # Obtener factura por id
185
+ #api_response = client.invoices.get_by_id("05341ec6-538d-4d92-938e-acc9b33da47e",True)
186
187
+ # Crear factura
188
189
+ #print(api_response)
190
191
if __name__ == "__main__":
192
main()
0 commit comments