create comanda | detalhe comanda

This commit is contained in:
2024-12-12 21:33:04 -03:00
parent 2f84ca97c3
commit a3bb7bb674
15 changed files with 284 additions and 21 deletions

View File

@@ -2,7 +2,7 @@ from django.contrib import admin
from categories.models import Categories
from clients.models import Client
from comandas.models import Comanda
from comandas.models import Comanda, ProductComanda
from typePay.models import TypePay
from products.models import Product
from mesas.models import Mesa
@@ -14,5 +14,6 @@ admin.site.register(Categories)
admin.site.register(Client)
admin.site.register(Comanda)
admin.site.register(TypePay)
admin.site.register(ProductComanda)
# Register your models here.