trabajando en el wizard del presupuesto

This commit is contained in:
2025-10-09 15:40:42 +02:00
parent 2b53579a48
commit 328ff509e3
9 changed files with 173 additions and 26 deletions

View File

@ -66,6 +66,13 @@
],
});
$('#presupuestos-anonimos-datatable').on('click', '.btn-edit-anonimo', function (e) {
e.preventDefault();
const id = $(this).data('id');
if (id) {
window.location.href = '/presupuesto/view/' + id;
}
});
})();