feedback pagamento de multiplas comandas

This commit is contained in:
2025-06-25 11:18:39 -03:00
parent 179342ff80
commit b73e134d9e
8 changed files with 37 additions and 26 deletions

View File

@@ -174,4 +174,16 @@ function openFullscreen() {
setTimeout(() => {
toast.classList.remove('show');
}, duration);
}
}
function feedback(message, status, subMessage) {
var feedbackMsg = Swal.fire({
title: message,
text: subMessage || '',
icon: status,
background: 'rgba(8, 9, 10, 0.75)',
confirmButtonColor: 'linear-gradient(145deg, #1E2A3B, #2C3E50)',
});
return feedbackMsg;
}