54 lines
No EOL
1.4 KiB
JavaScript
54 lines
No EOL
1.4 KiB
JavaScript
// JavaScript Document
|
|
|
|
/***********************************************/
|
|
/***********************************************/
|
|
/* MOSTRA DETTAGLIO PEZZE su popup */
|
|
/***********************************************/
|
|
/***********************************************/
|
|
function mostraPezze(l_id) {
|
|
|
|
|
|
$(".pezze-body").load("../lav/LavTessitura.abl?cmd=dettaglioPezze&id_documento=" + l_id);
|
|
|
|
|
|
$("#modalPezze").modal("show");
|
|
|
|
/*
|
|
$( "#dettaglioWin" ).dialog("option", "title", "Dettaglio Articolo Varianti");
|
|
$("#dettaglioWin").load("Articolo.abl?cmd=viewM&id_articolo="+l_id);
|
|
$("#dettaglioWin").dialog("open");
|
|
*/
|
|
}
|
|
|
|
/***********************************************/
|
|
/***********************************************/
|
|
/* dettaglio documento se unico....*/
|
|
/***********************************************/
|
|
/***********************************************/
|
|
function mostraDocumento(id) {
|
|
//FACCIO IL SUBMIT
|
|
var f = document.main;
|
|
f.action = "../contab/Documento.abl";
|
|
f.cmd.value = "md";
|
|
f.id_documento.value = id;
|
|
Ab.submitAj('main');
|
|
}
|
|
|
|
/***********************************************/
|
|
/***********************************************/
|
|
// mostra documento che nasconde la modal
|
|
/***********************************************/
|
|
/***********************************************/
|
|
function mostraDocumentoDaModalPezze(id) {
|
|
|
|
$("#modalPezze").modal("hide");
|
|
setTimeout(function () {
|
|
{
|
|
mostraDocumento(id);
|
|
|
|
}
|
|
|
|
}, 500);
|
|
|
|
|
|
} |