Compare commits

..

2 Commits

Author SHA1 Message Date
root 52bec03988 fix: botao Editar na tabela agora pede senha antes de abrir
Build Fechamento de Caixa / build (macos-14, app) (push) Has been cancelled
Build Fechamento de Caixa / build (ubuntu-22.04, deb) (push) Has been cancelled
Build Fechamento de Caixa / build (windows-2022, msi) (push) Has been cancelled
2026-07-02 20:07:05 +00:00
root 9639048bf7 fix: askPassword aceita config.dynamic_password
Build Fechamento de Caixa / build (macos-14, app) (push) Has been cancelled
Build Fechamento de Caixa / build (ubuntu-22.04, deb) (push) Has been cancelled
Build Fechamento de Caixa / build (windows-2022, msi) (push) Has been cancelled
2026-07-02 19:38:33 +00:00
+2 -1
View File
@@ -2366,6 +2366,7 @@ window.abrirEditaFechamentoIndex = async function(idx) {
} }
closeConsultaModal(); closeConsultaModal();
if (!await askPassword()) return;
window.abrirEditaFechamento(full); window.abrirEditaFechamento(full);
}; };
@@ -2694,7 +2695,7 @@ function askPassword() {
inp.addEventListener('keydown', e => { if (e.key === 'Enter') document.getElementById('pw-ok-btn').click(); }); inp.addEventListener('keydown', e => { if (e.key === 'Enter') document.getElementById('pw-ok-btn').click(); });
document.getElementById('pw-ok-btn').addEventListener('click', () => { document.getElementById('pw-ok-btn').addEventListener('click', () => {
const val = document.getElementById('pw-input').value; const val = document.getElementById('pw-input').value;
if (val === fixedPw || val === dynPw) { if (val === fixedPw || val === dynPw || val === config.dynamic_password) {
document.getElementById('pw-modal').remove(); document.getElementById('pw-modal').remove();
resolve(true); resolve(true);
} else { } else {