2025-04-04 13:02:23 -03:00
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
2025-04-22 18:11:32 -03:00
|
|
|
// Configurar clique nos itens da lista de comprovantes
|
|
|
|
|
document.querySelectorAll('.list-group-item[onclick*="carregarDadosComprovante"]').forEach(item => {
|
2025-04-04 13:02:23 -03:00
|
|
|
item.addEventListener('click', function(e) {
|
2025-04-22 18:11:32 -03:00
|
|
|
const comprovanteId = this.getAttribute('data-comprovante-id');
|
|
|
|
|
if (comprovanteId) {
|
|
|
|
|
carregarDadosComprovante(comprovanteId);
|
2025-04-04 13:02:23 -03:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|