Merge branch 'release/AddPodlWithOdlDisplay'

This commit is contained in:
Samuele Locatelli
2023-03-17 17:00:29 +01:00
18 changed files with 744 additions and 497 deletions
+2 -2
View File
@@ -101,12 +101,12 @@
</ItemTemplate>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:TemplateField>
<asp:TemplateField HeaderText="#" SortExpression="IdxPromessa">
<asp:TemplateField HeaderText="PODL" SortExpression="IdxPromessa" HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:Label runat="server" ID="txtIdxPromessa" Text='<%# Eval("IdxPromessa") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="ODL" SortExpression="IdxOdl">
<asp:TemplateField HeaderText="ODL" SortExpression="IdxOdl" HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:Label runat="server" ID="txtIdxOdl" Text='<%# Eval("IdxOdl") %>' />
</ItemTemplate>
+5 -7
View File
@@ -73,8 +73,6 @@ namespace MP_IO.Controllers
KeyValuePair<string, string>[] valori = new KeyValuePair<string, string>[2];
try
{
// recupero tutti i record della tabella
// salvo il datasetet come insieme di hash in redis...
for (int i = 0; i < id; i++)
{
@@ -133,7 +131,7 @@ namespace MP_IO.Controllers
// ritorno
return answ;
}
// GET BENCH/DTMAC/2004
// GET BENCH/DTMAC/SIMUL_01
public string DTMAC(string id)
{
string answ = "ND";
@@ -166,15 +164,15 @@ namespace MP_IO.Controllers
// ritorno
return answ;
}
// GET BENCH/CNTKEY/KEY_NAME
// GET BENCH/CNTKEY/test
public string CNTKEY(string id)
{
string answ = "ND";
if (id == null) id = "";
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
// conto quanti oggetti DTMac ho in memoria...
string groupHash = DataLayer.mHash("");
// conto quanti oggetti ho in memoria REDIS...
string groupHash = ""; // DataLayer.mHash("");
if (id.Length > 0)
{
groupHash += id + ":";
@@ -189,7 +187,7 @@ namespace MP_IO.Controllers
// ritorno
return answ;
}
// GET BENCH/tSMI/1
// GET BENCH/tSMI/60
public string tSMI(int? id)
{
string answ = "ND";
+64 -1
View File
@@ -135,6 +135,38 @@ namespace MP_IO.Controllers
return answ;
}
/// <summary>
/// Chiude PODL --&gt; ODL x macchina:
///
/// GET: IOB/closePODL/SIMUL_03?idxPOdl=123
/// </summary>
/// <param name="id">id macchina</param>
/// <param name="idxOdl">idx dell'ODL da chiudere</param>
/// <returns>bool esecuzione</returns>
public bool closePODL(string id, int idxPOdl)
{
bool answ = false;
// init obj DataLayer
DataLayer DataLayerObj = new DataLayer();
try
{
//cerco PODL e se questo ha un ODL associato...
var tabPodl = DataLayerObj.taPODL.getByKey(idxPOdl);
// se trovato...
if (tabPodl != null && tabPodl.Rows.Count > 0)
{
int idxOdl = tabPodl[0].IdxODL;
// chiamata diretta sul DB...
DataLayerObj.taODL.forceClose(idxOdl, id);
answ = true;
}
}
catch
{ }
return answ;
}
// GET: IOB/enabled/SIMUL_03
public string enabled(string id)
{
@@ -759,7 +791,7 @@ namespace MP_IO.Controllers
}
/// <summary>
/// Recupera DATI PODL correnti x macchina:
/// Recupera DATI PODL correnti (=NON AVVIATI) x macchina:
///
/// GET: IOB/getCurrPODL/SIMUL_03
/// </summary>
@@ -1255,6 +1287,37 @@ namespace MP_IO.Controllers
return answ;
}
/// <summary>
/// Recupera DATI PODL x macchina e codice PODL:
///
/// GET: IOB/getPODL/SIMUL_03?idxPODL=123
/// </summary>
/// <param name="id"></param>
/// <param name="idxPODL">idx del PDL da avviare</param>
/// <returns>Json contenente lista oggetti PODL serializzati</returns>
public string getPODL(string id, int idxPODL)
{
// attenzione! poiché nell'URL il carattere "#" viene filtrato ci aspettiamo il
// carattere "|" che poi trasformiamo ora in "#"
if (!string.IsNullOrEmpty(id))
{
id = id.Replace("|", "#");
}
string answ = "";
// init obj DataLayer
DataLayer DataLayerObj = new DataLayer();
try
{
// recupero dati da chaive, ignorando info macchina...
var elencoOdl = DataLayerObj.taPODL.getByKey(idxPODL);
answ = JsonConvert.SerializeObject(elencoOdl);
}
catch
{ }
return answ;
}
/// <summary>
/// Recupera TASK richiesto x macchina:
///
@@ -4,7 +4,14 @@
<div class="col-12 col-lg-6">
<div class="card">
<div class="card-header bg-dark text-light py-1">
<asp:Label runat="server" ID="lblOdl" Font-Bold="true" />
<div class="row">
<div class="col font-weight-bold">
<asp:Label runat="server" ID="lblOdl" />
</div>
<div class="col">
<asp:Label runat="server" ID="lblOdlPer" />
</div>
</div>
</div>
<div class="card-body py-1">
<div class="row table-secondary">
@@ -203,4 +210,4 @@
</div>
</div>
</div>
</div>
</div>
@@ -58,20 +58,29 @@ namespace MP_SITE.WebUserControls
/// <summary>
/// imposta le labels sezione "ODL"
/// </summary>
/// <param name="odl"></param>
/// <param name="dataFrom"></param>
private void setLabelsODL()
{
int odl = 0;
int idxOdl = 0;
int idxPOdl = 0;
DateTime dataFrom = DateTime.Now;
DateTime dataTo = DateTime.Now;
// label ODL
try
{
DS_ProdTempi.ODLRow rigaOdl = DataLayerObj.taODL.getByMacchina(idxMacchina)[0];
odl = rigaOdl.IdxODL;
idxOdl = rigaOdl.IdxODL;
if (idxOdl > 0)
{
var tabPOdl = DataLayerObj.taPODL.getByIdxOdl(idxOdl);
if (tabPOdl != null && tabPOdl.Rows.Count > 0)
{
idxPOdl = tabPOdl[0].idxPromessa;
}
}
dataFrom = rigaOdl.DataInizio;
lblOdl.Text = string.Format("ODL num: {0}, iniziato il {1:dd/MM/yy} alle {1:HH:mm}", odl, dataFrom);
lblOdl.Text = idxPOdl > 0 ? $"PODL{idxPOdl:00000000} | " : "[NO PODL] ";
lblOdl.Text += $"ODL{idxOdl:00000000}";
lblOdlPer.Text = $"start: {dataFrom:dd/MM/yy HH:mm}";
}
catch
{
@@ -23,6 +23,15 @@ namespace MP_SITE.WebUserControls
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblOdl;
/// <summary>
/// lblOdlPer control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblOdlPer;
/// <summary>
/// lblEfficienzaTot control.
/// </summary>
@@ -18,6 +18,14 @@
<asp:Label ID="valCodArticolo" runat="server" />
</div>
</div>
<div class="row">
<div class="col-6">
<asp:Label ID="valPODL" runat="server" />
</div>
<div class="col-6 text-right">
<asp:Label ID="valODL" runat="server" />
</div>
</div>
<div class="row">
<div class="col-3">
<asp:Label ID="lblProd" runat="server" />
@@ -235,6 +235,8 @@ namespace MP_SITE.WebUserControls
// leggo valori da MSE...
valMacchina.Text = tabMSE[0].Nome;
valCodArticolo.Text = tabMSE[0].CodArticolo;
valPODL.Text = tabMSE[0].idxPODL > 0 ? $"PODL{tabMSE[0].idxPODL:00000000}" : "PODL -";
valODL.Text = tabMSE[0].idxODL > 0 ? $"ODL{tabMSE[0].idxODL}" : "ODL -";
// carico ultimo stato che sia durato almeno 6 sec (0.1 min)
int idxStato = 0;
int oreTot = 0;
@@ -262,7 +264,7 @@ namespace MP_SITE.WebUserControls
// 2018.02.05 cambio x fix nuovi impianti
//valStato.Text = tabAnagStati.FindByIdxStato(idxStato).Descrizione;
valStato.Text = tabMSE[0].DescrizioneStato;
valDurata.Text = string.Format("{0}h {1}min", oreTot, minuti);
valDurata.Text = $"{oreTot}h {minuti:N2}min";
// solo se in stato NON di run...
if (idxStato != 13)
{
@@ -277,7 +279,7 @@ namespace MP_SITE.WebUserControls
{
// 2018.02.05 cambio x fix nuovi impianti
//cauFermo = string.Format("IN: {0}", tabStatoMacchine.FindByIdxMacchina(IdxMacchina).Value);
cauFermo = string.Format("IN: {0}", tabMSE[0].idxStato);
cauFermo = $"IN: {tabMSE[0].idxStato}";
}
valCausale.Text = cauFermo;
}
+105 -85
View File
@@ -1,185 +1,205 @@
//------------------------------------------------------------------------------
// <generato automaticamente>
// Codice generato da uno strumento.
// <auto-generated>
// This code was generated by a tool.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace MP_SITE.WebUserControls {
public partial class mod_statoMacchina {
namespace MP_SITE.WebUserControls
{
public partial class mod_statoMacchina
{
/// <summary>
/// Controllo pnlMacchina.
/// pnlMacchina control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Panel pnlMacchina;
/// <summary>
/// Controllo hfIdxMacchina.
/// hfIdxMacchina control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.HiddenField hfIdxMacchina;
/// <summary>
/// Controllo divData.
/// divData control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divData;
/// <summary>
/// Controllo valMacchina.
/// valMacchina control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton valMacchina;
/// <summary>
/// Controllo lnkMacchina.
/// lnkMacchina control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.LinkButton lnkMacchina;
/// <summary>
/// Controllo lblCodArticolo.
/// lblCodArticolo control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblCodArticolo;
/// <summary>
/// Controllo valCodArticolo.
/// valCodArticolo control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label valCodArticolo;
/// <summary>
/// Controllo lblProd.
/// valPODL control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label valPODL;
/// <summary>
/// valODL control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label valODL;
/// <summary>
/// lblProd control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblProd;
/// <summary>
/// Controllo valProd.
/// valProd control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label valProd;
/// <summary>
/// Controllo imgThumb.
/// imgThumb control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Image imgThumb;
/// <summary>
/// Controllo lblStato.
/// lblStato control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblStato;
/// <summary>
/// Controllo valStato.
/// valStato control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label valStato;
/// <summary>
/// Controllo lblDurata.
/// lblDurata control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblDurata;
/// <summary>
/// Controllo valDurata.
/// valDurata control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label valDurata;
/// <summary>
/// Controllo lblCausale.
/// lblCausale control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblCausale;
/// <summary>
/// Controllo valCausale.
/// valCausale control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label valCausale;
/// <summary>
/// Controllo divWarn.
/// divWarn control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divWarn;
/// <summary>
/// Controllo hlComWarning.
/// hlComWarning control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.HyperLink hlComWarning;
/// <summary>
/// Controllo divSegnaposto.
/// divSegnaposto control.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divSegnaposto;
}
+5 -4
View File
@@ -48,12 +48,13 @@ body .ui-overlay-c {
top: 0;
left: auto;
bottom: auto;
/* Custom styling. */
color: #c0c0c0;
background: #990099;
background: rgba(153, 0, 153, 0.8);
color: #FFFFFF;
background: #2200DE;
background: rgba(33, 0, 200, 0.7);
-webkit-border-top-right-radius: inherit;
border-top-right-radius: inherit;
-webkit-border-top-left-radius: inherit;
border-top-left-radius: inherit;
-webkit-border-bottom-left-radius: inherit;
border-bottom-left-radius: inherit;
-webkit-border-bottom-right-radius: 0;
+6 -4
View File
@@ -56,12 +56,14 @@ body .ui-body-a, body .ui-body-c, body .ui-overlay-c {
min-height: 0;
top: 0;
left: auto;
bottom: auto; /* Custom styling. */
color: #c0c0c0;
background: #990099;
background: rgba(153,0,153,.80);
bottom: auto;
color: #FFFFFF;
background: #2200DE;
background: rgba(33,0,200,.7);
-webkit-border-top-right-radius: inherit;
border-top-right-radius: inherit;
-webkit-border-top-left-radius: inherit;
border-top-left-radius: inherit;
-webkit-border-bottom-left-radius: inherit;
border-bottom-left-radius: inherit;
-webkit-border-bottom-right-radius: 0;
+1 -1
View File
@@ -1 +1 @@
body{font-family:'Open Sans',sans-serif;color:#fff;background-image:linear-gradient(#444,#222);}body .ui-body-a,body .ui-body-c,body .ui-overlay-c{text-shadow:0 0 0;}.bodyDark{color:#fff;background-image:linear-gradient(#444,#222);}.bg-black{color:#fff;background-image:linear-gradient(#111,#000);}.titleBlock{font-family:'Open Sans Condensed',sans-serif;}.textCondens{font-family:'Open Sans Condensed',sans-serif;}.mapBlock{font-family:'Open Sans Condensed',sans-serif;color:#fff;background-image:linear-gradient(#111,#000);min-width:8em;}.rCAll{border-radius:10px;}.rCTop{border-radius:10px 10px 0 0;}.rCBot{border-radius:0 0 10px 10px;}.labelTopDx{padding:.1em .4em;width:auto;min-height:0;top:0;left:auto;bottom:auto;color:#c0c0c0;background:#909;background:rgba(153,0,153,.8);-webkit-border-top-right-radius:inherit;border-top-right-radius:inherit;-webkit-border-bottom-left-radius:inherit;border-bottom-left-radius:inherit;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;}@media(max-width:576px){.modal-dialog.modal-dialog-slideout{width:70%;}}@media(max-width:600px){.modal-dialog.modal-dialog-slideout{width:65%;}}.modal-dialog-slideout{min-height:100%;margin:0 auto 0 0;background:#fff;}.modal.fade .modal-dialog.modal-dialog-slideout{-webkit-transform:translate(-100%,0);transform:translate(-100%,0);}.modal.fade.show .modal-dialog.modal-dialog-slideout{-webkit-transform:translate(0,0);transform:translate(0,0);flex-flow:column;}.modal-dialog-slideout .modal-content{border:0;}.switch{position:relative;display:inline-block;width:60px;height:34px;}.switch input{display:none;}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.4s;transition:.4s;}.slider:before{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:#fff;-webkit-transition:.4s;transition:.4s;}input:checked+.slider{background-color:#2196f3;}input:focus+.slider{box-shadow:0 0 1px #2196f3;}input:checked+.slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px);}.slider.round{border-radius:34px;}.slider.round:before{border-radius:50%;}.divSx{float:left;padding:0;margin:0;}.divDx{float:right;padding:0;margin:0;}.divCenter{float:none;text-align:center;padding:0;margin:0 auto 0 auto;}.clearDiv{clear:both;}.stdFont{color:#000;text-shadow:0 0 0 #111;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}.rowStyle{background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f1f1f1));background-image:-webkit-linear-gradient(#fff,#f1f1f1);background-image:-moz-linear-gradient(#fff,#f1f1f1);background-image:-ms-linear-gradient(#fff,#f1f1f1);background-image:-o-linear-gradient(#fff,#f1f1f1);background-image:linear-gradient(#fff,#f1f1f1);border:1px solid #cdcdcd;}.alternatingRowStyle{border:1px solid #cdcdcd;background-image:-webkit-gradient(linear,left top,left bottom,from(#ddf),to(#e1f1ff));background-image:-webkit-linear-gradient(#ddf,#e1f1ff);background-image:-moz-linear-gradient(#ddf,#e1f1ff);background-image:-ms-linear-gradient(#ddf,#e1f1ff);background-image:-o-linear-gradient(#ddf,#e1f1ff);background-image:linear-gradient(#ddf,#e1f1ff);}.sVe{text-align:left;background:#009036;background:rgba(0,255,80,.6);color:#ff0;}.sGi{text-align:left;background:#ffec00;background:rgba(255,220,0,.6);}.sRo{text-align:left;background-color:#e2001a;background:rgba(240,0,10,.6);}.sBl{text-align:left;background:#3690ff;background:rgba(0,80,255,.6);color:#ff0;}.sGr{text-align:left;background-color:#bcbcbc;background:rgba(180,180,180,.6);}
body{font-family:'Open Sans',sans-serif;color:#fff;background-image:linear-gradient(#444,#222);}body .ui-body-a,body .ui-body-c,body .ui-overlay-c{text-shadow:0 0 0;}.bodyDark{color:#fff;background-image:linear-gradient(#444,#222);}.bg-black{color:#fff;background-image:linear-gradient(#111,#000);}.titleBlock{font-family:'Open Sans Condensed',sans-serif;}.textCondens{font-family:'Open Sans Condensed',sans-serif;}.mapBlock{font-family:'Open Sans Condensed',sans-serif;color:#fff;background-image:linear-gradient(#111,#000);min-width:8em;}.rCAll{border-radius:10px;}.rCTop{border-radius:10px 10px 0 0;}.rCBot{border-radius:0 0 10px 10px;}.labelTopDx{padding:.1em .4em;width:auto;min-height:0;top:0;left:auto;bottom:auto;color:#fff;background:#2200de;background:rgba(33,0,200,.7);-webkit-border-top-right-radius:inherit;border-top-right-radius:inherit;-webkit-border-top-left-radius:inherit;border-top-left-radius:inherit;-webkit-border-bottom-left-radius:inherit;border-bottom-left-radius:inherit;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;}@media(max-width:576px){.modal-dialog.modal-dialog-slideout{width:70%;}}@media(max-width:600px){.modal-dialog.modal-dialog-slideout{width:65%;}}.modal-dialog-slideout{min-height:100%;margin:0 auto 0 0;background:#fff;}.modal.fade .modal-dialog.modal-dialog-slideout{-webkit-transform:translate(-100%,0);transform:translate(-100%,0);}.modal.fade.show .modal-dialog.modal-dialog-slideout{-webkit-transform:translate(0,0);transform:translate(0,0);flex-flow:column;}.modal-dialog-slideout .modal-content{border:0;}.switch{position:relative;display:inline-block;width:60px;height:34px;}.switch input{display:none;}.slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.4s;transition:.4s;}.slider:before{position:absolute;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:#fff;-webkit-transition:.4s;transition:.4s;}input:checked+.slider{background-color:#2196f3;}input:focus+.slider{box-shadow:0 0 1px #2196f3;}input:checked+.slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px);}.slider.round{border-radius:34px;}.slider.round:before{border-radius:50%;}.divSx{float:left;padding:0;margin:0;}.divDx{float:right;padding:0;margin:0;}.divCenter{float:none;text-align:center;padding:0;margin:0 auto 0 auto;}.clearDiv{clear:both;}.stdFont{color:#000;text-shadow:0 0 0 #111;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}.rowStyle{background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f1f1f1));background-image:-webkit-linear-gradient(#fff,#f1f1f1);background-image:-moz-linear-gradient(#fff,#f1f1f1);background-image:-ms-linear-gradient(#fff,#f1f1f1);background-image:-o-linear-gradient(#fff,#f1f1f1);background-image:linear-gradient(#fff,#f1f1f1);border:1px solid #cdcdcd;}.alternatingRowStyle{border:1px solid #cdcdcd;background-image:-webkit-gradient(linear,left top,left bottom,from(#ddf),to(#e1f1ff));background-image:-webkit-linear-gradient(#ddf,#e1f1ff);background-image:-moz-linear-gradient(#ddf,#e1f1ff);background-image:-ms-linear-gradient(#ddf,#e1f1ff);background-image:-o-linear-gradient(#ddf,#e1f1ff);background-image:linear-gradient(#ddf,#e1f1ff);}.sVe{text-align:left;background:#009036;background:rgba(0,255,80,.6);color:#ff0;}.sGi{text-align:left;background:#ffec00;background:rgba(255,220,0,.6);}.sRo{text-align:left;background-color:#e2001a;background:rgba(240,0,10,.6);}.sBl{text-align:left;background:#3690ff;background:rgba(0,80,255,.6);color:#ff0;}.sGr{text-align:left;background-color:#bcbcbc;background:rgba(180,180,180,.6);}
+3 -3
View File
@@ -15,13 +15,13 @@
<div class="card text-white mapBlock rCAll">
<div class='card <%# Eval("Semaforo") %> p-0 m-0 rCAll'>
<div class="row justify-content-center m-2 bg-black">
<div class="col-7 px-1">
<div class="col-4 px-1">
<b class="text-left">
<asp:Label runat="server" ID="lblTitle" Text='<%# Eval("Nome") %>' /></b>
</div>
<div class="col-5 px-1 labelTopDx small text-right">
<div class="col-8 px-1 labelTopDx small text-right">
<asp:Label runat="server" ID="lblBadge" Text='<%# Eval("CodArticolo","art: {0}") %>' />
<asp:Label runat="server" ID="lblODC" Text='<%# Eval("idxODL","ODL {0}") + " | " + keyRichiesta %>' />
<asp:Label runat="server" ID="lblODC" Text='<%# Eval("idxODL","ODL{0:00000000}") + " | " + Eval("idxPODL","PODL{0:00000000}") + " | " + keyRichiesta %>' />
</div>
<div class='col-12 px-1 <%# Eval("Semaforo") %>'>
<div class="d-flex justify-content-between">
+17 -3
View File
@@ -12,9 +12,23 @@
<img class="card-img bg-light rCTop" src='<%# ImgUrlMacc(Eval("url")) %>' alt='<%# Eval("CodMacchina") %>'>
<div class="m-1 bg-black rCAll">
<div class="card-img-overlay p-0 d-flex flex-row-reverse align-items-start rCTop">
<div class="labelTopDx text-right px-2">
<asp:Label runat="server" ID="lblBadge" Text='<%# Eval("CodArticolo","art: {0}") %>' />
<asp:Label runat="server" ID="lblODC" Text='<%# Eval("idxODL","(ODL {0})") %>' />
<div class="labelTopDx px-2 w-100">
<div class="row">
<div class="col-3 text-left">
Art
</div>
<div class="col-9 text-right font-weight-bold">
<asp:Label runat="server" ID="lblBadge" Text='<%# Eval("CodArticolo") %>' />
</div>
</div>
<div class="row small">
<div class="col-6 text-left">
<asp:Label runat="server" ID="lblPODL" Text='<%# Eval("idxPODL"," PODL{0:00000000}") %>' />
</div>
<div class="col-6 text-right">
<asp:Label runat="server" ID="lblODL" Text='<%# Eval("idxODL","ODL{0:00000000}") %>' />
</div>
</div>
</div>
</div>
<div class="card bg-black p-0 rCBot">
+73 -60
View File
@@ -255,7 +255,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_AutoDayGener" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="AutoDayGener" Modifier="Public" Name="AutoDayGener" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy18" UserSourceName="AutoDayGener">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_AutoDayGener" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="AutoDayGener" Modifier="Public" Name="AutoDayGener" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="AutoDayGener">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_AutoDayGener</CommandText>
@@ -269,7 +269,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_AutoStart" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="autoStart" Modifier="Public" Name="autoStart" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="autoStart">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_AutoStart" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="autoStart" Modifier="Public" Name="autoStart" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy2" UserSourceName="autoStart">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_AutoStart</CommandText>
@@ -288,7 +288,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_clearSetup" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="clearSetup" Modifier="Public" Name="clearSetup" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy2" UserSourceName="clearSetup">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_clearSetup" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="clearSetup" Modifier="Public" Name="clearSetup" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy3" UserSourceName="clearSetup">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_clearSetup</CommandText>
@@ -300,7 +300,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="DeleteQuery" Modifier="Public" Name="DeleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy3" UserSourceName="DeleteQuery">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="DeleteQuery" Modifier="Public" Name="DeleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy4" UserSourceName="DeleteQuery">
<DeleteCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_deleteQuery</CommandText>
@@ -311,7 +311,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</DeleteCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_dividiDaAltraTav" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="dividiDaAltraTav" Modifier="Public" Name="dividiDaAltraTav" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy4" UserSourceName="dividiDaAltraTav">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_dividiDaAltraTav" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="dividiDaAltraTav" Modifier="Public" Name="dividiDaAltraTav" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy5" UserSourceName="dividiDaAltraTav">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_dividiDaAltraTav</CommandText>
@@ -324,7 +324,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="Donati_MoonPro.dbo.stp_ODL_fineProd" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorGetMethodName="GetDataBy4" GeneratorSourceName="fineProd" Modifier="Public" Name="fineProd" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy5" UserSourceName="fineProd">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="Donati_MoonPro.dbo.stp_ODL_fineProd" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorGetMethodName="GetDataBy4" GeneratorSourceName="fineProd" Modifier="Public" Name="fineProd" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy6" UserSourceName="fineProd">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_fineProd</CommandText>
@@ -336,7 +336,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_fixMachineSlave" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="fixMachineSlave" Modifier="Public" Name="fixMachineSlave" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy6" UserSourceName="fixMachineSlave">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_fixMachineSlave" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="fixMachineSlave" Modifier="Public" Name="fixMachineSlave" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy7" UserSourceName="fixMachineSlave">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_fixMachineSlave</CommandText>
@@ -349,7 +349,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_forceClose" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="forceClose" Modifier="Public" Name="forceClose" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy7" UserSourceName="forceClose">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_forceClose" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="forceClose" Modifier="Public" Name="forceClose" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy8" UserSourceName="forceClose">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_forceClose</CommandText>
@@ -466,7 +466,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_inizioSetup" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="inizioSetup" Modifier="Public" Name="inizioSetup" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy8" UserSourceName="inizioSetup">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_inizioSetup" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="inizioSetup" Modifier="Public" Name="inizioSetup" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy9" UserSourceName="inizioSetup">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_inizioSetup</CommandText>
@@ -482,7 +482,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_inizioSetupPromessa" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="inizioSetupPromessa" Modifier="Public" Name="inizioSetupPromessa" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy9" UserSourceName="inizioSetupPromessa">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_inizioSetupPromessa" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="inizioSetupPromessa" Modifier="Public" Name="inizioSetupPromessa" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy10" UserSourceName="inizioSetupPromessa">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_inizioSetupPromessa</CommandText>
@@ -498,7 +498,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_inizioSetupPromessaPostuma" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="inizioSetupPromessaPostuma" Modifier="Public" Name="inizioSetupPromessaPostuma" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy10" UserSourceName="inizioSetupPromessaPostuma">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_inizioSetupPromessaPostuma" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="inizioSetupPromessaPostuma" Modifier="Public" Name="inizioSetupPromessaPostuma" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy11" UserSourceName="inizioSetupPromessaPostuma">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_inizioSetupPromessaPostuma</CommandText>
@@ -511,7 +511,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_insertProvv" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="insertProvv" Modifier="Public" Name="insertProvv" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy11" UserSourceName="insertProvv">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_insertProvv" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="insertProvv" Modifier="Public" Name="insertProvv" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy12" UserSourceName="insertProvv">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_insertProvv</CommandText>
@@ -527,7 +527,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="InsertQuery" Modifier="Public" Name="InsertQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy12" UserSourceName="InsertQuery">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="InsertQuery" Modifier="Public" Name="InsertQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy13" UserSourceName="InsertQuery">
<InsertCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_insertQuery</CommandText>
@@ -545,7 +545,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</InsertCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_insPostumo" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="insPostumo" Modifier="Public" Name="insPostumo" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy13" UserSourceName="insPostumo">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_insPostumo" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="insPostumo" Modifier="Public" Name="insPostumo" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy14" UserSourceName="insPostumo">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_insPostumo</CommandText>
@@ -568,7 +568,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_split" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="splitODL" Modifier="Public" Name="splitODL" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy14" UserSourceName="splitODL">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_split" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="splitODL" Modifier="Public" Name="splitODL" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy15" UserSourceName="splitODL">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_split</CommandText>
@@ -586,7 +586,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_updateQta" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="updateQta" Modifier="Public" Name="updateQta" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy15" UserSourceName="updateQta">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_updateQta" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="updateQta" Modifier="Public" Name="updateQta" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy16" UserSourceName="updateQta">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_updateQta</CommandText>
@@ -599,7 +599,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="UpdateQuery" Modifier="Public" Name="UpdateQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy16" UserSourceName="UpdateQuery">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="UpdateQuery" Modifier="Public" Name="UpdateQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy17" UserSourceName="UpdateQuery">
<UpdateCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_update</CommandText>
@@ -619,7 +619,7 @@ FROM v_ODL_exp ORDER BY IdxODL DESC</CommandText>
</DbCommand>
</UpdateCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_updateSetup" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="updateSetup" Modifier="Public" Name="updateSetup" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy17" UserSourceName="updateSetup">
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_ODL_updateSetup" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="updateSetup" Modifier="Public" Name="updateSetup" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy18" UserSourceName="updateSetup">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ODL_updateSetup</CommandText>
@@ -1753,7 +1753,7 @@ SELECT IdxMacchina, T1, T2, T3 FROM TurniMacchina WHERE (IdxMacchina = @IdxMacch
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.MappaStatoExpl" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<DeleteCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>DELETE FROM [MappaStatoExpl] WHERE (([RowNum] = @Original_RowNum) AND ((@IsNull_lastUpdate = 1 AND [lastUpdate] IS NULL) OR ([lastUpdate] = @Original_lastUpdate)) AND ((@IsNull_IdxMacchina = 1 AND [IdxMacchina] IS NULL) OR ([IdxMacchina] = @Original_IdxMacchina)) AND ((@IsNull_CodMacchina = 1 AND [CodMacchina] IS NULL) OR ([CodMacchina] = @Original_CodMacchina)) AND ((@IsNull_Nome = 1 AND [Nome] IS NULL) OR ([Nome] = @Original_Nome)) AND ((@IsNull_url = 1 AND [url] IS NULL) OR ([url] = @Original_url)) AND ((@IsNull_idxODL = 1 AND [idxODL] IS NULL) OR ([idxODL] = @Original_idxODL)) AND ((@IsNull_CodArticolo = 1 AND [CodArticolo] IS NULL) OR ([CodArticolo] = @Original_CodArticolo)) AND ((@IsNull_Disegno = 1 AND [Disegno] IS NULL) OR ([Disegno] = @Original_Disegno)) AND ((@IsNull_NumPezzi = 1 AND [NumPezzi] IS NULL) OR ([NumPezzi] = @Original_NumPezzi)) AND ((@IsNull_TCAssegnato = 1 AND [TCAssegnato] IS NULL) OR ([TCAssegnato] = @Original_TCAssegnato)) AND ((@IsNull_DataInizioODL = 1 AND [DataInizioODL] IS NULL) OR ([DataInizioODL] = @Original_DataInizioODL)) AND ((@IsNull_Semaforo = 1 AND [Semaforo] IS NULL) OR ([Semaforo] = @Original_Semaforo)) AND ((@IsNull_idxStato = 1 AND [idxStato] IS NULL) OR ([idxStato] = @Original_idxStato)) AND ((@IsNull_DescrizioneStato = 1 AND [DescrizioneStato] IS NULL) OR ([DescrizioneStato] = @Original_DescrizioneStato)) AND ((@IsNull_durata = 1 AND [durata] IS NULL) OR ([durata] = @Original_durata)) AND ((@IsNull_PezziProd = 1 AND [PezziProd] IS NULL) OR ([PezziProd] = @Original_PezziProd)) AND ((@IsNull_PezziConf = 1 AND [PezziConf] IS NULL) OR ([PezziConf] = @Original_PezziConf)) AND ((@IsNull_TempoOn = 1 AND [TempoOn] IS NULL) OR ([TempoOn] = @Original_TempoOn)) AND ((@IsNull_TempoAuto = 1 AND [TempoAuto] IS NULL) OR ([TempoAuto] = @Original_TempoAuto)) AND ((@IsNull_TempoRun = 1 AND [TempoRun] IS NULL) OR ([TempoRun] = @Original_TempoRun)) AND ((@IsNull_TCMedio = 1 AND [TCMedio] IS NULL) OR ([TCMedio] = @Original_TCMedio)) AND ((@IsNull_TCLav = 1 AND [TCLav] IS NULL) OR ([TCLav] = @Original_TCLav)) AND ((@IsNull_TCEff = 1 AND [TCEff] IS NULL) OR ([TCEff] = @Original_TCEff)) AND ((@IsNull_TCMedioRT = 1 AND [TCMedioRT] IS NULL) OR ([TCMedioRT] = @Original_TCMedioRT)) AND ((@IsNull_TCLavRT = 1 AND [TCLavRT] IS NULL) OR ([TCLavRT] = @Original_TCLavRT)) AND ((@IsNull_TCEffRT = 1 AND [TCEffRT] IS NULL) OR ([TCEffRT] = @Original_TCEffRT)))</CommandText>
<CommandText>DELETE FROM [MappaStatoExpl] WHERE (([RowNum] = @Original_RowNum) AND ((@IsNull_lastUpdate = 1 AND [lastUpdate] IS NULL) OR ([lastUpdate] = @Original_lastUpdate)) AND ((@IsNull_IdxMacchina = 1 AND [IdxMacchina] IS NULL) OR ([IdxMacchina] = @Original_IdxMacchina)) AND ((@IsNull_CodMacchina = 1 AND [CodMacchina] IS NULL) OR ([CodMacchina] = @Original_CodMacchina)) AND ((@IsNull_Nome = 1 AND [Nome] IS NULL) OR ([Nome] = @Original_Nome)) AND ((@IsNull_url = 1 AND [url] IS NULL) OR ([url] = @Original_url)) AND ((@IsNull_idxODL = 1 AND [idxODL] IS NULL) OR ([idxODL] = @Original_idxODL)) AND ((@IsNull_idxPODL = 1 AND [idxPODL] IS NULL) OR ([idxPODL] = @Original_idxPODL)) AND ((@IsNull_CodArticolo = 1 AND [CodArticolo] IS NULL) OR ([CodArticolo] = @Original_CodArticolo)) AND ((@IsNull_Disegno = 1 AND [Disegno] IS NULL) OR ([Disegno] = @Original_Disegno)) AND ((@IsNull_NumPezzi = 1 AND [NumPezzi] IS NULL) OR ([NumPezzi] = @Original_NumPezzi)) AND ((@IsNull_TCAssegnato = 1 AND [TCAssegnato] IS NULL) OR ([TCAssegnato] = @Original_TCAssegnato)) AND ((@IsNull_DataInizioODL = 1 AND [DataInizioODL] IS NULL) OR ([DataInizioODL] = @Original_DataInizioODL)) AND ((@IsNull_Semaforo = 1 AND [Semaforo] IS NULL) OR ([Semaforo] = @Original_Semaforo)) AND ((@IsNull_idxStato = 1 AND [idxStato] IS NULL) OR ([idxStato] = @Original_idxStato)) AND ((@IsNull_DescrizioneStato = 1 AND [DescrizioneStato] IS NULL) OR ([DescrizioneStato] = @Original_DescrizioneStato)) AND ((@IsNull_durata = 1 AND [durata] IS NULL) OR ([durata] = @Original_durata)) AND ((@IsNull_PezziProd = 1 AND [PezziProd] IS NULL) OR ([PezziProd] = @Original_PezziProd)) AND ((@IsNull_PezziConf = 1 AND [PezziConf] IS NULL) OR ([PezziConf] = @Original_PezziConf)) AND ((@IsNull_TempoOn = 1 AND [TempoOn] IS NULL) OR ([TempoOn] = @Original_TempoOn)) AND ((@IsNull_TempoAuto = 1 AND [TempoAuto] IS NULL) OR ([TempoAuto] = @Original_TempoAuto)) AND ((@IsNull_TempoRun = 1 AND [TempoRun] IS NULL) OR ([TempoRun] = @Original_TempoRun)) AND ((@IsNull_TCMedio = 1 AND [TCMedio] IS NULL) OR ([TCMedio] = @Original_TCMedio)) AND ((@IsNull_TCLav = 1 AND [TCLav] IS NULL) OR ([TCLav] = @Original_TCLav)) AND ((@IsNull_TCEff = 1 AND [TCEff] IS NULL) OR ([TCEff] = @Original_TCEff)) AND ((@IsNull_TCMedioRT = 1 AND [TCMedioRT] IS NULL) OR ([TCMedioRT] = @Original_TCMedioRT)) AND ((@IsNull_TCLavRT = 1 AND [TCLavRT] IS NULL) OR ([TCLavRT] = @Original_TCLavRT)) AND ((@IsNull_TCEffRT = 1 AND [TCEffRT] IS NULL) OR ([TCEffRT] = @Original_TCEffRT)))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_RowNum" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="RowNum" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_lastUpdate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="lastUpdate" SourceColumnNullMapping="true" SourceVersion="Original" />
@@ -1768,6 +1768,8 @@ SELECT IdxMacchina, T1, T2, T3 FROM TurniMacchina WHERE (IdxMacchina = @IdxMacch
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_url" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="url" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_idxODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxODL" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxODL" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_idxPODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPODL" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxPODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPODL" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_CodArticolo" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="CodArticolo" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodArticolo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodArticolo" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Disegno" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Disegno" SourceColumnNullMapping="true" SourceVersion="Original" />
@@ -1813,8 +1815,7 @@ SELECT IdxMacchina, T1, T2, T3 FROM TurniMacchina WHERE (IdxMacchina = @IdxMacch
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [MappaStatoExpl] ([lastUpdate], [IdxMacchina], [CodMacchina], [Nome], [url], [idxODL], [CodArticolo], [Disegno], [NumPezzi], [TCAssegnato], [DataInizioODL], [Semaforo], [idxStato], [DescrizioneStato], [durata], [PezziProd], [PezziConf], [TempoOn], [TempoAuto], [TempoRun], [TCMedio], [TCLav], [TCEff], [TCMedioRT], [TCLavRT], [TCEffRT]) VALUES (@lastUpdate, @IdxMacchina, @CodMacchina, @Nome, @url, @idxODL, @CodArticolo, @Disegno, @NumPezzi, @TCAssegnato, @DataInizioODL, @Semaforo, @idxStato, @DescrizioneStato, @durata, @PezziProd, @PezziConf, @TempoOn, @TempoAuto, @TempoRun, @TCMedio, @TCLav, @TCEff, @TCMedioRT, @TCLavRT, @TCEffRT);
SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArticolo, Disegno, NumPezzi, TCAssegnato, DataInizioODL, Semaforo, idxStato, DescrizioneStato, durata, PezziProd, PezziConf, TempoOn, TempoAuto, TempoRun, TCMedio, TCLav, TCEff, TCMedioRT, TCLavRT, TCEffRT FROM MappaStatoExpl WHERE (RowNum = SCOPE_IDENTITY())</CommandText>
<CommandText>INSERT INTO [MappaStatoExpl] ([lastUpdate], [IdxMacchina], [CodMacchina], [Nome], [url], [idxODL], [idxPODL], [CodArticolo], [Disegno], [NumPezzi], [TCAssegnato], [DataInizioODL], [Semaforo], [idxStato], [DescrizioneStato], [durata], [PezziProd], [PezziConf], [TempoOn], [TempoAuto], [TempoRun], [TCMedio], [TCLav], [TCEff], [TCMedioRT], [TCLavRT], [TCEffRT]) VALUES (@lastUpdate, @IdxMacchina, @CodMacchina, @Nome, @url, @idxODL, @idxPODL, @CodArticolo, @Disegno, @NumPezzi, @TCAssegnato, @DataInizioODL, @Semaforo, @idxStato, @DescrizioneStato, @durata, @PezziProd, @PezziConf, @TempoOn, @TempoAuto, @TempoRun, @TCMedio, @TCLav, @TCEff, @TCMedioRT, @TCLavRT, @TCEffRT)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@lastUpdate" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="lastUpdate" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@IdxMacchina" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="IdxMacchina" SourceColumnNullMapping="false" SourceVersion="Current" />
@@ -1822,6 +1823,7 @@ SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArtic
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Nome" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@url" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="url" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxODL" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxPODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPODL" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodArticolo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodArticolo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Disegno" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Disegno" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@NumPezzi" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="NumPezzi" SourceColumnNullMapping="false" SourceVersion="Current" />
@@ -1847,23 +1849,21 @@ SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArtic
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArticolo, Disegno, NumPezzi, TCAssegnato, DataInizioODL, Semaforo, idxStato, DescrizioneStato, durata, PezziProd, PezziConf, TempoOn, TempoAuto, TempoRun,
TCMedio, TCLav, TCEff, TCMedioRT, TCLavRT, TCEffRT
FROM MappaStatoExpl</CommandText>
<CommandText>SELECT * FROM MappaStatoExpl</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [MappaStatoExpl] SET [lastUpdate] = @lastUpdate, [IdxMacchina] = @IdxMacchina, [CodMacchina] = @CodMacchina, [Nome] = @Nome, [url] = @url, [idxODL] = @idxODL, [CodArticolo] = @CodArticolo, [Disegno] = @Disegno, [NumPezzi] = @NumPezzi, [TCAssegnato] = @TCAssegnato, [DataInizioODL] = @DataInizioODL, [Semaforo] = @Semaforo, [idxStato] = @idxStato, [DescrizioneStato] = @DescrizioneStato, [durata] = @durata, [PezziProd] = @PezziProd, [PezziConf] = @PezziConf, [TempoOn] = @TempoOn, [TempoAuto] = @TempoAuto, [TempoRun] = @TempoRun, [TCMedio] = @TCMedio, [TCLav] = @TCLav, [TCEff] = @TCEff, [TCMedioRT] = @TCMedioRT, [TCLavRT] = @TCLavRT, [TCEffRT] = @TCEffRT WHERE (([RowNum] = @Original_RowNum) AND ((@IsNull_lastUpdate = 1 AND [lastUpdate] IS NULL) OR ([lastUpdate] = @Original_lastUpdate)) AND ((@IsNull_IdxMacchina = 1 AND [IdxMacchina] IS NULL) OR ([IdxMacchina] = @Original_IdxMacchina)) AND ((@IsNull_CodMacchina = 1 AND [CodMacchina] IS NULL) OR ([CodMacchina] = @Original_CodMacchina)) AND ((@IsNull_Nome = 1 AND [Nome] IS NULL) OR ([Nome] = @Original_Nome)) AND ((@IsNull_url = 1 AND [url] IS NULL) OR ([url] = @Original_url)) AND ((@IsNull_idxODL = 1 AND [idxODL] IS NULL) OR ([idxODL] = @Original_idxODL)) AND ((@IsNull_CodArticolo = 1 AND [CodArticolo] IS NULL) OR ([CodArticolo] = @Original_CodArticolo)) AND ((@IsNull_Disegno = 1 AND [Disegno] IS NULL) OR ([Disegno] = @Original_Disegno)) AND ((@IsNull_NumPezzi = 1 AND [NumPezzi] IS NULL) OR ([NumPezzi] = @Original_NumPezzi)) AND ((@IsNull_TCAssegnato = 1 AND [TCAssegnato] IS NULL) OR ([TCAssegnato] = @Original_TCAssegnato)) AND ((@IsNull_DataInizioODL = 1 AND [DataInizioODL] IS NULL) OR ([DataInizioODL] = @Original_DataInizioODL)) AND ((@IsNull_Semaforo = 1 AND [Semaforo] IS NULL) OR ([Semaforo] = @Original_Semaforo)) AND ((@IsNull_idxStato = 1 AND [idxStato] IS NULL) OR ([idxStato] = @Original_idxStato)) AND ((@IsNull_DescrizioneStato = 1 AND [DescrizioneStato] IS NULL) OR ([DescrizioneStato] = @Original_DescrizioneStato)) AND ((@IsNull_durata = 1 AND [durata] IS NULL) OR ([durata] = @Original_durata)) AND ((@IsNull_PezziProd = 1 AND [PezziProd] IS NULL) OR ([PezziProd] = @Original_PezziProd)) AND ((@IsNull_PezziConf = 1 AND [PezziConf] IS NULL) OR ([PezziConf] = @Original_PezziConf)) AND ((@IsNull_TempoOn = 1 AND [TempoOn] IS NULL) OR ([TempoOn] = @Original_TempoOn)) AND ((@IsNull_TempoAuto = 1 AND [TempoAuto] IS NULL) OR ([TempoAuto] = @Original_TempoAuto)) AND ((@IsNull_TempoRun = 1 AND [TempoRun] IS NULL) OR ([TempoRun] = @Original_TempoRun)) AND ((@IsNull_TCMedio = 1 AND [TCMedio] IS NULL) OR ([TCMedio] = @Original_TCMedio)) AND ((@IsNull_TCLav = 1 AND [TCLav] IS NULL) OR ([TCLav] = @Original_TCLav)) AND ((@IsNull_TCEff = 1 AND [TCEff] IS NULL) OR ([TCEff] = @Original_TCEff)) AND ((@IsNull_TCMedioRT = 1 AND [TCMedioRT] IS NULL) OR ([TCMedioRT] = @Original_TCMedioRT)) AND ((@IsNull_TCLavRT = 1 AND [TCLavRT] IS NULL) OR ([TCLavRT] = @Original_TCLavRT)) AND ((@IsNull_TCEffRT = 1 AND [TCEffRT] IS NULL) OR ([TCEffRT] = @Original_TCEffRT)));
SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArticolo, Disegno, NumPezzi, TCAssegnato, DataInizioODL, Semaforo, idxStato, DescrizioneStato, durata, PezziProd, PezziConf, TempoOn, TempoAuto, TempoRun, TCMedio, TCLav, TCEff, TCMedioRT, TCLavRT, TCEffRT FROM MappaStatoExpl WHERE (RowNum = @RowNum)</CommandText>
<CommandText>UPDATE [MappaStatoExpl] SET [lastUpdate] = @lastUpdate, [CodMacchina] = @CodMacchina, [Nome] = @Nome, [url] = @url, [idxODL] = @idxODL, [idxPODL] = @idxPODL, [CodArticolo] = @CodArticolo, [Disegno] = @Disegno, [NumPezzi] = @NumPezzi, [TCAssegnato] = @TCAssegnato, [DataInizioODL] = @DataInizioODL, [Semaforo] = @Semaforo, [idxStato] = @idxStato, [DescrizioneStato] = @DescrizioneStato, [durata] = @durata, [PezziProd] = @PezziProd, [PezziConf] = @PezziConf, [TempoOn] = @TempoOn, [TempoAuto] = @TempoAuto, [TempoRun] = @TempoRun, [TCMedio] = @TCMedio, [TCLav] = @TCLav, [TCEff] = @TCEff, [TCMedioRT] = @TCMedioRT, [TCLavRT] = @TCLavRT, [TCEffRT] = @TCEffRT WHERE (([RowNum] = @Original_RowNum) AND ((@IsNull_lastUpdate = 1 AND [lastUpdate] IS NULL) OR ([lastUpdate] = @Original_lastUpdate)) AND ((@IsNull_CodMacchina = 1 AND [CodMacchina] IS NULL) OR ([CodMacchina] = @Original_CodMacchina)) AND ((@IsNull_Nome = 1 AND [Nome] IS NULL) OR ([Nome] = @Original_Nome)) AND ((@IsNull_url = 1 AND [url] IS NULL) OR ([url] = @Original_url)) AND ((@IsNull_idxODL = 1 AND [idxODL] IS NULL) OR ([idxODL] = @Original_idxODL)) AND ((@IsNull_idxPODL = 1 AND [idxPODL] IS NULL) OR ([idxPODL] = @Original_idxPODL)) AND ((@IsNull_CodArticolo = 1 AND [CodArticolo] IS NULL) OR ([CodArticolo] = @Original_CodArticolo)) AND ((@IsNull_Disegno = 1 AND [Disegno] IS NULL) OR ([Disegno] = @Original_Disegno)) AND ((@IsNull_NumPezzi = 1 AND [NumPezzi] IS NULL) OR ([NumPezzi] = @Original_NumPezzi)) AND ((@IsNull_TCAssegnato = 1 AND [TCAssegnato] IS NULL) OR ([TCAssegnato] = @Original_TCAssegnato)) AND ((@IsNull_DataInizioODL = 1 AND [DataInizioODL] IS NULL) OR ([DataInizioODL] = @Original_DataInizioODL)) AND ((@IsNull_Semaforo = 1 AND [Semaforo] IS NULL) OR ([Semaforo] = @Original_Semaforo)) AND ((@IsNull_idxStato = 1 AND [idxStato] IS NULL) OR ([idxStato] = @Original_idxStato)) AND ((@IsNull_DescrizioneStato = 1 AND [DescrizioneStato] IS NULL) OR ([DescrizioneStato] = @Original_DescrizioneStato)) AND ((@IsNull_durata = 1 AND [durata] IS NULL) OR ([durata] = @Original_durata)) AND ((@IsNull_PezziProd = 1 AND [PezziProd] IS NULL) OR ([PezziProd] = @Original_PezziProd)) AND ((@IsNull_PezziConf = 1 AND [PezziConf] IS NULL) OR ([PezziConf] = @Original_PezziConf)) AND ((@IsNull_TempoOn = 1 AND [TempoOn] IS NULL) OR ([TempoOn] = @Original_TempoOn)) AND ((@IsNull_TempoAuto = 1 AND [TempoAuto] IS NULL) OR ([TempoAuto] = @Original_TempoAuto)) AND ((@IsNull_TempoRun = 1 AND [TempoRun] IS NULL) OR ([TempoRun] = @Original_TempoRun)) AND ((@IsNull_TCMedio = 1 AND [TCMedio] IS NULL) OR ([TCMedio] = @Original_TCMedio)) AND ((@IsNull_TCLav = 1 AND [TCLav] IS NULL) OR ([TCLav] = @Original_TCLav)) AND ((@IsNull_TCEff = 1 AND [TCEff] IS NULL) OR ([TCEff] = @Original_TCEff)) AND ((@IsNull_TCMedioRT = 1 AND [TCMedioRT] IS NULL) OR ([TCMedioRT] = @Original_TCMedioRT)) AND ((@IsNull_TCLavRT = 1 AND [TCLavRT] IS NULL) OR ([TCLavRT] = @Original_TCLavRT)) AND ((@IsNull_TCEffRT = 1 AND [TCEffRT] IS NULL) OR ([TCEffRT] = @Original_TCEffRT)));
SELECT RowNum, lastUpdate, CodMacchina, Nome, url, idxODL, idxPODL, CodArticolo, Disegno, NumPezzi, TCAssegnato, DataInizioODL, Semaforo, idxStato, DescrizioneStato, durata, PezziProd, PezziConf, TempoOn, TempoAuto, TempoRun, TCMedio, TCLav, TCEff, TCMedioRT, TCLavRT, TCEffRT FROM MappaStatoExpl WHERE (RowNum = @RowNum)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@lastUpdate" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="lastUpdate" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@IdxMacchina" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="IdxMacchina" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodMacchina" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodMacchina" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Nome" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@url" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="url" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxODL" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxPODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPODL" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodArticolo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodArticolo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Disegno" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Disegno" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@NumPezzi" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="NumPezzi" SourceColumnNullMapping="false" SourceVersion="Current" />
@@ -1887,8 +1887,6 @@ SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArtic
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_RowNum" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="RowNum" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_lastUpdate" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="lastUpdate" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@Original_lastUpdate" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="lastUpdate" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_IdxMacchina" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="IdxMacchina" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_IdxMacchina" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="IdxMacchina" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_CodMacchina" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="CodMacchina" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodMacchina" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodMacchina" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Nome" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Nome" SourceColumnNullMapping="true" SourceVersion="Original" />
@@ -1897,6 +1895,8 @@ SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArtic
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_url" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="url" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_idxODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxODL" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxODL" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_idxPODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPODL" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxPODL" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPODL" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_CodArticolo" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="CodArticolo" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodArticolo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodArticolo" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Disegno" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Disegno" SourceColumnNullMapping="true" SourceVersion="Original" />
@@ -1937,7 +1937,7 @@ SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArtic
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_TCLavRT" Precision="18" ProviderType="Decimal" Scale="8" Size="0" SourceColumn="TCLavRT" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_TCEffRT" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="TCEffRT" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_TCEffRT" Precision="18" ProviderType="Decimal" Scale="8" Size="0" SourceColumn="TCEffRT" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="RowNum" ColumnName="RowNum" DataSourceName="MoonPro.dbo.MappaStatoExpl" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@RowNum" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="RowNum" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="RowNum" ColumnName="RowNum" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@RowNum" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="RowNum" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</UpdateCommand>
@@ -1951,7 +1951,9 @@ SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArtic
<Mapping SourceColumn="Nome" DataSetColumn="Nome" />
<Mapping SourceColumn="url" DataSetColumn="url" />
<Mapping SourceColumn="idxODL" DataSetColumn="idxODL" />
<Mapping SourceColumn="idxPODL" DataSetColumn="idxPODL" />
<Mapping SourceColumn="CodArticolo" DataSetColumn="CodArticolo" />
<Mapping SourceColumn="Disegno" DataSetColumn="Disegno" />
<Mapping SourceColumn="NumPezzi" DataSetColumn="NumPezzi" />
<Mapping SourceColumn="TCAssegnato" DataSetColumn="TCAssegnato" />
<Mapping SourceColumn="DataInizioODL" DataSetColumn="DataInizioODL" />
@@ -1970,7 +1972,6 @@ SELECT RowNum, lastUpdate, IdxMacchina, CodMacchina, Nome, url, idxODL, CodArtic
<Mapping SourceColumn="TCMedioRT" DataSetColumn="TCMedioRT" />
<Mapping SourceColumn="TCLavRT" DataSetColumn="TCLavRT" />
<Mapping SourceColumn="TCEffRT" DataSetColumn="TCEffRT" />
<Mapping SourceColumn="Disegno" DataSetColumn="Disegno" />
</Mappings>
<Sources>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_MSE_recalc" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="forceRecalc" Modifier="Public" Name="forceRecalc" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="forceRecalc">
@@ -2357,6 +2358,17 @@ ORDER BY idxPromessa DESC</CommandText>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_PODL_getByIdxOdl" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByIdxOdl" GetMethodModifier="Public" GetMethodName="getByIdxOdl" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByIdxOdl" UserSourceName="getByIdxOdl">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_PODL_getByIdxOdl</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@IdxOdl" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonProConnectionString (Settings)" DbObjectName="MoonPro.dbo.stp_PODL_getByIdx" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByKey" GeneratorSourceName="getByIdx" GetMethodModifier="Public" GetMethodName="getByKey" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByKey" UserSourceName="getByKey">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
@@ -3040,81 +3052,82 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
<xs:element name="MappaStatoExpl" msprop:Generator_RowEvHandlerName="MappaStatoExplRowChangeEventHandler" msprop:Generator_RowDeletedName="MappaStatoExplRowDeleted" msprop:Generator_RowDeletingName="MappaStatoExplRowDeleting" msprop:Generator_RowEvArgName="MappaStatoExplRowChangeEvent" msprop:Generator_TablePropName="MappaStatoExpl" msprop:Generator_RowChangedName="MappaStatoExplRowChanged" msprop:Generator_UserTableName="MappaStatoExpl" msprop:Generator_RowChangingName="MappaStatoExplRowChanging" msprop:Generator_RowClassName="MappaStatoExplRow" msprop:Generator_TableClassName="MappaStatoExplDataTable" msprop:Generator_TableVarName="tableMappaStatoExpl">
<xs:complexType>
<xs:sequence>
<xs:element name="RowNum" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnPropNameInTable="RowNumColumn" msprop:Generator_ColumnPropNameInRow="RowNum" msprop:Generator_UserColumnName="RowNum" msprop:Generator_ColumnVarNameInTable="columnRowNum" type="xs:int" />
<xs:element name="lastUpdate" msprop:Generator_ColumnPropNameInTable="lastUpdateColumn" msprop:Generator_ColumnPropNameInRow="lastUpdate" msprop:Generator_UserColumnName="lastUpdate" msprop:Generator_ColumnVarNameInTable="columnlastUpdate" type="xs:dateTime" minOccurs="0" />
<xs:element name="IdxMacchina" msprop:Generator_ColumnPropNameInTable="IdxMacchinaColumn" msprop:Generator_ColumnPropNameInRow="IdxMacchina" msprop:Generator_UserColumnName="IdxMacchina" msprop:Generator_ColumnVarNameInTable="columnIdxMacchina">
<xs:element name="RowNum" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnPropNameInRow="RowNum" msprop:Generator_ColumnPropNameInTable="RowNumColumn" msprop:Generator_ColumnVarNameInTable="columnRowNum" msprop:Generator_UserColumnName="RowNum" type="xs:int" />
<xs:element name="lastUpdate" msprop:Generator_ColumnPropNameInRow="lastUpdate" msprop:Generator_ColumnPropNameInTable="lastUpdateColumn" msprop:Generator_ColumnVarNameInTable="columnlastUpdate" msprop:Generator_UserColumnName="lastUpdate" type="xs:dateTime" minOccurs="0" />
<xs:element name="IdxMacchina" msprop:Generator_ColumnPropNameInRow="IdxMacchina" msprop:Generator_ColumnPropNameInTable="IdxMacchinaColumn" msprop:Generator_ColumnVarNameInTable="columnIdxMacchina" msprop:Generator_UserColumnName="IdxMacchina" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodMacchina" msprop:Generator_ColumnPropNameInTable="CodMacchinaColumn" msprop:Generator_ColumnPropNameInRow="CodMacchina" msprop:Generator_UserColumnName="CodMacchina" msprop:Generator_ColumnVarNameInTable="columnCodMacchina" minOccurs="0">
<xs:element name="CodMacchina" msprop:Generator_ColumnPropNameInRow="CodMacchina" msprop:Generator_ColumnPropNameInTable="CodMacchinaColumn" msprop:Generator_ColumnVarNameInTable="columnCodMacchina" msprop:Generator_UserColumnName="CodMacchina" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Nome" msprop:Generator_ColumnPropNameInTable="NomeColumn" msprop:Generator_ColumnPropNameInRow="Nome" msprop:Generator_UserColumnName="Nome" msprop:Generator_ColumnVarNameInTable="columnNome" minOccurs="0">
<xs:element name="Nome" msprop:Generator_ColumnPropNameInRow="Nome" msprop:Generator_ColumnPropNameInTable="NomeColumn" msprop:Generator_ColumnVarNameInTable="columnNome" msprop:Generator_UserColumnName="Nome" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="url" msprop:Generator_ColumnPropNameInTable="urlColumn" msprop:Generator_ColumnPropNameInRow="url" msprop:Generator_UserColumnName="url" msprop:Generator_ColumnVarNameInTable="columnurl" minOccurs="0">
<xs:element name="url" msprop:Generator_ColumnPropNameInRow="url" msprop:Generator_ColumnPropNameInTable="urlColumn" msprop:Generator_ColumnVarNameInTable="columnurl" msprop:Generator_UserColumnName="url" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="idxODL" msprop:Generator_ColumnPropNameInTable="idxODLColumn" msprop:Generator_ColumnPropNameInRow="idxODL" msprop:Generator_UserColumnName="idxODL" msprop:Generator_ColumnVarNameInTable="columnidxODL" type="xs:int" minOccurs="0" />
<xs:element name="CodArticolo" msprop:Generator_ColumnPropNameInTable="CodArticoloColumn" msprop:Generator_ColumnPropNameInRow="CodArticolo" msprop:Generator_UserColumnName="CodArticolo" msprop:Generator_ColumnVarNameInTable="columnCodArticolo" minOccurs="0">
<xs:element name="idxODL" msprop:Generator_ColumnPropNameInRow="idxODL" msprop:Generator_ColumnPropNameInTable="idxODLColumn" msprop:Generator_ColumnVarNameInTable="columnidxODL" msprop:Generator_UserColumnName="idxODL" type="xs:int" default="0" minOccurs="0" />
<xs:element name="idxPODL" msprop:Generator_ColumnPropNameInRow="idxPODL" msprop:Generator_ColumnPropNameInTable="idxPODLColumn" msprop:Generator_ColumnVarNameInTable="columnidxPODL" msprop:Generator_UserColumnName="idxPODL" type="xs:int" default="0" minOccurs="0" />
<xs:element name="CodArticolo" msprop:Generator_ColumnPropNameInRow="CodArticolo" msprop:Generator_ColumnPropNameInTable="CodArticoloColumn" msprop:Generator_ColumnVarNameInTable="columnCodArticolo" msprop:Generator_UserColumnName="CodArticolo" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="NumPezzi" msprop:Generator_ColumnPropNameInTable="NumPezziColumn" msprop:Generator_ColumnPropNameInRow="NumPezzi" msprop:Generator_UserColumnName="NumPezzi" msprop:Generator_ColumnVarNameInTable="columnNumPezzi" type="xs:int" minOccurs="0" />
<xs:element name="TCAssegnato" msprop:Generator_ColumnPropNameInTable="TCAssegnatoColumn" msprop:Generator_ColumnPropNameInRow="TCAssegnato" msprop:Generator_UserColumnName="TCAssegnato" msprop:Generator_ColumnVarNameInTable="columnTCAssegnato" type="xs:decimal" minOccurs="0" />
<xs:element name="DataInizioODL" msprop:Generator_ColumnPropNameInTable="DataInizioODLColumn" msprop:Generator_ColumnPropNameInRow="DataInizioODL" msprop:Generator_UserColumnName="DataInizioODL" msprop:Generator_ColumnVarNameInTable="columnDataInizioODL" type="xs:dateTime" minOccurs="0" />
<xs:element name="Semaforo" msprop:Generator_ColumnPropNameInTable="SemaforoColumn" msprop:Generator_ColumnPropNameInRow="Semaforo" msprop:Generator_UserColumnName="Semaforo" msprop:Generator_ColumnVarNameInTable="columnSemaforo" minOccurs="0">
<xs:element name="Disegno" msprop:Generator_ColumnPropNameInRow="Disegno" msprop:Generator_ColumnPropNameInTable="DisegnoColumn" msprop:Generator_ColumnVarNameInTable="columnDisegno" msprop:Generator_UserColumnName="Disegno" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="idxStato" msprop:Generator_ColumnPropNameInTable="idxStatoColumn" msprop:Generator_ColumnPropNameInRow="idxStato" msprop:Generator_UserColumnName="idxStato" msprop:Generator_ColumnVarNameInTable="columnidxStato" type="xs:int" minOccurs="0" />
<xs:element name="DescrizioneStato" msprop:Generator_ColumnPropNameInTable="DescrizioneStatoColumn" msprop:Generator_ColumnPropNameInRow="DescrizioneStato" msprop:Generator_UserColumnName="DescrizioneStato" msprop:Generator_ColumnVarNameInTable="columnDescrizioneStato" minOccurs="0">
<xs:element name="NumPezzi" msprop:Generator_ColumnPropNameInRow="NumPezzi" msprop:Generator_ColumnPropNameInTable="NumPezziColumn" msprop:Generator_ColumnVarNameInTable="columnNumPezzi" msprop:Generator_UserColumnName="NumPezzi" type="xs:int" minOccurs="0" />
<xs:element name="TCAssegnato" msprop:Generator_ColumnPropNameInRow="TCAssegnato" msprop:Generator_ColumnPropNameInTable="TCAssegnatoColumn" msprop:Generator_ColumnVarNameInTable="columnTCAssegnato" msprop:Generator_UserColumnName="TCAssegnato" type="xs:decimal" minOccurs="0" />
<xs:element name="DataInizioODL" msprop:Generator_ColumnPropNameInRow="DataInizioODL" msprop:Generator_ColumnPropNameInTable="DataInizioODLColumn" msprop:Generator_ColumnVarNameInTable="columnDataInizioODL" msprop:Generator_UserColumnName="DataInizioODL" type="xs:dateTime" minOccurs="0" />
<xs:element name="Semaforo" msprop:Generator_ColumnPropNameInRow="Semaforo" msprop:Generator_ColumnPropNameInTable="SemaforoColumn" msprop:Generator_ColumnVarNameInTable="columnSemaforo" msprop:Generator_UserColumnName="Semaforo" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="durata" msprop:Generator_ColumnPropNameInTable="durataColumn" msprop:Generator_ColumnPropNameInRow="durata" msprop:Generator_UserColumnName="durata" msprop:Generator_ColumnVarNameInTable="columndurata" type="xs:double" minOccurs="0" />
<xs:element name="PezziProd" msprop:Generator_ColumnPropNameInTable="PezziProdColumn" msprop:Generator_ColumnPropNameInRow="PezziProd" msprop:Generator_UserColumnName="PezziProd" msprop:Generator_ColumnVarNameInTable="columnPezziProd" type="xs:int" minOccurs="0" />
<xs:element name="PezziConf" msprop:Generator_ColumnPropNameInTable="PezziConfColumn" msprop:Generator_ColumnPropNameInRow="PezziConf" msprop:Generator_UserColumnName="PezziConf" msprop:Generator_ColumnVarNameInTable="columnPezziConf" type="xs:int" minOccurs="0" />
<xs:element name="TempoOn" msprop:Generator_ColumnPropNameInTable="TempoOnColumn" msprop:Generator_ColumnPropNameInRow="TempoOn" msprop:Generator_UserColumnName="TempoOn" msprop:Generator_ColumnVarNameInTable="columnTempoOn" type="xs:decimal" minOccurs="0" />
<xs:element name="TempoAuto" msprop:Generator_ColumnPropNameInTable="TempoAutoColumn" msprop:Generator_ColumnPropNameInRow="TempoAuto" msprop:Generator_UserColumnName="TempoAuto" msprop:Generator_ColumnVarNameInTable="columnTempoAuto" type="xs:decimal" minOccurs="0" />
<xs:element name="TempoRun" msprop:Generator_ColumnPropNameInTable="TempoRunColumn" msprop:Generator_ColumnPropNameInRow="TempoRun" msprop:Generator_UserColumnName="TempoRun" msprop:Generator_ColumnVarNameInTable="columnTempoRun" type="xs:decimal" minOccurs="0" />
<xs:element name="TCMedio" msprop:Generator_ColumnPropNameInTable="TCMedioColumn" msprop:Generator_ColumnPropNameInRow="TCMedio" msprop:Generator_UserColumnName="TCMedio" msprop:Generator_ColumnVarNameInTable="columnTCMedio" type="xs:decimal" minOccurs="0" />
<xs:element name="TCLav" msprop:Generator_ColumnPropNameInTable="TCLavColumn" msprop:Generator_ColumnPropNameInRow="TCLav" msprop:Generator_UserColumnName="TCLav" msprop:Generator_ColumnVarNameInTable="columnTCLav" type="xs:decimal" minOccurs="0" />
<xs:element name="TCEff" msprop:Generator_ColumnPropNameInTable="TCEffColumn" msprop:Generator_ColumnPropNameInRow="TCEff" msprop:Generator_UserColumnName="TCEff" msprop:Generator_ColumnVarNameInTable="columnTCEff" type="xs:decimal" minOccurs="0" />
<xs:element name="TCMedioRT" msprop:Generator_ColumnPropNameInTable="TCMedioRTColumn" msprop:Generator_ColumnPropNameInRow="TCMedioRT" msprop:Generator_UserColumnName="TCMedioRT" msprop:Generator_ColumnVarNameInTable="columnTCMedioRT" type="xs:decimal" minOccurs="0" />
<xs:element name="TCLavRT" msprop:Generator_ColumnPropNameInTable="TCLavRTColumn" msprop:Generator_ColumnPropNameInRow="TCLavRT" msprop:Generator_UserColumnName="TCLavRT" msprop:Generator_ColumnVarNameInTable="columnTCLavRT" type="xs:decimal" minOccurs="0" />
<xs:element name="TCEffRT" msprop:Generator_ColumnPropNameInTable="TCEffRTColumn" msprop:Generator_ColumnPropNameInRow="TCEffRT" msprop:Generator_UserColumnName="TCEffRT" msprop:Generator_ColumnVarNameInTable="columnTCEffRT" type="xs:decimal" minOccurs="0" />
<xs:element name="Disegno" msprop:Generator_ColumnPropNameInTable="DisegnoColumn" msprop:Generator_ColumnPropNameInRow="Disegno" msprop:Generator_UserColumnName="Disegno" msprop:Generator_ColumnVarNameInTable="columnDisegno" minOccurs="0">
<xs:element name="idxStato" msprop:Generator_ColumnPropNameInRow="idxStato" msprop:Generator_ColumnPropNameInTable="idxStatoColumn" msprop:Generator_ColumnVarNameInTable="columnidxStato" msprop:Generator_UserColumnName="idxStato" type="xs:int" minOccurs="0" />
<xs:element name="DescrizioneStato" msprop:Generator_ColumnPropNameInRow="DescrizioneStato" msprop:Generator_ColumnPropNameInTable="DescrizioneStatoColumn" msprop:Generator_ColumnVarNameInTable="columnDescrizioneStato" msprop:Generator_UserColumnName="DescrizioneStato" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="durata" msprop:Generator_ColumnPropNameInRow="durata" msprop:Generator_ColumnPropNameInTable="durataColumn" msprop:Generator_ColumnVarNameInTable="columndurata" msprop:Generator_UserColumnName="durata" type="xs:double" minOccurs="0" />
<xs:element name="PezziProd" msprop:Generator_ColumnPropNameInRow="PezziProd" msprop:Generator_ColumnPropNameInTable="PezziProdColumn" msprop:Generator_ColumnVarNameInTable="columnPezziProd" msprop:Generator_UserColumnName="PezziProd" type="xs:int" minOccurs="0" />
<xs:element name="PezziConf" msprop:Generator_ColumnPropNameInRow="PezziConf" msprop:Generator_ColumnPropNameInTable="PezziConfColumn" msprop:Generator_ColumnVarNameInTable="columnPezziConf" msprop:Generator_UserColumnName="PezziConf" type="xs:int" minOccurs="0" />
<xs:element name="TempoOn" msprop:Generator_ColumnPropNameInRow="TempoOn" msprop:Generator_ColumnPropNameInTable="TempoOnColumn" msprop:Generator_ColumnVarNameInTable="columnTempoOn" msprop:Generator_UserColumnName="TempoOn" type="xs:decimal" minOccurs="0" />
<xs:element name="TempoAuto" msprop:Generator_ColumnPropNameInRow="TempoAuto" msprop:Generator_ColumnPropNameInTable="TempoAutoColumn" msprop:Generator_ColumnVarNameInTable="columnTempoAuto" msprop:Generator_UserColumnName="TempoAuto" type="xs:decimal" minOccurs="0" />
<xs:element name="TempoRun" msprop:Generator_ColumnPropNameInRow="TempoRun" msprop:Generator_ColumnPropNameInTable="TempoRunColumn" msprop:Generator_ColumnVarNameInTable="columnTempoRun" msprop:Generator_UserColumnName="TempoRun" type="xs:decimal" minOccurs="0" />
<xs:element name="TCMedio" msprop:Generator_ColumnPropNameInRow="TCMedio" msprop:Generator_ColumnPropNameInTable="TCMedioColumn" msprop:Generator_ColumnVarNameInTable="columnTCMedio" msprop:Generator_UserColumnName="TCMedio" type="xs:decimal" minOccurs="0" />
<xs:element name="TCLav" msprop:Generator_ColumnPropNameInRow="TCLav" msprop:Generator_ColumnPropNameInTable="TCLavColumn" msprop:Generator_ColumnVarNameInTable="columnTCLav" msprop:Generator_UserColumnName="TCLav" type="xs:decimal" minOccurs="0" />
<xs:element name="TCEff" msprop:Generator_ColumnPropNameInRow="TCEff" msprop:Generator_ColumnPropNameInTable="TCEffColumn" msprop:Generator_ColumnVarNameInTable="columnTCEff" msprop:Generator_UserColumnName="TCEff" type="xs:decimal" minOccurs="0" />
<xs:element name="TCMedioRT" msprop:Generator_ColumnPropNameInRow="TCMedioRT" msprop:Generator_ColumnPropNameInTable="TCMedioRTColumn" msprop:Generator_ColumnVarNameInTable="columnTCMedioRT" msprop:Generator_UserColumnName="TCMedioRT" type="xs:decimal" minOccurs="0" />
<xs:element name="TCLavRT" msprop:Generator_ColumnPropNameInRow="TCLavRT" msprop:Generator_ColumnPropNameInTable="TCLavRTColumn" msprop:Generator_ColumnVarNameInTable="columnTCLavRT" msprop:Generator_UserColumnName="TCLavRT" type="xs:decimal" minOccurs="0" />
<xs:element name="TCEffRT" msprop:Generator_ColumnPropNameInRow="TCEffRT" msprop:Generator_ColumnPropNameInTable="TCEffRTColumn" msprop:Generator_ColumnVarNameInTable="columnTCEffRT" msprop:Generator_UserColumnName="TCEffRT" type="xs:decimal" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
@@ -3492,9 +3505,9 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
<xs:selector xpath=".//mstns:TurniMacchina" />
<xs:field xpath="mstns:IdxMacchina" />
</xs:unique>
<xs:unique name="MappaStatoExpl_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
<xs:unique name="Constraint2" msdata:PrimaryKey="true">
<xs:selector xpath=".//mstns:MappaStatoExpl" />
<xs:field xpath="mstns:IdxMacchina" />
<xs:field xpath="mstns:RowNum" />
</xs:unique>
<xs:unique name="ResProdTotKey1">
<xs:selector xpath=".//mstns:ResProdTot" />
+3 -3
View File
@@ -4,7 +4,7 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="29" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<DiagramLayout xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="938" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:TempiCicloRilevati" ZOrder="15" X="20" Y="81" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:ODL" ZOrder="2" X="588" Y="452" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
@@ -14,13 +14,13 @@
<Shape ID="DesignTable:stp_PzProd_getByMacchina" ZOrder="8" X="23" Y="754" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:DatiConfermati" ZOrder="23" X="585" Y="50" Height="343" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:CalendFesteFerie" ZOrder="13" X="346" Y="364" Height="115" Width="242" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:stp_TempoByIdxMaccPeriodClass" ZOrder="5" X="31" Y="1009" Height="97" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="46" SplitterPosition="46" />
<Shape ID="DesignTable:stp_TempoByIdxMaccPeriodClass" ZOrder="5" X="31" Y="999" Height="97" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="46" SplitterPosition="46" />
<Shape ID="DesignTable:DatiProduzione" ZOrder="20" X="554" Y="922" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:stp_repDonati_getDatiProdMacchina" ZOrder="11" X="949" Y="688" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:stp_repDonati_getLastStatoDurataMacchina" ZOrder="22" X="957" Y="1072" Height="115" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:stp_repDonati_getDatiProdMacchinaPeriodo" ZOrder="12" X="26" Y="1152" Height="172" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:TurniMacchina" ZOrder="16" X="363" Y="94" Height="191" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:MappaStatoExpl" ZOrder="10" X="946" Y="1217" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:MappaStatoExpl" ZOrder="10" X="950" Y="1208" Height="493" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="368" />
<Shape ID="DesignTable:ResProdDett_splitODL" ZOrder="7" X="940" Y="2192" Height="191" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:ResProdDett_splitGG" ZOrder="17" X="27" Y="2218" Height="210" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:ResProdTot" ZOrder="18" X="544" Y="2122" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
+413 -312
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -1674,11 +1674,11 @@ namespace MapoDb
int CurrProdStatus = 0;
string sIdxODL = "";
string redKey = vetoForceStartPOdlMaccHash(idxMacchina);
// verifico NON CI SIA un veto a NUOVI split... 30 sec di default...
// verifico NON CI SIA un veto altre chiamate (es split...) - 30 sec di default...
string rawData = memLayer.ML.getRSV(redKey);
if (string.IsNullOrEmpty(rawData))
{
// registro VETO x altri split... 30sec
// registro VETO x altre chiamate (es split...) 30sec
memLayer.ML.setRSV(redKey, $"Inizio FORCE START PODL: {idxPODL} | {DateTime.Now}", 30);
// calcolo la qta da gestire
int qtyConf = 0;
@@ -4033,7 +4033,7 @@ namespace MapoDb
innovations.Add(item);
}
else
// altrimenti aggiorno campo name...
// altrimenti aggiorno campi name...
{
trovato.name = item.name;
}