mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
empezando modificaciones
This commit is contained in:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user