Feat: Export Ventas Para Tryton

This commit is contained in:
2024-09-07 14:58:11 -05:00
parent b81d95a9ba
commit a83cd970e6
7 changed files with 143 additions and 13 deletions

View File

@@ -10,6 +10,9 @@ urlpatterns = [
path("productos", views.products, name="products"),
path("lista_productos", views.ProductListView.as_view(), name='product_list'),
path("importar_productos", views.import_products, name="import_products"),
path("exportar_ventas_para_tryton",
views.exportar_ventas_para_tryton,
name="exportar_ventas_para_tryton"),
path("cuadrar_tarro", views.reconciliate_jar, name="reconciliate_jar"),
path("cuadres", views.reconciliate_jar, name="reconciliations"),
path("resumen_compra/<int:id>", views.purchase_summary, name="purchase_summary"),