aggiunto step x assegnazioen amcchina attività pianificate
This commit is contained in:
@@ -6,17 +6,33 @@
|
||||
<div class="card-header">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-4">
|
||||
<div class="col-2">
|
||||
<h4>PODL attivi</h4>
|
||||
</div>
|
||||
<div class="col-4 text-right">
|
||||
<div class="col-2 text-right">
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend">
|
||||
<div class="input-group-text">
|
||||
<asp:CheckBox runat="server" ID="chkUnassigned" AutoPostBack="True" OnCheckedChanged="chkUnassigned_CheckedChanged" Checked="true" />
|
||||
</div>
|
||||
</div>
|
||||
<asp:Label runat="server" ID="lblUnass" CssClass="input-group-text" Text="Mostra SOLO programmate" />
|
||||
<asp:Label runat="server" ID="lblUnass" CssClass="input-group-text small" Text="Mostra SOLO programmate" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-4 text-right" runat="server" id="divMachine">
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend">
|
||||
<div class="input-group-text">
|
||||
<asp:CheckBox runat="server" ID="chkReassign" AutoPostBack="True" Checked="false" OnCheckedChanged="chkReassign_CheckedChanged" />
|
||||
</div>
|
||||
</div>
|
||||
<asp:DropDownList runat="server" ID="ddlSelMacchina" CssClass="form-control" DataSourceID="odsMac" DataTextField="label" DataValueField="value" AppendDataBoundItems="true">
|
||||
<asp:ListItem Text="-- Impianto Originale --" Value="" />
|
||||
</asp:DropDownList>
|
||||
<asp:ObjectDataSource runat="server" ID="odsMac" OldValuesParameterFormatString="original_{0}" SelectMethod="getAttive" TypeName="MapoDb.DS_UtilityTableAdapters.v_selMacchineTableAdapter"></asp:ObjectDataSource>
|
||||
<div class="input-group-append">
|
||||
<asp:LinkButton runat="server" ID="lbtReassignMachine" class="btn btn-info" OnClick="lbtReassignMachine_Click"><i class="fa fa-edit" aria-hidden="true"></i> Riassegna</asp:LinkButton>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-4" runat="server" id="divActions">
|
||||
|
||||
@@ -130,6 +130,17 @@ namespace MP_ADM.WebUserControls
|
||||
}
|
||||
}
|
||||
divActions.Visible = showActions;
|
||||
divMachine.Visible = showActions;
|
||||
}
|
||||
|
||||
private void fixSetMachine()
|
||||
{
|
||||
ddlSelMacchina.Enabled = chkReassign.Checked;
|
||||
lbtReassignMachine.Visible = chkReassign.Checked;
|
||||
if (!chkReassign.Checked)
|
||||
{
|
||||
ddlSelMacchina.SelectedIndex = 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -157,6 +168,7 @@ namespace MP_ADM.WebUserControls
|
||||
private void updateGrView()
|
||||
{
|
||||
grView.DataBind();
|
||||
checkActions();
|
||||
raiseNewVal();
|
||||
}
|
||||
|
||||
@@ -199,6 +211,11 @@ namespace MP_ADM.WebUserControls
|
||||
checkActions();
|
||||
}
|
||||
|
||||
protected void chkReassign_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
fixSetMachine();
|
||||
}
|
||||
|
||||
protected void chkSelect_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
checkActions();
|
||||
@@ -280,6 +297,30 @@ namespace MP_ADM.WebUserControls
|
||||
updateGrView();
|
||||
}
|
||||
|
||||
protected void lbtReassignMachine_Click(object sender, EventArgs e)
|
||||
{
|
||||
int IdxPromessa = 0;
|
||||
int IdxOdl = 0;
|
||||
string idxMacchina2Reass = ddlSelMacchina.SelectedValue;
|
||||
if (!string.IsNullOrEmpty(idxMacchina2Reass))
|
||||
{
|
||||
foreach (GridViewRow riga in grView.Rows)
|
||||
{
|
||||
if (((CheckBox)riga.FindControl("chkSelect")).Checked && ((CheckBox)riga.FindControl("chkSelect")).Visible)
|
||||
{
|
||||
int.TryParse(((Label)riga.FindControl("lblIdxOdl")).Text, out IdxOdl);
|
||||
if (IdxOdl == 0)
|
||||
{
|
||||
int.TryParse(((Label)riga.FindControl("lblIdxPromessa")).Text, out IdxPromessa);
|
||||
// riassegno!
|
||||
DataLayerObj.taPromOut.updMacchina(IdxPromessa, idxMacchina2Reass);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
updateGrView();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Richiesto abbassamento priorità = ANTICIPA
|
||||
/// </summary>
|
||||
@@ -322,6 +363,7 @@ namespace MP_ADM.WebUserControls
|
||||
{
|
||||
base.OnInit(e);
|
||||
_idxGridView = "IdxPromessa";
|
||||
fixSetMachine();
|
||||
}
|
||||
|
||||
protected override void OnLoad(EventArgs e)
|
||||
@@ -331,6 +373,7 @@ namespace MP_ADM.WebUserControls
|
||||
{
|
||||
grView.PageSize = pageSize;
|
||||
divActions.Visible = false;
|
||||
divMachine.Visible = false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -422,6 +465,7 @@ namespace MP_ADM.WebUserControls
|
||||
public void resetSelezione()
|
||||
{
|
||||
divActions.Visible = false;
|
||||
divMachine.Visible = false;
|
||||
memLayer.ML.emptySessionVal(string.Format("{0}_sel", _idxGridView));
|
||||
grView.SelectedIndex = -1;
|
||||
grView.DataBind();
|
||||
|
||||
@@ -32,6 +32,51 @@ namespace MP_ADM.WebUserControls
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblUnass;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo divMachine.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.HtmlControls.HtmlGenericControl divMachine;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo chkReassign.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.CheckBox chkReassign;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo ddlSelMacchina.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.DropDownList ddlSelMacchina;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo odsMac.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource odsMac;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo lbtReassignMachine.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.LinkButton lbtReassignMachine;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo divActions.
|
||||
/// </summary>
|
||||
|
||||
@@ -157,10 +157,10 @@
|
||||
<div class="card-body p-1">
|
||||
<div runat="server" id="divConfirm" class="p-1 border border-success table-success my-1">
|
||||
<asp:LinkButton runat="server" ID="lbtDoPlan" CssClass="btn btn-success btn-block" OnClick="lbtDoPlan_Click" OnClientClick="return confirm('Sei sciuro di voler confermare senza modifica le richieste selezionate?');">
|
||||
<i class="fa fa-thumbs-up" aria-hidden="true"></i> APPROVA e PIANIFICA <i class="fa fa-thumbs-up" aria-hidden="true"></i>
|
||||
<div class="small">
|
||||
approvazione e pianificazione richieste selezionate
|
||||
</div>
|
||||
<i class="fa fa-thumbs-up" aria-hidden="true"></i> APPROVA e PIANIFICA <i class="fa fa-thumbs-up" aria-hidden="true"></i>
|
||||
<div class="small">
|
||||
approvazione e pianificazione richieste selezionate
|
||||
</div>
|
||||
</asp:LinkButton>
|
||||
</div>
|
||||
<div runat="server" id="divCreaGrp" class="p-1 border border-primary table-primary">
|
||||
|
||||
Generated
+31
-1
@@ -11572,7 +11572,7 @@ SELECT idxPromessa, KeyRichiesta, KeyBCode, Attivabile, IdxODL, CodArticolo, Cod
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
private void InitCommandCollection() {
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[7];
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[8];
|
||||
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[0].Connection = this.Connection;
|
||||
this._commandCollection[0].CommandText = "SELECT *\r\nFROM v_PODL_OUT_exp";
|
||||
@@ -11631,6 +11631,13 @@ SELECT idxPromessa, KeyRichiesta, KeyBCode, Attivabile, IdxODL, CodArticolo, Cod
|
||||
this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPromessa", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[6].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Attivabile", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[7] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[7].Connection = this.Connection;
|
||||
this._commandCollection[7].CommandText = "dbo.stp_PODL_OUT_updMacchina";
|
||||
this._commandCollection[7].CommandType = global::System.Data.CommandType.StoredProcedure;
|
||||
this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPromessa", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[7].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxMacchina", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -11721,6 +11728,29 @@ SELECT idxPromessa, KeyRichiesta, KeyBCode, Attivabile, IdxODL, CodArticolo, Cod
|
||||
return dataTable;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
|
||||
public virtual DS_Plan.PromesseOUTDataTable updMacchina(global::System.Nullable<int> IdxPromessa, string IdxMacchina) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[7];
|
||||
if ((IdxPromessa.HasValue == true)) {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPromessa.Value));
|
||||
}
|
||||
else {
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
if ((IdxMacchina == null)) {
|
||||
this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
this.Adapter.SelectCommand.Parameters[2].Value = ((string)(IdxMacchina));
|
||||
}
|
||||
DS_Plan.PromesseOUTDataTable dataTable = new DS_Plan.PromesseOUTDataTable();
|
||||
this.Adapter.Fill(dataTable);
|
||||
return dataTable;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
|
||||
+29
-17
@@ -482,6 +482,18 @@ FROM v_PODL_OUT_exp</CommandText>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="MoonPro_ES3ConnectionString (Settings)" DbObjectName="MoonPro_ES3.dbo.stp_PODL_OUT_updMacchina" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="updMacchina" GetMethodModifier="Public" GetMethodName="updMacchina" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="updMacchina" UserSourceName="updMacchina">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_PODL_OUT_updMacchina</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="@IdxPromessa" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@IdxMacchina" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
</Sources>
|
||||
</TableAdapter>
|
||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="ConfWeekTableAdapter" GeneratorDataComponentClassName="ConfWeekTableAdapter" Name="ConfWeek" UserDataComponentName="ConfWeekTableAdapter">
|
||||
@@ -768,7 +780,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
<xs:element name="DS_Plan" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DS_Plan" msprop:Generator_UserDSName="DS_Plan">
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element name="planStatsGlobal" msprop:Generator_TableClassName="planStatsGlobalDataTable" msprop:Generator_TableVarName="tableplanStatsGlobal" msprop:Generator_RowChangedName="planStatsGlobalRowChanged" msprop:Generator_TablePropName="planStatsGlobal" msprop:Generator_RowDeletingName="planStatsGlobalRowDeleting" msprop:Generator_RowChangingName="planStatsGlobalRowChanging" msprop:Generator_RowEvHandlerName="planStatsGlobalRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsGlobalRowDeleted" msprop:Generator_RowClassName="planStatsGlobalRow" msprop:Generator_UserTableName="planStatsGlobal" msprop:Generator_RowEvArgName="planStatsGlobalRowChangeEvent">
|
||||
<xs:element name="planStatsGlobal" msprop:Generator_TableClassName="planStatsGlobalDataTable" msprop:Generator_TableVarName="tableplanStatsGlobal" msprop:Generator_TablePropName="planStatsGlobal" msprop:Generator_RowDeletingName="planStatsGlobalRowDeleting" msprop:Generator_RowChangingName="planStatsGlobalRowChanging" msprop:Generator_RowEvHandlerName="planStatsGlobalRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsGlobalRowDeleted" msprop:Generator_UserTableName="planStatsGlobal" msprop:Generator_RowChangedName="planStatsGlobalRowChanged" msprop:Generator_RowEvArgName="planStatsGlobalRowChangeEvent" msprop:Generator_RowClassName="planStatsGlobalRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="NumRows" msprop:Generator_ColumnVarNameInTable="columnNumRows" msprop:Generator_ColumnPropNameInRow="NumRows" msprop:Generator_ColumnPropNameInTable="NumRowsColumn" msprop:Generator_UserColumnName="NumRows" type="xs:int" minOccurs="0" />
|
||||
@@ -781,7 +793,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="planStatsArt" msprop:Generator_TableClassName="planStatsArtDataTable" msprop:Generator_TableVarName="tableplanStatsArt" msprop:Generator_RowChangedName="planStatsArtRowChanged" msprop:Generator_TablePropName="planStatsArt" msprop:Generator_RowDeletingName="planStatsArtRowDeleting" msprop:Generator_RowChangingName="planStatsArtRowChanging" msprop:Generator_RowEvHandlerName="planStatsArtRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsArtRowDeleted" msprop:Generator_RowClassName="planStatsArtRow" msprop:Generator_UserTableName="planStatsArt" msprop:Generator_RowEvArgName="planStatsArtRowChangeEvent">
|
||||
<xs:element name="planStatsArt" msprop:Generator_TableClassName="planStatsArtDataTable" msprop:Generator_TableVarName="tableplanStatsArt" msprop:Generator_TablePropName="planStatsArt" msprop:Generator_RowDeletingName="planStatsArtRowDeleting" msprop:Generator_RowChangingName="planStatsArtRowChanging" msprop:Generator_RowEvHandlerName="planStatsArtRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsArtRowDeleted" msprop:Generator_UserTableName="planStatsArt" msprop:Generator_RowChangedName="planStatsArtRowChanged" msprop:Generator_RowEvArgName="planStatsArtRowChangeEvent" msprop:Generator_RowClassName="planStatsArtRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodArticolo" msprop:Generator_ColumnVarNameInTable="columnCodArticolo" msprop:Generator_ColumnPropNameInRow="CodArticolo" msprop:Generator_ColumnPropNameInTable="CodArticoloColumn" msprop:Generator_UserColumnName="CodArticolo">
|
||||
@@ -811,7 +823,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="planStatsGroup" msprop:Generator_TableClassName="planStatsGroupDataTable" msprop:Generator_TableVarName="tableplanStatsGroup" msprop:Generator_RowChangedName="planStatsGroupRowChanged" msprop:Generator_TablePropName="planStatsGroup" msprop:Generator_RowDeletingName="planStatsGroupRowDeleting" msprop:Generator_RowChangingName="planStatsGroupRowChanging" msprop:Generator_RowEvHandlerName="planStatsGroupRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsGroupRowDeleted" msprop:Generator_RowClassName="planStatsGroupRow" msprop:Generator_UserTableName="planStatsGroup" msprop:Generator_RowEvArgName="planStatsGroupRowChangeEvent">
|
||||
<xs:element name="planStatsGroup" msprop:Generator_TableClassName="planStatsGroupDataTable" msprop:Generator_TableVarName="tableplanStatsGroup" msprop:Generator_TablePropName="planStatsGroup" msprop:Generator_RowDeletingName="planStatsGroupRowDeleting" msprop:Generator_RowChangingName="planStatsGroupRowChanging" msprop:Generator_RowEvHandlerName="planStatsGroupRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsGroupRowDeleted" msprop:Generator_UserTableName="planStatsGroup" msprop:Generator_RowChangedName="planStatsGroupRowChanged" msprop:Generator_RowEvArgName="planStatsGroupRowChangeEvent" msprop:Generator_RowClassName="planStatsGroupRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodGruppo" msprop:Generator_ColumnVarNameInTable="columnCodGruppo" msprop:Generator_ColumnPropNameInRow="CodGruppo" msprop:Generator_ColumnPropNameInTable="CodGruppoColumn" msprop:Generator_UserColumnName="CodGruppo">
|
||||
@@ -834,7 +846,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="planStatsMacc" msprop:Generator_TableClassName="planStatsMaccDataTable" msprop:Generator_TableVarName="tableplanStatsMacc" msprop:Generator_RowChangedName="planStatsMaccRowChanged" msprop:Generator_TablePropName="planStatsMacc" msprop:Generator_RowDeletingName="planStatsMaccRowDeleting" msprop:Generator_RowChangingName="planStatsMaccRowChanging" msprop:Generator_RowEvHandlerName="planStatsMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsMaccRowDeleted" msprop:Generator_RowClassName="planStatsMaccRow" msprop:Generator_UserTableName="planStatsMacc" msprop:Generator_RowEvArgName="planStatsMaccRowChangeEvent">
|
||||
<xs:element name="planStatsMacc" msprop:Generator_TableClassName="planStatsMaccDataTable" msprop:Generator_TableVarName="tableplanStatsMacc" msprop:Generator_TablePropName="planStatsMacc" msprop:Generator_RowDeletingName="planStatsMaccRowDeleting" msprop:Generator_RowChangingName="planStatsMaccRowChanging" msprop:Generator_RowEvHandlerName="planStatsMaccRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsMaccRowDeleted" msprop:Generator_UserTableName="planStatsMacc" msprop:Generator_RowChangedName="planStatsMaccRowChanged" msprop:Generator_RowEvArgName="planStatsMaccRowChangeEvent" msprop:Generator_RowClassName="planStatsMaccRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxMacchina" msprop:Generator_ColumnVarNameInTable="columnIdxMacchina" msprop:Generator_ColumnPropNameInRow="IdxMacchina" msprop:Generator_ColumnPropNameInTable="IdxMacchinaColumn" msprop:Generator_UserColumnName="IdxMacchina">
|
||||
@@ -857,7 +869,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Richieste" msprop:Generator_TableClassName="RichiesteDataTable" msprop:Generator_TableVarName="tableRichieste" msprop:Generator_TablePropName="Richieste" msprop:Generator_RowDeletingName="RichiesteRowDeleting" msprop:Generator_RowChangingName="RichiesteRowChanging" msprop:Generator_RowEvHandlerName="RichiesteRowChangeEventHandler" msprop:Generator_RowDeletedName="RichiesteRowDeleted" msprop:Generator_UserTableName="Richieste" msprop:Generator_RowChangedName="RichiesteRowChanged" msprop:Generator_RowEvArgName="RichiesteRowChangeEvent" msprop:Generator_RowClassName="RichiesteRow">
|
||||
<xs:element name="Richieste" msprop:Generator_TableClassName="RichiesteDataTable" msprop:Generator_TableVarName="tableRichieste" msprop:Generator_RowChangedName="RichiesteRowChanged" msprop:Generator_TablePropName="Richieste" msprop:Generator_RowDeletingName="RichiesteRowDeleting" msprop:Generator_RowChangingName="RichiesteRowChanging" msprop:Generator_RowEvHandlerName="RichiesteRowChangeEventHandler" msprop:Generator_RowDeletedName="RichiesteRowDeleted" msprop:Generator_RowClassName="RichiesteRow" msprop:Generator_UserTableName="Richieste" msprop:Generator_RowEvArgName="RichiesteRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="idxPromessa" msprop:Generator_ColumnVarNameInTable="columnidxPromessa" msprop:Generator_ColumnPropNameInRow="idxPromessa" msprop:Generator_ColumnPropNameInTable="idxPromessaColumn" msprop:Generator_UserColumnName="idxPromessa" type="xs:int" />
|
||||
@@ -976,7 +988,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="PromesseIN" msprop:Generator_TableClassName="PromesseINDataTable" msprop:Generator_TableVarName="tablePromesseIN" msprop:Generator_RowChangedName="PromesseINRowChanged" msprop:Generator_TablePropName="PromesseIN" msprop:Generator_RowDeletingName="PromesseINRowDeleting" msprop:Generator_RowChangingName="PromesseINRowChanging" msprop:Generator_RowEvHandlerName="PromesseINRowChangeEventHandler" msprop:Generator_RowDeletedName="PromesseINRowDeleted" msprop:Generator_RowClassName="PromesseINRow" msprop:Generator_UserTableName="PromesseIN" msprop:Generator_RowEvArgName="PromesseINRowChangeEvent">
|
||||
<xs:element name="PromesseIN" msprop:Generator_TableClassName="PromesseINDataTable" msprop:Generator_TableVarName="tablePromesseIN" msprop:Generator_TablePropName="PromesseIN" msprop:Generator_RowDeletingName="PromesseINRowDeleting" msprop:Generator_RowChangingName="PromesseINRowChanging" msprop:Generator_RowEvHandlerName="PromesseINRowChangeEventHandler" msprop:Generator_RowDeletedName="PromesseINRowDeleted" msprop:Generator_UserTableName="PromesseIN" msprop:Generator_RowChangedName="PromesseINRowChanged" msprop:Generator_RowEvArgName="PromesseINRowChangeEvent" msprop:Generator_RowClassName="PromesseINRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="idxPromessa" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxPromessa" msprop:Generator_ColumnPropNameInRow="idxPromessa" msprop:Generator_ColumnPropNameInTable="idxPromessaColumn" msprop:Generator_UserColumnName="idxPromessa" type="xs:int" />
|
||||
@@ -1032,7 +1044,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="PromesseOUT" msprop:Generator_TableClassName="PromesseOUTDataTable" msprop:Generator_TableVarName="tablePromesseOUT" msprop:Generator_RowChangedName="PromesseOUTRowChanged" msprop:Generator_TablePropName="PromesseOUT" msprop:Generator_RowDeletingName="PromesseOUTRowDeleting" msprop:Generator_RowChangingName="PromesseOUTRowChanging" msprop:Generator_RowEvHandlerName="PromesseOUTRowChangeEventHandler" msprop:Generator_RowDeletedName="PromesseOUTRowDeleted" msprop:Generator_RowClassName="PromesseOUTRow" msprop:Generator_UserTableName="PromesseOUT" msprop:Generator_RowEvArgName="PromesseOUTRowChangeEvent">
|
||||
<xs:element name="PromesseOUT" msprop:Generator_TableClassName="PromesseOUTDataTable" msprop:Generator_TableVarName="tablePromesseOUT" msprop:Generator_TablePropName="PromesseOUT" msprop:Generator_RowDeletingName="PromesseOUTRowDeleting" msprop:Generator_RowChangingName="PromesseOUTRowChanging" msprop:Generator_RowEvHandlerName="PromesseOUTRowChangeEventHandler" msprop:Generator_RowDeletedName="PromesseOUTRowDeleted" msprop:Generator_UserTableName="PromesseOUT" msprop:Generator_RowChangedName="PromesseOUTRowChanged" msprop:Generator_RowEvArgName="PromesseOUTRowChangeEvent" msprop:Generator_RowClassName="PromesseOUTRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="idxPromessa" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxPromessa" msprop:Generator_ColumnPropNameInRow="idxPromessa" msprop:Generator_ColumnPropNameInTable="idxPromessaColumn" msprop:Generator_UserColumnName="idxPromessa" type="xs:int" />
|
||||
@@ -1158,7 +1170,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ConfWeek" msprop:Generator_TableClassName="ConfWeekDataTable" msprop:Generator_TableVarName="tableConfWeek" msprop:Generator_TablePropName="ConfWeek" msprop:Generator_RowDeletingName="ConfWeekRowDeleting" msprop:Generator_RowChangingName="ConfWeekRowChanging" msprop:Generator_RowEvHandlerName="ConfWeekRowChangeEventHandler" msprop:Generator_RowDeletedName="ConfWeekRowDeleted" msprop:Generator_UserTableName="ConfWeek" msprop:Generator_RowChangedName="ConfWeekRowChanged" msprop:Generator_RowEvArgName="ConfWeekRowChangeEvent" msprop:Generator_RowClassName="ConfWeekRow">
|
||||
<xs:element name="ConfWeek" msprop:Generator_TableClassName="ConfWeekDataTable" msprop:Generator_TableVarName="tableConfWeek" msprop:Generator_RowChangedName="ConfWeekRowChanged" msprop:Generator_TablePropName="ConfWeek" msprop:Generator_RowDeletingName="ConfWeekRowDeleting" msprop:Generator_RowChangingName="ConfWeekRowChanging" msprop:Generator_RowEvHandlerName="ConfWeekRowChangeEventHandler" msprop:Generator_RowDeletedName="ConfWeekRowDeleted" msprop:Generator_RowClassName="ConfWeekRow" msprop:Generator_UserTableName="ConfWeek" msprop:Generator_RowEvArgName="ConfWeekRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodConfAper" msprop:Generator_ColumnVarNameInTable="columnCodConfAper" msprop:Generator_ColumnPropNameInRow="CodConfAper" msprop:Generator_ColumnPropNameInTable="CodConfAperColumn" msprop:Generator_UserColumnName="CodConfAper">
|
||||
@@ -1180,7 +1192,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="CalStop" msprop:Generator_TableClassName="CalStopDataTable" msprop:Generator_TableVarName="tableCalStop" msprop:Generator_RowChangedName="CalStopRowChanged" msprop:Generator_TablePropName="CalStop" msprop:Generator_RowDeletingName="CalStopRowDeleting" msprop:Generator_RowChangingName="CalStopRowChanging" msprop:Generator_RowEvHandlerName="CalStopRowChangeEventHandler" msprop:Generator_RowDeletedName="CalStopRowDeleted" msprop:Generator_RowClassName="CalStopRow" msprop:Generator_UserTableName="CalStop" msprop:Generator_RowEvArgName="CalStopRowChangeEvent">
|
||||
<xs:element name="CalStop" msprop:Generator_TableClassName="CalStopDataTable" msprop:Generator_TableVarName="tableCalStop" msprop:Generator_TablePropName="CalStop" msprop:Generator_RowDeletingName="CalStopRowDeleting" msprop:Generator_RowChangingName="CalStopRowChanging" msprop:Generator_RowEvHandlerName="CalStopRowChangeEventHandler" msprop:Generator_RowDeletedName="CalStopRowDeleted" msprop:Generator_UserTableName="CalStop" msprop:Generator_RowChangedName="CalStopRowChanged" msprop:Generator_RowEvArgName="CalStopRowChangeEvent" msprop:Generator_RowClassName="CalStopRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="DataRif" msprop:Generator_ColumnVarNameInTable="columnDataRif" msprop:Generator_ColumnPropNameInRow="DataRif" msprop:Generator_ColumnPropNameInTable="DataRifColumn" msprop:Generator_UserColumnName="DataRif" type="xs:dateTime" />
|
||||
@@ -1194,7 +1206,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="CalDisp" msprop:Generator_TableClassName="CalDispDataTable" msprop:Generator_TableVarName="tableCalDisp" msprop:Generator_RowChangedName="CalDispRowChanged" msprop:Generator_TablePropName="CalDisp" msprop:Generator_RowDeletingName="CalDispRowDeleting" msprop:Generator_RowChangingName="CalDispRowChanging" msprop:Generator_RowEvHandlerName="CalDispRowChangeEventHandler" msprop:Generator_RowDeletedName="CalDispRowDeleted" msprop:Generator_RowClassName="CalDispRow" msprop:Generator_UserTableName="CalDisp" msprop:Generator_RowEvArgName="CalDispRowChangeEvent">
|
||||
<xs:element name="CalDisp" msprop:Generator_TableClassName="CalDispDataTable" msprop:Generator_TableVarName="tableCalDisp" msprop:Generator_TablePropName="CalDisp" msprop:Generator_RowDeletingName="CalDispRowDeleting" msprop:Generator_RowChangingName="CalDispRowChanging" msprop:Generator_RowEvHandlerName="CalDispRowChangeEventHandler" msprop:Generator_RowDeletedName="CalDispRowDeleted" msprop:Generator_UserTableName="CalDisp" msprop:Generator_RowChangedName="CalDispRowChanged" msprop:Generator_RowEvArgName="CalDispRowChangeEvent" msprop:Generator_RowClassName="CalDispRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="DataRif" msprop:Generator_ColumnVarNameInTable="columnDataRif" msprop:Generator_ColumnPropNameInRow="DataRif" msprop:Generator_ColumnPropNameInTable="DataRifColumn" msprop:Generator_UserColumnName="DataRif" type="xs:dateTime" />
|
||||
@@ -1210,7 +1222,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ConfWeek1" msprop:Generator_TableClassName="ConfWeek1DataTable" msprop:Generator_TableVarName="tableConfWeek1" msprop:Generator_TablePropName="ConfWeek1" msprop:Generator_RowDeletingName="ConfWeek1RowDeleting" msprop:Generator_RowChangingName="ConfWeek1RowChanging" msprop:Generator_RowEvHandlerName="ConfWeek1RowChangeEventHandler" msprop:Generator_RowDeletedName="ConfWeek1RowDeleted" msprop:Generator_UserTableName="ConfWeek1" msprop:Generator_RowChangedName="ConfWeek1RowChanged" msprop:Generator_RowEvArgName="ConfWeek1RowChangeEvent" msprop:Generator_RowClassName="ConfWeek1Row">
|
||||
<xs:element name="ConfWeek1" msprop:Generator_TableClassName="ConfWeek1DataTable" msprop:Generator_TableVarName="tableConfWeek1" msprop:Generator_RowChangedName="ConfWeek1RowChanged" msprop:Generator_TablePropName="ConfWeek1" msprop:Generator_RowDeletingName="ConfWeek1RowDeleting" msprop:Generator_RowChangingName="ConfWeek1RowChanging" msprop:Generator_RowEvHandlerName="ConfWeek1RowChangeEventHandler" msprop:Generator_RowDeletedName="ConfWeek1RowDeleted" msprop:Generator_RowClassName="ConfWeek1Row" msprop:Generator_UserTableName="ConfWeek1" msprop:Generator_RowEvArgName="ConfWeek1RowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodConfAper" msprop:Generator_ColumnVarNameInTable="columnCodConfAper" msprop:Generator_ColumnPropNameInRow="CodConfAper" msprop:Generator_ColumnPropNameInTable="CodConfAperColumn" msprop:Generator_UserColumnName="CodConfAper">
|
||||
@@ -1232,7 +1244,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="MachineParams" msprop:Generator_TableClassName="MachineParamsDataTable" msprop:Generator_TableVarName="tableMachineParams" msprop:Generator_TablePropName="MachineParams" msprop:Generator_RowDeletingName="MachineParamsRowDeleting" msprop:Generator_RowChangingName="MachineParamsRowChanging" msprop:Generator_RowEvHandlerName="MachineParamsRowChangeEventHandler" msprop:Generator_RowDeletedName="MachineParamsRowDeleted" msprop:Generator_UserTableName="MachineParams" msprop:Generator_RowChangedName="MachineParamsRowChanged" msprop:Generator_RowEvArgName="MachineParamsRowChangeEvent" msprop:Generator_RowClassName="MachineParamsRow">
|
||||
<xs:element name="MachineParams" msprop:Generator_TableClassName="MachineParamsDataTable" msprop:Generator_TableVarName="tableMachineParams" msprop:Generator_RowChangedName="MachineParamsRowChanged" msprop:Generator_TablePropName="MachineParams" msprop:Generator_RowDeletingName="MachineParamsRowDeleting" msprop:Generator_RowChangingName="MachineParamsRowChanging" msprop:Generator_RowEvHandlerName="MachineParamsRowChangeEventHandler" msprop:Generator_RowDeletedName="MachineParamsRowDeleted" msprop:Generator_RowClassName="MachineParamsRow" msprop:Generator_UserTableName="MachineParams" msprop:Generator_RowEvArgName="MachineParamsRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxMacchina" msprop:Generator_ColumnVarNameInTable="columnIdxMacchina" msprop:Generator_ColumnPropNameInRow="IdxMacchina" msprop:Generator_ColumnPropNameInTable="IdxMacchinaColumn" msprop:Generator_UserColumnName="IdxMacchina">
|
||||
@@ -1254,7 +1266,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="selConfWeek" msprop:Generator_TableClassName="selConfWeekDataTable" msprop:Generator_TableVarName="tableselConfWeek" msprop:Generator_RowChangedName="selConfWeekRowChanged" msprop:Generator_TablePropName="selConfWeek" msprop:Generator_RowDeletingName="selConfWeekRowDeleting" msprop:Generator_RowChangingName="selConfWeekRowChanging" msprop:Generator_RowEvHandlerName="selConfWeekRowChangeEventHandler" msprop:Generator_RowDeletedName="selConfWeekRowDeleted" msprop:Generator_RowClassName="selConfWeekRow" msprop:Generator_UserTableName="selConfWeek" msprop:Generator_RowEvArgName="selConfWeekRowChangeEvent">
|
||||
<xs:element name="selConfWeek" msprop:Generator_TableClassName="selConfWeekDataTable" msprop:Generator_TableVarName="tableselConfWeek" msprop:Generator_TablePropName="selConfWeek" msprop:Generator_RowDeletingName="selConfWeekRowDeleting" msprop:Generator_RowChangingName="selConfWeekRowChanging" msprop:Generator_RowEvHandlerName="selConfWeekRowChangeEventHandler" msprop:Generator_RowDeletedName="selConfWeekRowDeleted" msprop:Generator_UserTableName="selConfWeek" msprop:Generator_RowChangedName="selConfWeekRowChanged" msprop:Generator_RowEvArgName="selConfWeekRowChangeEvent" msprop:Generator_RowClassName="selConfWeekRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="value" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value">
|
||||
@@ -1274,7 +1286,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="planHistStatMac" msprop:Generator_TableClassName="planHistStatMacDataTable" msprop:Generator_TableVarName="tableplanHistStatMac" msprop:Generator_RowChangedName="planHistStatMacRowChanged" msprop:Generator_TablePropName="planHistStatMac" msprop:Generator_RowDeletingName="planHistStatMacRowDeleting" msprop:Generator_RowChangingName="planHistStatMacRowChanging" msprop:Generator_RowEvHandlerName="planHistStatMacRowChangeEventHandler" msprop:Generator_RowDeletedName="planHistStatMacRowDeleted" msprop:Generator_RowClassName="planHistStatMacRow" msprop:Generator_UserTableName="planHistStatMac" msprop:Generator_RowEvArgName="planHistStatMacRowChangeEvent">
|
||||
<xs:element name="planHistStatMac" msprop:Generator_TableClassName="planHistStatMacDataTable" msprop:Generator_TableVarName="tableplanHistStatMac" msprop:Generator_TablePropName="planHistStatMac" msprop:Generator_RowDeletingName="planHistStatMacRowDeleting" msprop:Generator_RowChangingName="planHistStatMacRowChanging" msprop:Generator_RowEvHandlerName="planHistStatMacRowChangeEventHandler" msprop:Generator_RowDeletedName="planHistStatMacRowDeleted" msprop:Generator_UserTableName="planHistStatMac" msprop:Generator_RowChangedName="planHistStatMacRowChanged" msprop:Generator_RowEvArgName="planHistStatMacRowChangeEvent" msprop:Generator_RowClassName="planHistStatMacRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxMacchina" msprop:Generator_ColumnVarNameInTable="columnIdxMacchina" msprop:Generator_ColumnPropNameInRow="IdxMacchina" msprop:Generator_ColumnPropNameInTable="IdxMacchinaColumn" msprop:Generator_UserColumnName="IdxMacchina">
|
||||
@@ -1293,7 +1305,7 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="planStatsCli" msprop:Generator_TableClassName="planStatsCliDataTable" msprop:Generator_TableVarName="tableplanStatsCli" msprop:Generator_TablePropName="planStatsCli" msprop:Generator_RowDeletingName="planStatsCliRowDeleting" msprop:Generator_RowChangingName="planStatsCliRowChanging" msprop:Generator_RowEvHandlerName="planStatsCliRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsCliRowDeleted" msprop:Generator_UserTableName="planStatsCli" msprop:Generator_RowChangedName="planStatsCliRowChanged" msprop:Generator_RowEvArgName="planStatsCliRowChangeEvent" msprop:Generator_RowClassName="planStatsCliRow">
|
||||
<xs:element name="planStatsCli" msprop:Generator_TableClassName="planStatsCliDataTable" msprop:Generator_TableVarName="tableplanStatsCli" msprop:Generator_RowChangedName="planStatsCliRowChanged" msprop:Generator_TablePropName="planStatsCli" msprop:Generator_RowDeletingName="planStatsCliRowDeleting" msprop:Generator_RowChangingName="planStatsCliRowChanging" msprop:Generator_RowEvHandlerName="planStatsCliRowChangeEventHandler" msprop:Generator_RowDeletedName="planStatsCliRowDeleted" msprop:Generator_RowClassName="planStatsCliRow" msprop:Generator_UserTableName="planStatsCli" msprop:Generator_RowEvArgName="planStatsCliRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" msprop:Generator_UserColumnName="CodCliente">
|
||||
@@ -1359,8 +1371,8 @@ ORDER BY TotOreRich DESC</CommandText>
|
||||
</xs:element>
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<msdata:Relationship name="FK_MachineParams_ConfWeek" msdata:parent="ConfWeek" msdata:child="MachineParams" msdata:parentkey="CodConfAper" msdata:childkey="CodConfAper" msprop:Generator_UserChildTable="MachineParams" msprop:Generator_ChildPropName="GetMachineParamsRows" msprop:Generator_UserRelationName="FK_MachineParams_ConfWeek" msprop:Generator_ParentPropName="ConfWeekRow" msprop:Generator_RelationVarName="relationFK_MachineParams_ConfWeek" msprop:Generator_UserParentTable="ConfWeek" />
|
||||
<msdata:Relationship name="FK_MachineParams_ConfWeek1" msdata:parent="ConfWeek1" msdata:child="MachineParams" msdata:parentkey="CodConfAper" msdata:childkey="CodConfAper" msprop:Generator_UserChildTable="MachineParams" msprop:Generator_ChildPropName="GetMachineParamsRows" msprop:Generator_UserRelationName="FK_MachineParams_ConfWeek1" msprop:Generator_ParentPropName="ConfWeek1Row" msprop:Generator_RelationVarName="relationFK_MachineParams_ConfWeek1" msprop:Generator_UserParentTable="ConfWeek1" />
|
||||
<msdata:Relationship name="FK_MachineParams_ConfWeek" msdata:parent="ConfWeek" msdata:child="MachineParams" msdata:parentkey="CodConfAper" msdata:childkey="CodConfAper" msprop:Generator_UserChildTable="MachineParams" msprop:Generator_ChildPropName="GetMachineParamsRows" msprop:Generator_UserRelationName="FK_MachineParams_ConfWeek" msprop:Generator_RelationVarName="relationFK_MachineParams_ConfWeek" msprop:Generator_UserParentTable="ConfWeek" msprop:Generator_ParentPropName="ConfWeekRow" />
|
||||
<msdata:Relationship name="FK_MachineParams_ConfWeek1" msdata:parent="ConfWeek1" msdata:child="MachineParams" msdata:parentkey="CodConfAper" msdata:childkey="CodConfAper" msprop:Generator_UserChildTable="MachineParams" msprop:Generator_ChildPropName="GetMachineParamsRows" msprop:Generator_UserRelationName="FK_MachineParams_ConfWeek1" msprop:Generator_RelationVarName="relationFK_MachineParams_ConfWeek1" msprop:Generator_UserParentTable="ConfWeek1" msprop:Generator_ParentPropName="ConfWeek1Row" />
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
</xs:schema>
|
||||
Reference in New Issue
Block a user