empezando modificaciones

This commit is contained in:
2025-04-03 23:36:12 +02:00
parent 5d4cc98a91
commit 6208839a12
3 changed files with 103 additions and 42 deletions

View File

@ -82,6 +82,10 @@ class PresupuestoAdminEdit {
// Autonumeric
AutoNumeric.multiple('.autonumeric-currency', { decimalPlaces: 2, currencySymbol: '€', currencySymbolPlacement: 's', digitGroupSeparator: '.', decimalCharacter: ',' });
$('#total_aceptado_revisado').on('change', function () {
AutoNumeric.getAutoNumericElement(this).set(this.value);
});
const impresion_id = $('#tipo_impresion_id').val();
let tipoLibro = '';
@ -375,6 +379,9 @@ class PresupuestoAdminEdit {
self.tipo_impresion.val(response.data.tipo_impresion);
self.POD.val(response.data.POD);
$('#total_aceptado_revisado').val(response.data.total_aceptado_revisado);
$('#aprobado_by_at').html(response.data.aprobado_by_at);
$('#created_by').html(response.data.created_by);
$('#updated_by').html(response.data.updated_by);
$('#created_at').html(response.data.created_at);