11 lines
467 B
JavaScript
11 lines
467 B
JavaScript
|
|
document.addEventListener('DOMContentLoaded', function() {
|
||
|
|
// Configurar clique nos itens da lista de pagamentos
|
||
|
|
document.querySelectorAll('.list-group-item[onclick*="carregarDadosPagamento"]').forEach(item => {
|
||
|
|
item.addEventListener('click', function(e) {
|
||
|
|
const pagamentoId = this.getAttribute('data-pagamento-id');
|
||
|
|
if (pagamentoId) {
|
||
|
|
carregarDadosPagamento(pagamentoId);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|