style e verificaçao: display flex para os botoes da viewComandas | verificação para apagar produto da comanda

This commit is contained in:
2025-03-28 14:28:35 -03:00
parent ac2a0283d0
commit b35fc39a60
5 changed files with 35 additions and 28 deletions

View File

@@ -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()
}