feat: pagamento

This commit is contained in:
2024-12-20 16:47:45 -03:00
parent 859393406d
commit 2bb17b6e77
16 changed files with 153 additions and 9 deletions

View File

@@ -20,6 +20,8 @@ htmx_urlpatterns = [
path('addProduct<int:product_id>/<int:comanda_id>/', htmx_views.addProduct, name='addProduct'),
path('removeProductComanda<int:productComanda_id>/', htmx_views.removeProductComanda, name='removeProductComanda'),
path('closeComanda<int:comanda_id>/', htmx_views.closeComanda, name='closeComanda'),
path('reopenComanda<int:comanda_id>/', htmx_views.reopenComanda, name='reopenComanda'),
path('paymentComanda<int:comanda_id>/', htmx_views.paymentComanda, name='paymentComanda'),
]
urlpatterns += htmx_urlpatterns