fix(api): remove SaleWithLinesViewSet.

This commit is contained in:
2024-09-08 22:33:41 -05:00
parent 5adf9a9ce7
commit 19a618a671
4 changed files with 6 additions and 25 deletions

View File

@@ -22,6 +22,5 @@ urlpatterns = [
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"),
path('api/sales_with_lines/', api_views.SaleWithLinesViewSet.as_view({'post': 'create'}), name='sale-create'),
path('api/', include(router.urls)),
]