feat: add valor comanda a conta do cliente

This commit is contained in:
2025-01-16 16:31:13 -03:00
parent cf73dba143
commit b403e5fc72
8 changed files with 55 additions and 25 deletions

View File

@@ -34,6 +34,18 @@ function modal_payment_comanda() {
recebido.focus()
}
function modal_conta_client() {
document.getElementById('conta-cliente').style.display = 'block';
// recebido = document.getElementById('recebido')
// recebido.focus()
}
function close_modal_conta_client() {
document.getElementById('conta-cliente').style.display = 'none';
}
function close_modal_payment_comanda() {
document.getElementById('payment-comanda').style.display = 'none';
}