mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 13:35:42 +00:00
style e verificaçao: display flex para os botoes da viewComandas | verificação para apagar produto da comanda
This commit is contained in:
Binary file not shown.
@@ -102,6 +102,7 @@ def removeProductComanda(request, productComanda_id):
|
||||
}
|
||||
product_comanda = ProductComanda.objects.get(id=productComanda_id)
|
||||
comanda = Comanda.objects.get(id= product_comanda.comanda.id)
|
||||
if comanda.status == 'OPEN':
|
||||
parcial = Payments.objects.filter(comanda=comanda)
|
||||
consumo = ProductComanda.objects.filter(comanda=comanda)
|
||||
valores = somar(consumo,comanda)
|
||||
@@ -122,7 +123,8 @@ def removeProductComanda(request, productComanda_id):
|
||||
product_comanda.delete()
|
||||
|
||||
return render(request, "htmx_components/comandas/htmx_list_products_in_comanda.html",{'config':config, 'valores': valores,'parcials':parcial,'consumo': consumo, 'comanda':comanda})
|
||||
|
||||
else:
|
||||
pass
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ Detalhes {{comanda.name}}
|
||||
<body>
|
||||
<input hidden id="id-temp" type="number">
|
||||
<div class="grid-container" >
|
||||
<div>
|
||||
<div style="display: flex;padding: 5px;gap:8px">
|
||||
<button class="btn-primary" id="openModal" onclick="openModal()" popovertarget="addProduct"
|
||||
{% if comanda.status != 'OPEN'%}
|
||||
disabled
|
||||
@@ -38,6 +38,11 @@ Detalhes {{comanda.name}}
|
||||
<button class="btn-secondary" id="pagarComanda"
|
||||
onclick="modal_payment_comanda()"
|
||||
>Receber</button>
|
||||
|
||||
<button class="btn-primary" id="printComanda"
|
||||
style="display: flex;"
|
||||
onclick="imprimirConta()"
|
||||
>Imprimir Conta</button>
|
||||
{% else %}
|
||||
|
||||
<button class="btn-secondary" id="pagarComanda"
|
||||
@@ -45,12 +50,12 @@ Detalhes {{comanda.name}}
|
||||
style="display: none;"
|
||||
>Receber</button>
|
||||
|
||||
|
||||
{% endif %}
|
||||
|
||||
<button class="btn-primary" id="printComanda"
|
||||
style="display: none;"
|
||||
onclick="imprimirConta()">Imprimir Conta</button>
|
||||
onclick="imprimirConta()"
|
||||
>Imprimir Conta</button>
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% if user|groupUser:"Gerente" %}
|
||||
<button class="btn-primary" id="reOpenComanda" hx-get="{% url 'reopenComanda' comanda.id %} " hx-trigger="click" hx-swap="none" onclick="reloadPage()"
|
||||
|
||||
Binary file not shown.
@@ -208,11 +208,11 @@ function closeConta(id){
|
||||
.then(response => response.json())
|
||||
.then(data => {
|
||||
if(data.status == 'ok'){
|
||||
buttonPrintComanda.style.display = 'block'
|
||||
buttonPrintComanda.style.display = 'flex'
|
||||
buttonClose.style.display = 'none'
|
||||
buttonAdd.style.display = 'none'
|
||||
buttonreOpenComanda.style.display = 'block'
|
||||
buttonPayment.style.display = 'block'
|
||||
buttonreOpenComanda.style.display = 'flex'
|
||||
buttonPayment.style.display = 'flex'
|
||||
showToast('✅Comanda encerrada!😁','success')
|
||||
imprimirConta()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user