Skip to content

Commit 1d29ca6

Browse files
committed
samples updated
1 parent f2c338c commit 1d29ca6

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

examples.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,20 @@ def main ():
173173

174174
# buscar en un catalogo por nombre y texto de busqueda
175175
# obtiene los registros del catalogo de formas de pago (SatPaymentForms) que contengan la palabra "tarjeta"
176-
api_response = client.catalogs.search_catalog("SatPaymentForms", "tarjeta")
176+
# api_response = client.catalogs.search_catalog("SatPaymentForms", "tarjeta")
177177

178-
print(api_response)
178+
# print(api_response)
179+
180+
181+
# Listar facturas
182+
#api_response = client.invoices.get_list(1, 2)
179183

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)
180190

181191
if __name__ == "__main__":
182192
main()

0 commit comments

Comments
 (0)