#9 feat(Tryton): create products from tryton.

This commit is contained in:
2025-07-27 22:57:44 -05:00
parent 3a5e13624f
commit 76e525735d
3 changed files with 134 additions and 0 deletions

View File

@@ -20,6 +20,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('api/importar_productos_de_tryton',
api_views.ProductsFromTrytonView.as_view(),
name="products_from_tryton"),
path("importar_terceros", views.import_customers, name="import_customers"),
path("exportar_ventas_para_tryton",
views.exportar_ventas_para_tryton,