fix: visualizzazione avviso uscita dalla pagina
This commit is contained in:
parent
1fedf27dcf
commit
3a3b28349d
|
@ -524,9 +524,6 @@ if ($read_only || !empty($block_edit)) {
|
||||||
|
|
||||||
var content_was_modified = false;
|
var content_was_modified = false;
|
||||||
|
|
||||||
// Forzatura per annullare il cambio da eventi subito dopo il caricamento iniziale
|
|
||||||
setTimeout(function() { content_was_modified = false; }, 1000);
|
|
||||||
|
|
||||||
// Controllo se digito qualche valore o cambio qualche select
|
// Controllo se digito qualche valore o cambio qualche select
|
||||||
$(".content input, .content textarea, .content select").bind("change paste keyup", function(event) {
|
$(".content input, .content textarea, .content select").bind("change paste keyup", function(event) {
|
||||||
if (event.keyCode >= 32) {
|
if (event.keyCode >= 32) {
|
||||||
|
|
|
@ -481,6 +481,7 @@ $(document).ready(function() {
|
||||||
$("#barcode").focus();
|
$("#barcode").focus();
|
||||||
|
|
||||||
caricaRighe(null);
|
caricaRighe(null);
|
||||||
|
content_was_modified = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#idanagrafica_c").change(function() {
|
$("#idanagrafica_c").change(function() {
|
||||||
|
|
|
@ -597,6 +597,7 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#barcode").focus();
|
$("#barcode").focus();
|
||||||
|
content_was_modified = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#idanagrafica").change(function() {
|
$("#idanagrafica").change(function() {
|
||||||
|
|
|
@ -1215,6 +1215,8 @@ if ($dir == 'entrata') {
|
||||||
});
|
});
|
||||||
|
|
||||||
bolloAutomatico();
|
bolloAutomatico();
|
||||||
|
content_was_modified = false;
|
||||||
|
|
||||||
});
|
});
|
||||||
input("bollo_automatico").change(function () {
|
input("bollo_automatico").change(function () {
|
||||||
bolloAutomatico();
|
bolloAutomatico();
|
||||||
|
|
|
@ -566,6 +566,7 @@ echo '
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#barcode").focus();
|
$("#barcode").focus();
|
||||||
|
content_was_modified = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
var anagrafica = input("idanagrafica");
|
var anagrafica = input("idanagrafica");
|
||||||
|
|
|
@ -413,6 +413,7 @@ $(document).ready(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#barcode").focus();
|
$("#barcode").focus();
|
||||||
|
content_was_modified = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
async function salvaArticolo() {
|
async function salvaArticolo() {
|
||||||
|
|
Loading…
Reference in New Issue