mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-01-13 08:58:48 +00:00
trabajando en guardar presupuestos publicos
This commit is contained in:
@ -73,4 +73,11 @@ spring.mail.properties.mail.smtp.starttls.enable=true
|
||||
#
|
||||
# Remove JSESSIONID from URL
|
||||
#
|
||||
server.servlet.session.persistent=false
|
||||
server.servlet.session.persistent=false
|
||||
|
||||
#
|
||||
# GeoIP
|
||||
#
|
||||
geoip.enabled=true
|
||||
geoip.maxmind.enabled=true
|
||||
geoip.http.enabled=true
|
||||
|
||||
BIN
src/main/resources/geoip/GeoLite2-City.mmdb
Normal file
BIN
src/main/resources/geoip/GeoLite2-City.mmdb
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 59 MiB |
@ -1418,6 +1418,11 @@ class PresupuestoCliente {
|
||||
data: JSON.stringify(body)
|
||||
}).then((data) => {
|
||||
$('#resumen-titulo').text(data.titulo);
|
||||
if (resumen.presupuesto_id) {
|
||||
window.PRESUPUESTO_ID = resumen.presupuesto_id;
|
||||
}
|
||||
body.presupuesto.id = window.PRESUPUESTO_ID || body.presupuesto.id || null;
|
||||
|
||||
this.#updateResumenTable(data);
|
||||
}).catch((error) => {
|
||||
console.error("Error obtener resumen: ", error);
|
||||
|
||||
Reference in New Issue
Block a user