File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff 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
181191if __name__ == "__main__" :
182192 main ()
You can’t perform that action at this time.
0 commit comments