Completato search embrionale x UDC da pagina ricerca generica
git-svn-id: https://keyhammer.ath.cx/svn/GMW/trunk@64 365432ac-a1b5-4ffd-bb28-6d3099d32164
This commit is contained in:
@@ -3,7 +3,8 @@
|
||||
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
|
||||
<%@ Register Src="mod_filtro.ascx" TagName="mod_filtro" TagPrefix="uc2" %>
|
||||
<%@ Register Src="mod_showUDC.ascx" TagName="mod_showUDC" TagPrefix="uc1" %>
|
||||
<%@ Register src="mod_metodiNoSearch.ascx" tagname="mod_metodiNoSearch" tagprefix="uc3" %>
|
||||
<%@ Register Src="mod_metodiNoSearch.ascx" TagName="mod_metodiNoSearch" TagPrefix="uc3" %>
|
||||
<%@ Register Src="mod_execUDC.ascx" TagName="mod_execUDC" TagPrefix="uc4" %>
|
||||
<div style="width: 1024px; margin: 0 auto; background: white; vertical-align: text-top;">
|
||||
<div style="font-size: 48pt; font-family: 'times New Roman', Times, serif; text-align: center;
|
||||
width: 100%;">
|
||||
@@ -27,22 +28,27 @@
|
||||
<div style="text-align: center; font-size: 8pt;">
|
||||
<table cellspacing="0" cellpadding="4" border="0">
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<asp:Panel runat="server" ID="pnlResults">
|
||||
<h3>
|
||||
<asp:Label runat="server" ID="lblTipoSearch" />
|
||||
</h3>
|
||||
<uc1:mod_showUDC ID="mod_showUDC1" runat="server" />
|
||||
</asp:Panel>
|
||||
<asp:Panel runat="server" ID="pnlEmpty" Height="100px">
|
||||
</asp:Panel>
|
||||
</td>
|
||||
<td valign="top">
|
||||
<asp:Panel runat="server" ID="pnlMethod">
|
||||
metodi ammessi
|
||||
</asp:Panel>
|
||||
<td colspan="2">
|
||||
<asp:CheckBox runat="server" ID="chkLikeType" OnCheckedChanged="chkLikeType_CheckedChanged"
|
||||
AutoPostBack="True" />
|
||||
</td>
|
||||
</tr>
|
||||
<td valign="top">
|
||||
<asp:Panel runat="server" ID="pnlResults">
|
||||
<h3>
|
||||
<asp:Label runat="server" ID="lblTipoSearch" />
|
||||
</h3>
|
||||
<uc1:mod_showUDC ID="mod_showUDC1" runat="server" />
|
||||
</asp:Panel>
|
||||
<asp:Panel runat="server" ID="pnlEmpty" Height="100px">
|
||||
</asp:Panel>
|
||||
</td>
|
||||
<td valign="top">
|
||||
<asp:Panel runat="server" ID="pnlMethod">
|
||||
<uc4:mod_execUDC ID="mod_execUDC1" runat="server" />
|
||||
</asp:Panel>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" align="center">
|
||||
<uc3:mod_metodiNoSearch ID="mod_metodiNoSearch1" runat="server" />
|
||||
|
||||
@@ -41,6 +41,8 @@ namespace GMW.WebUserControls
|
||||
|
||||
private void doTraduci()
|
||||
{
|
||||
chkLikeType.Text = traduci("AbilitaRicercaLike");
|
||||
chkLikeType.ToolTip = traduci("AbilitaRicercaLikeExpl");
|
||||
btnSearch.Text = traduci("btnSearch");
|
||||
TBWE_search.WatermarkText = traduci("insertCod4search");
|
||||
}
|
||||
@@ -58,10 +60,12 @@ namespace GMW.WebUserControls
|
||||
string testoCercato = txtSearch.Text.Trim();
|
||||
if (testoCercato != "")
|
||||
{
|
||||
memLayer.ML.setSessionVal("FullSearchValue", testoCercato, false);
|
||||
memLayer.ML.setSessionVal("SearchIsLikeBased", chkLikeType.Checked, false);
|
||||
pnlEmpty.Visible = false;
|
||||
pnlResults.Visible = true;
|
||||
// in base al tipo di richiesta determino che risultati visualizzare...
|
||||
switch (testoCercato.Substring(0,1))
|
||||
switch (testoCercato.Substring(0, 1))
|
||||
{
|
||||
case "I":
|
||||
lblTipoSearch.Text = traduci("RicercaImballi");
|
||||
@@ -78,6 +82,7 @@ namespace GMW.WebUserControls
|
||||
case "U":
|
||||
lblTipoSearch.Text = traduci("RicercaUDC");
|
||||
mod_showUDC1.Visible = true;
|
||||
mod_showUDC1.doUpdate();
|
||||
break;
|
||||
default:
|
||||
lblTipoSearch.Text = traduci("RicercaGenerica");
|
||||
@@ -91,6 +96,7 @@ namespace GMW.WebUserControls
|
||||
}
|
||||
else
|
||||
{
|
||||
memLayer.ML.emptySessionVal("FullSearchValue");
|
||||
pnlEmpty.Visible = true;
|
||||
pnlResults.Visible = false;
|
||||
}
|
||||
@@ -105,5 +111,10 @@ namespace GMW.WebUserControls
|
||||
return user_std.UtSn.Traduci(lemma);
|
||||
}
|
||||
|
||||
protected void chkLikeType_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
doSearch();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@@ -49,6 +49,15 @@ namespace GMW.WebUserControls {
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.UpdateProgress updtRicerca;
|
||||
|
||||
/// <summary>
|
||||
/// chkLikeType 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.CheckBox chkLikeType;
|
||||
|
||||
/// <summary>
|
||||
/// pnlResults control.
|
||||
/// </summary>
|
||||
@@ -94,6 +103,15 @@ namespace GMW.WebUserControls {
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Panel pnlMethod;
|
||||
|
||||
/// <summary>
|
||||
/// mod_execUDC1 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::GMW.WebUserControls.mod_execUDC mod_execUDC1;
|
||||
|
||||
/// <summary>
|
||||
/// mod_metodiNoSearch1 control.
|
||||
/// </summary>
|
||||
|
||||
@@ -1,2 +1,56 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_showUDC.ascx.cs" Inherits="GMW.WebUserControls.mod_showUDC" %>
|
||||
risultati di dettaglio per UDC
|
||||
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_showUDC.ascx.cs"
|
||||
Inherits="GMW.WebUserControls.mod_showUDC" %>
|
||||
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
|
||||
<asp:GridView ID="grView" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
|
||||
OnSelectedIndexChanged="grView_SelectedIndexChanged" OnDataBound="grView_DataBound"
|
||||
DataKeyNames="UDC" DataSourceID="ods">
|
||||
<RowStyle CssClass="ctrRowStyle" />
|
||||
<AlternatingRowStyle CssClass="ctrAltRowStyle" />
|
||||
<EditRowStyle CssClass="ctrEditRowStyle" />
|
||||
<SelectedRowStyle CssClass="ctrSelRowStyle" />
|
||||
<FooterStyle CssClass="ctrFooter" />
|
||||
<PagerStyle CssClass="ctrHeaderPager" ForeColor="White" HorizontalAlign="Center" />
|
||||
<HeaderStyle CssClass="ctrHeaderPager" ForeColor="White" Font-Bold="True" />
|
||||
<EmptyDataRowStyle CssClass="ctrRowStyle" />
|
||||
<EmptyDataTemplate>
|
||||
<asp:Label runat="server" ID="lblNoRecord" Text='<%# traduci("noRecord") %>' />
|
||||
</EmptyDataTemplate>
|
||||
<Columns>
|
||||
<asp:TemplateField ShowHeader="False">
|
||||
<HeaderTemplate>
|
||||
<asp:Button ID="btnReset" runat="server" Text='<%# traduci("Reset") %>' OnClick="btnReset_Click"
|
||||
Visible="true" />
|
||||
</HeaderTemplate>
|
||||
<ItemTemplate>
|
||||
<asp:ImageButton ID="imgSelect" runat="server" CausesValidation="False" CommandName="Select"
|
||||
ToolTip='<%# traduci("Select") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.seleziona, SteamWare.dimImg.small) %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="UDC" SortExpression="UDC">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblCodMag" runat="server" Text='<%# Bind("UDC") %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="RagSociale" SortExpression="RagSociale">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblRagSociale" runat="server" Text='<%# Bind("RagSociale") %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="Particolare" SortExpression="Particolare">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblParticolare" runat="server" Text='<%# Bind("Particolare") %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
</Columns>
|
||||
</asp:GridView>
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}"
|
||||
SelectMethod="getByFullUdc"
|
||||
TypeName="GMW_data.DS_magazzinoTableAdapters.v_UdcDetailTableAdapter"
|
||||
ondatabinding="ods_DataBinding">
|
||||
<SelectParameters>
|
||||
<asp:SessionParameter Name="UDC" Type="String" SessionField="FullSearchValue" DefaultValue="UUU" />
|
||||
<asp:SessionParameter Name="CodCS" Type="String" SessionField="CodCS" DefaultValue="MM" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:Label ID="lblNumRec" runat="server" CssClass="txtMini" />
|
||||
<asp:Label ID="lblWarning" runat="server" Visible="false" CssClass="erroreMid" />
|
||||
@@ -1,17 +1,202 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Data;
|
||||
using System.Web.UI.WebControls;
|
||||
using SteamWare;
|
||||
using GMW_data;
|
||||
|
||||
|
||||
namespace GMW.WebUserControls
|
||||
{
|
||||
public partial class mod_showUDC : System.Web.UI.UserControl
|
||||
public partial class mod_showUDC : SteamWare.ApplicationUserControl
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
#region area da NON modificare
|
||||
|
||||
#region area protected
|
||||
|
||||
protected string _idxGridView;
|
||||
protected string _idxGridViewExt;
|
||||
protected string _tabCache;
|
||||
protected bool _showNewBtn = false;
|
||||
|
||||
/// <summary>
|
||||
/// aggiorna controlli datagrid e numero righe in pagina
|
||||
/// </summary>
|
||||
protected override void aggiornaControlliDataGL()
|
||||
{
|
||||
base.aggiornaControlliDataGL();
|
||||
grView.PageSize = _righeDataGridMed;
|
||||
}
|
||||
/// <summary>
|
||||
/// traduce gli header delle colonne
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void grView_DataBound(object sender, EventArgs e)
|
||||
{
|
||||
if (grView.Rows.Count > 0)
|
||||
{
|
||||
LinkButton lb;
|
||||
// aggiorno gli headers
|
||||
foreach (TableCell cella in grView.HeaderRow.Cells)
|
||||
{
|
||||
try
|
||||
{
|
||||
lb = (LinkButton)cella.Controls[0];
|
||||
lb.Text = traduci(lb.Text);
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
}
|
||||
int totRecord = grView.Rows.Count + grView.PageSize * (grView.PageCount - 1);
|
||||
lblNumRec.Text = string.Format("{0} records of ~ {1}", grView.Rows.Count, totRecord);
|
||||
}
|
||||
else
|
||||
{
|
||||
lblNumRec.Text = "";
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// reset della selezione
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnReset_Click(object sender, EventArgs e)
|
||||
{
|
||||
resetSelezione();
|
||||
}
|
||||
/// <summary>
|
||||
/// gestione cambio selezione valore
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void grView_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
// salvo in session il valore selezionato...
|
||||
SteamWare.memLayer.ML.setSessionVal(string.Format("{0}_sel", _idxGridView), grView.SelectedValue, true);
|
||||
// sollevo evento nuovo valore...
|
||||
if (eh_selValore != null)
|
||||
{
|
||||
eh_selValore(this, new EventArgs());
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// resetta la selezione dei valori in caso di modifiche su altri controlli
|
||||
/// </summary>
|
||||
public void resetSelezione()
|
||||
{
|
||||
SteamWare.memLayer.ML.emptySessionVal(string.Format("{0}_sel", _idxGridView));
|
||||
grView.SelectedIndex = -1;
|
||||
//grView.DataBind();
|
||||
lblWarning.Visible = false;
|
||||
if (eh_resetSelezione != null)
|
||||
{
|
||||
eh_resetSelezione(this, new EventArgs());
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// collega i controlli
|
||||
/// </summary>
|
||||
protected override void bindControlli()
|
||||
{
|
||||
base.bindControlli();
|
||||
caricaTabelle();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region gestione eventi
|
||||
|
||||
public event EventHandler eh_resetSelezione;
|
||||
public event EventHandler eh_nuovoValore;
|
||||
public event EventHandler eh_selValore;
|
||||
|
||||
#endregion
|
||||
|
||||
#region public
|
||||
|
||||
/// <summary>
|
||||
/// effettua update del modulo
|
||||
/// </summary>
|
||||
public void doUpdate()
|
||||
{
|
||||
resetSelezione();
|
||||
checkFixOds();
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
|
||||
#region area codice variabile
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// carico le tabelle
|
||||
/// </summary>
|
||||
private void caricaTabelle()
|
||||
{
|
||||
}
|
||||
/// <summary>
|
||||
/// elenco colonne del datagrid
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
protected DataColumnCollection colonneObj()
|
||||
{
|
||||
DS_magazzino.v_UdcDetailDataTable tabella = new DS_magazzino.v_UdcDetailDataTable();
|
||||
DataColumnCollection colonne = tabella.Columns;
|
||||
return colonne;
|
||||
}
|
||||
/// <summary>
|
||||
/// inizializzazione valori di default
|
||||
/// </summary>
|
||||
/// <param name="e"></param>
|
||||
protected override void OnInit(EventArgs e)
|
||||
{
|
||||
base.OnInit(e);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// verifica se attivo filtro company e imposta ods di conseguenza...
|
||||
/// </summary>
|
||||
private void checkFixOds()
|
||||
{
|
||||
// controllo il tipo di ricerca e setto ods...
|
||||
if (memLayer.ML.BoolSessionObj("SearchIsLikeBased"))
|
||||
{
|
||||
// svuoto select parameters
|
||||
ods.SelectParameters.Clear();
|
||||
// imposto i parametri...
|
||||
ods.SelectParameters.Add("searchVal", DbType.String, memLayer.ML.StringSessionObj("FullSearchValue"));
|
||||
ods.SelectParameters.Add("CodCS", DbType.String, memLayer.ML.StringSessionObj("CodCS"));
|
||||
// metto nuovo metodo select
|
||||
ods.SelectMethod = "getByLikeSearch";
|
||||
}
|
||||
else
|
||||
{
|
||||
// svuoto select parameters
|
||||
ods.SelectParameters.Clear();
|
||||
// imposto i parametri...
|
||||
ods.SelectParameters.Add("UDC", DbType.String, memLayer.ML.StringSessionObj("FullSearchValue"));
|
||||
ods.SelectParameters.Add("CodCS", DbType.String, memLayer.ML.StringSessionObj("CodCS"));
|
||||
// metto nuovo metodo select
|
||||
ods.SelectMethod = "getByFullUdc";
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// aggiorno ods al binding..
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void ods_DataBinding(object sender, EventArgs e)
|
||||
{
|
||||
// fix dell'ODS
|
||||
checkFixOds();
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
@@ -12,5 +12,41 @@ namespace GMW.WebUserControls {
|
||||
|
||||
|
||||
public partial class mod_showUDC {
|
||||
|
||||
/// <summary>
|
||||
/// grView 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.GridView grView;
|
||||
|
||||
/// <summary>
|
||||
/// ods 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.ObjectDataSource ods;
|
||||
|
||||
/// <summary>
|
||||
/// lblNumRec 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 lblNumRec;
|
||||
|
||||
/// <summary>
|
||||
/// lblWarning 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 lblWarning;
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Generated
+1277
File diff suppressed because it is too large
Load Diff
+336
-176
@@ -902,6 +902,65 @@ WHERE (IdxTipoCella = @Original_IdxTipoCella)</CommandText>
|
||||
</DbSource>
|
||||
</Sources>
|
||||
</TableAdapter>
|
||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="v_UdcDetailTableAdapter" GeneratorDataComponentClassName="v_UdcDetailTableAdapter" Name="v_UdcDetail" UserDataComponentName="v_UdcDetailTableAdapter">
|
||||
<MainSource>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dbo.v_UdcDetail" DbObjectType="View" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>SELECT UDC, RagSociale, Particolare, DescParticolare, DisegnoGrezzo, Esponente, DescImpianto, DataFus, TurnoFus, CodImballo, Qta, DescStato, ModDate, CodMag, CodBlocco, CodCella, X, Y, Z FROM dbo.v_UdcDetail</CommandText>
|
||||
<Parameters />
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
</MainSource>
|
||||
<Mappings>
|
||||
<Mapping SourceColumn="UDC" DataSetColumn="UDC" />
|
||||
<Mapping SourceColumn="RagSociale" DataSetColumn="RagSociale" />
|
||||
<Mapping SourceColumn="Particolare" DataSetColumn="Particolare" />
|
||||
<Mapping SourceColumn="DescParticolare" DataSetColumn="DescParticolare" />
|
||||
<Mapping SourceColumn="DisegnoGrezzo" DataSetColumn="DisegnoGrezzo" />
|
||||
<Mapping SourceColumn="Esponente" DataSetColumn="Esponente" />
|
||||
<Mapping SourceColumn="DescImpianto" DataSetColumn="DescImpianto" />
|
||||
<Mapping SourceColumn="DataFus" DataSetColumn="DataFus" />
|
||||
<Mapping SourceColumn="TurnoFus" DataSetColumn="TurnoFus" />
|
||||
<Mapping SourceColumn="CodImballo" DataSetColumn="CodImballo" />
|
||||
<Mapping SourceColumn="Qta" DataSetColumn="Qta" />
|
||||
<Mapping SourceColumn="DescStato" DataSetColumn="DescStato" />
|
||||
<Mapping SourceColumn="ModDate" DataSetColumn="ModDate" />
|
||||
<Mapping SourceColumn="CodMag" DataSetColumn="CodMag" />
|
||||
<Mapping SourceColumn="CodBlocco" DataSetColumn="CodBlocco" />
|
||||
<Mapping SourceColumn="CodCella" DataSetColumn="CodCella" />
|
||||
<Mapping SourceColumn="X" DataSetColumn="X" />
|
||||
<Mapping SourceColumn="Y" DataSetColumn="Y" />
|
||||
<Mapping SourceColumn="Z" DataSetColumn="Z" />
|
||||
</Mappings>
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dbo.stp_getUdcDetailFullCode" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByFullUdc" GetMethodModifier="Public" GetMethodName="getByFullUdc" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByFullUdc" UserSourceName="getByFullUdc">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_getUdcDetailFullCode</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="varchar" DbType="AnsiString" Direction="Input" ParameterName="@UDC" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="varchar" DbType="AnsiString" Direction="Input" ParameterName="@CodCS" Precision="0" ProviderType="VarChar" Scale="0" Size="2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dbo.stp_getUdcDetailLikeSearch" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByLikeSearch" GetMethodModifier="Public" GetMethodName="getByLikeSearch" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByLikeSearch" UserSourceName="getByLikeSearch">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_getUdcDetailLikeSearch</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="varchar" DbType="AnsiString" Direction="Input" ParameterName="@searchVal" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="varchar" DbType="AnsiString" Direction="Input" ParameterName="@CodCS" Precision="0" ProviderType="VarChar" Scale="0" Size="2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
</Sources>
|
||||
</TableAdapter>
|
||||
</Tables>
|
||||
<Sources />
|
||||
</DataSource>
|
||||
@@ -913,272 +972,127 @@ WHERE (IdxTipoCella = @Original_IdxTipoCella)</CommandText>
|
||||
<xs:element name="ElencoCartellini" msprop:Generator_UserTableName="ElencoCartellini" msprop:Generator_RowDeletedName="ElencoCartelliniRowDeleted" msprop:Generator_RowChangedName="ElencoCartelliniRowChanged" msprop:Generator_RowClassName="ElencoCartelliniRow" msprop:Generator_RowChangingName="ElencoCartelliniRowChanging" msprop:Generator_RowEvArgName="ElencoCartelliniRowChangeEvent" msprop:Generator_RowEvHandlerName="ElencoCartelliniRowChangeEventHandler" msprop:Generator_TableClassName="ElencoCartelliniDataTable" msprop:Generator_TableVarName="tableElencoCartellini" msprop:Generator_RowDeletingName="ElencoCartelliniRowDeleting" msprop:Generator_TablePropName="ElencoCartellini">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" minOccurs="0">
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" minOccurs="0">
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="35" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" minOccurs="0">
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn" minOccurs="0">
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Esponente" msprop:Generator_UserColumnName="Esponente" msprop:Generator_ColumnVarNameInTable="columnEsponente" msprop:Generator_ColumnPropNameInRow="Esponente" msprop:Generator_ColumnPropNameInTable="EsponenteColumn" minOccurs="0">
|
||||
<xs:element name="Esponente" msprop:Generator_UserColumnName="Esponente" msprop:Generator_ColumnPropNameInRow="Esponente" msprop:Generator_ColumnVarNameInTable="columnEsponente" msprop:Generator_ColumnPropNameInTable="EsponenteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn" minOccurs="0">
|
||||
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescImpianto" msprop:Generator_UserColumnName="DescImpianto" msprop:Generator_ColumnVarNameInTable="columnDescImpianto" msprop:Generator_ColumnPropNameInRow="DescImpianto" msprop:Generator_ColumnPropNameInTable="DescImpiantoColumn" minOccurs="0">
|
||||
<xs:element name="DescImpianto" msprop:Generator_UserColumnName="DescImpianto" msprop:Generator_ColumnPropNameInRow="DescImpianto" msprop:Generator_ColumnVarNameInTable="columnDescImpianto" msprop:Generator_ColumnPropNameInTable="DescImpiantoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn" minOccurs="0">
|
||||
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="8" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
|
||||
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DataFus" msprop:Generator_UserColumnName="DataFus" msprop:Generator_ColumnVarNameInTable="columnDataFus" msprop:Generator_ColumnPropNameInRow="DataFus" msprop:Generator_ColumnPropNameInTable="DataFusColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="TurnoFus" msprop:Generator_UserColumnName="TurnoFus" msprop:Generator_ColumnVarNameInTable="columnTurnoFus" msprop:Generator_ColumnPropNameInRow="TurnoFus" msprop:Generator_ColumnPropNameInTable="TurnoFusColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn" minOccurs="0">
|
||||
<xs:element name="DataFus" msprop:Generator_UserColumnName="DataFus" msprop:Generator_ColumnPropNameInRow="DataFus" msprop:Generator_ColumnVarNameInTable="columnDataFus" msprop:Generator_ColumnPropNameInTable="DataFusColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="TurnoFus" msprop:Generator_UserColumnName="TurnoFus" msprop:Generator_ColumnPropNameInRow="TurnoFus" msprop:Generator_ColumnVarNameInTable="columnTurnoFus" msprop:Generator_ColumnPropNameInTable="TurnoFusColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodSoggetto" msprop:Generator_UserColumnName="CodSoggetto" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn" minOccurs="0">
|
||||
<xs:element name="CodSoggetto" msprop:Generator_UserColumnName="CodSoggetto" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="16" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="NumCont" msprop:Generator_UserColumnName="NumCont" msprop:Generator_ColumnVarNameInTable="columnNumCont" msprop:Generator_ColumnPropNameInRow="NumCont" msprop:Generator_ColumnPropNameInTable="NumContColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Tara" msprop:Generator_UserColumnName="Tara" msprop:Generator_ColumnVarNameInTable="columnTara" msprop:Generator_ColumnPropNameInRow="Tara" msprop:Generator_ColumnPropNameInTable="TaraColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Qta" msprop:Generator_UserColumnName="Qta" msprop:Generator_ColumnVarNameInTable="columnQta" msprop:Generator_ColumnPropNameInRow="Qta" msprop:Generator_ColumnPropNameInTable="QtaColumn" type="xs:decimal" minOccurs="0" />
|
||||
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" minOccurs="0">
|
||||
<xs:element name="NumCont" msprop:Generator_UserColumnName="NumCont" msprop:Generator_ColumnPropNameInRow="NumCont" msprop:Generator_ColumnVarNameInTable="columnNumCont" msprop:Generator_ColumnPropNameInTable="NumContColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Tara" msprop:Generator_UserColumnName="Tara" msprop:Generator_ColumnPropNameInRow="Tara" msprop:Generator_ColumnVarNameInTable="columnTara" msprop:Generator_ColumnPropNameInTable="TaraColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Qta" msprop:Generator_UserColumnName="Qta" msprop:Generator_ColumnPropNameInRow="Qta" msprop:Generator_ColumnVarNameInTable="columnQta" msprop:Generator_ColumnPropNameInTable="QtaColumn" type="xs:decimal" minOccurs="0" />
|
||||
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="IdxPosizione" msprop:Generator_UserColumnName="IdxPosizione" msprop:Generator_ColumnVarNameInTable="columnIdxPosizione" msprop:Generator_ColumnPropNameInRow="IdxPosizione" msprop:Generator_ColumnPropNameInTable="IdxPosizioneColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="PesoTot" msprop:Generator_UserColumnName="PesoTot" msprop:Generator_ColumnVarNameInTable="columnPesoTot" msprop:Generator_ColumnPropNameInRow="PesoTot" msprop:Generator_ColumnPropNameInTable="PesoTotColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="PesoCad" msprop:Generator_UserColumnName="PesoCad" msprop:Generator_ColumnVarNameInTable="columnPesoCad" msprop:Generator_ColumnPropNameInRow="PesoCad" msprop:Generator_ColumnPropNameInTable="PesoCadColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="CreateDate" msprop:Generator_UserColumnName="CreateDate" msprop:Generator_ColumnVarNameInTable="columnCreateDate" msprop:Generator_ColumnPropNameInRow="CreateDate" msprop:Generator_ColumnPropNameInTable="CreateDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="ModDate" msprop:Generator_UserColumnName="ModDate" msprop:Generator_ColumnVarNameInTable="columnModDate" msprop:Generator_ColumnPropNameInRow="ModDate" msprop:Generator_ColumnPropNameInTable="ModDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="IdxPosizione" msprop:Generator_UserColumnName="IdxPosizione" msprop:Generator_ColumnPropNameInRow="IdxPosizione" msprop:Generator_ColumnVarNameInTable="columnIdxPosizione" msprop:Generator_ColumnPropNameInTable="IdxPosizioneColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="PesoTot" msprop:Generator_UserColumnName="PesoTot" msprop:Generator_ColumnPropNameInRow="PesoTot" msprop:Generator_ColumnVarNameInTable="columnPesoTot" msprop:Generator_ColumnPropNameInTable="PesoTotColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="PesoCad" msprop:Generator_UserColumnName="PesoCad" msprop:Generator_ColumnPropNameInRow="PesoCad" msprop:Generator_ColumnVarNameInTable="columnPesoCad" msprop:Generator_ColumnPropNameInTable="PesoCadColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="CreateDate" msprop:Generator_UserColumnName="CreateDate" msprop:Generator_ColumnPropNameInRow="CreateDate" msprop:Generator_ColumnVarNameInTable="columnCreateDate" msprop:Generator_ColumnPropNameInTable="CreateDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="ModDate" msprop:Generator_UserColumnName="ModDate" msprop:Generator_ColumnPropNameInRow="ModDate" msprop:Generator_ColumnVarNameInTable="columnModDate" msprop:Generator_ColumnPropNameInTable="ModDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="AnagMag" msprop:Generator_UserTableName="AnagMag" msprop:Generator_RowDeletedName="AnagMagRowDeleted" msprop:Generator_RowChangedName="AnagMagRowChanged" msprop:Generator_RowClassName="AnagMagRow" msprop:Generator_RowChangingName="AnagMagRowChanging" msprop:Generator_RowEvArgName="AnagMagRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagMagRowChangeEventHandler" msprop:Generator_TableClassName="AnagMagDataTable" msprop:Generator_TableVarName="tableAnagMag" msprop:Generator_RowDeletingName="AnagMagRowDeleting" msprop:Generator_TablePropName="AnagMag">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodMag" msprop:Generator_UserColumnName="CodMag" msprop:Generator_ColumnPropNameInRow="CodMag" msprop:Generator_ColumnVarNameInTable="columnCodMag" msprop:Generator_ColumnPropNameInTable="CodMagColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescMag" msprop:Generator_UserColumnName="DescMag" msprop:Generator_ColumnPropNameInRow="DescMag" msprop:Generator_ColumnVarNameInTable="columnDescMag" msprop:Generator_ColumnPropNameInTable="DescMagColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="PosizioneUdcCorrente" msprop:Generator_UserTableName="PosizioneUdcCorrente" msprop:Generator_RowDeletedName="PosizioneUdcCorrenteRowDeleted" msprop:Generator_RowChangedName="PosizioneUdcCorrenteRowChanged" msprop:Generator_RowClassName="PosizioneUdcCorrenteRow" msprop:Generator_RowChangingName="PosizioneUdcCorrenteRowChanging" msprop:Generator_RowEvArgName="PosizioneUdcCorrenteRowChangeEvent" msprop:Generator_RowEvHandlerName="PosizioneUdcCorrenteRowChangeEventHandler" msprop:Generator_TableClassName="PosizioneUdcCorrenteDataTable" msprop:Generator_TableVarName="tablePosizioneUdcCorrente" msprop:Generator_RowDeletingName="PosizioneUdcCorrenteRowDeleting" msprop:Generator_TablePropName="PosizioneUdcCorrente">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="IdxCella" msprop:Generator_UserColumnName="IdxCella" msprop:Generator_ColumnPropNameInRow="IdxCella" msprop:Generator_ColumnVarNameInTable="columnIdxCella" msprop:Generator_ColumnPropNameInTable="IdxCellaColumn" type="xs:int" />
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DataRif" msprop:Generator_UserColumnName="DataRif" msprop:Generator_ColumnPropNameInRow="DataRif" msprop:Generator_ColumnVarNameInTable="columnDataRif" msprop:Generator_ColumnPropNameInTable="DataRifColumn" type="xs:dateTime" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="PosizioneUdcStorico" msprop:Generator_UserTableName="PosizioneUdcStorico" msprop:Generator_RowDeletedName="PosizioneUdcStoricoRowDeleted" msprop:Generator_RowChangedName="PosizioneUdcStoricoRowChanged" msprop:Generator_RowClassName="PosizioneUdcStoricoRow" msprop:Generator_RowChangingName="PosizioneUdcStoricoRowChanging" msprop:Generator_RowEvArgName="PosizioneUdcStoricoRowChangeEvent" msprop:Generator_RowEvHandlerName="PosizioneUdcStoricoRowChangeEventHandler" msprop:Generator_TableClassName="PosizioneUdcStoricoDataTable" msprop:Generator_TableVarName="tablePosizioneUdcStorico" msprop:Generator_RowDeletingName="PosizioneUdcStoricoRowDeleting" msprop:Generator_TablePropName="PosizioneUdcStorico">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="IdxCella" msprop:Generator_UserColumnName="IdxCella" msprop:Generator_ColumnPropNameInRow="IdxCella" msprop:Generator_ColumnVarNameInTable="columnIdxCella" msprop:Generator_ColumnPropNameInTable="IdxCellaColumn" type="xs:int" />
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DataInizio" msprop:Generator_UserColumnName="DataInizio" msprop:Generator_ColumnPropNameInRow="DataInizio" msprop:Generator_ColumnVarNameInTable="columnDataInizio" msprop:Generator_ColumnPropNameInTable="DataInizioColumn" type="xs:dateTime" />
|
||||
<xs:element name="DataFine" msprop:Generator_UserColumnName="DataFine" msprop:Generator_ColumnPropNameInRow="DataFine" msprop:Generator_ColumnVarNameInTable="columnDataFine" msprop:Generator_ColumnPropNameInTable="DataFineColumn" type="xs:dateTime" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Blocchi" msprop:Generator_UserTableName="Blocchi" msprop:Generator_RowDeletedName="BlocchiRowDeleted" msprop:Generator_RowChangedName="BlocchiRowChanged" msprop:Generator_RowClassName="BlocchiRow" msprop:Generator_RowChangingName="BlocchiRowChanging" msprop:Generator_RowEvArgName="BlocchiRowChangeEvent" msprop:Generator_RowEvHandlerName="BlocchiRowChangeEventHandler" msprop:Generator_TableClassName="BlocchiDataTable" msprop:Generator_TableVarName="tableBlocchi" msprop:Generator_RowDeletingName="BlocchiRowDeleting" msprop:Generator_TablePropName="Blocchi">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxBlocco" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="IdxBlocco" msprop:Generator_ColumnVarNameInTable="columnIdxBlocco" msprop:Generator_ColumnPropNameInRow="IdxBlocco" msprop:Generator_ColumnPropNameInTable="IdxBloccoColumn" type="xs:int" />
|
||||
<xs:element name="CodMag" msprop:Generator_UserColumnName="CodMag" msprop:Generator_ColumnVarNameInTable="columnCodMag" msprop:Generator_ColumnPropNameInRow="CodMag" msprop:Generator_ColumnPropNameInTable="CodMagColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodBlocco" msprop:Generator_UserColumnName="CodBlocco" msprop:Generator_ColumnVarNameInTable="columnCodBlocco" msprop:Generator_ColumnPropNameInRow="CodBlocco" msprop:Generator_ColumnPropNameInTable="CodBloccoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="3" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescBlocco" msprop:Generator_UserColumnName="DescBlocco" msprop:Generator_ColumnVarNameInTable="columnDescBlocco" msprop:Generator_ColumnPropNameInRow="DescBlocco" msprop:Generator_ColumnPropNameInTable="DescBloccoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="NumX" msprop:Generator_UserColumnName="NumX" msprop:Generator_ColumnVarNameInTable="columnNumX" msprop:Generator_ColumnPropNameInRow="NumX" msprop:Generator_ColumnPropNameInTable="NumXColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="NumY" msprop:Generator_UserColumnName="NumY" msprop:Generator_ColumnVarNameInTable="columnNumY" msprop:Generator_ColumnPropNameInRow="NumY" msprop:Generator_ColumnPropNameInTable="NumYColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="NumZ" msprop:Generator_UserColumnName="NumZ" msprop:Generator_ColumnVarNameInTable="columnNumZ" msprop:Generator_ColumnPropNameInRow="NumZ" msprop:Generator_ColumnPropNameInTable="NumZColumn" type="xs:int" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Celle" msprop:Generator_UserTableName="Celle" msprop:Generator_RowDeletedName="CelleRowDeleted" msprop:Generator_RowChangedName="CelleRowChanged" msprop:Generator_RowClassName="CelleRow" msprop:Generator_RowChangingName="CelleRowChanging" msprop:Generator_RowEvArgName="CelleRowChangeEvent" msprop:Generator_RowEvHandlerName="CelleRowChangeEventHandler" msprop:Generator_TableClassName="CelleDataTable" msprop:Generator_TableVarName="tableCelle" msprop:Generator_RowDeletingName="CelleRowDeleting" msprop:Generator_TablePropName="Celle">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxCella" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="IdxCella" msprop:Generator_ColumnVarNameInTable="columnIdxCella" msprop:Generator_ColumnPropNameInRow="IdxCella" msprop:Generator_ColumnPropNameInTable="IdxCellaColumn" type="xs:int" />
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCella" msprop:Generator_UserColumnName="CodCella" msprop:Generator_ColumnVarNameInTable="columnCodCella" msprop:Generator_ColumnPropNameInRow="CodCella" msprop:Generator_ColumnPropNameInTable="CodCellaColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="IdxTipoCella" msprop:Generator_UserColumnName="IdxTipoCella" msprop:Generator_ColumnVarNameInTable="columnIdxTipoCella" msprop:Generator_ColumnPropNameInRow="IdxTipoCella" msprop:Generator_ColumnPropNameInTable="IdxTipoCellaColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Descrizione" msprop:Generator_UserColumnName="Descrizione" msprop:Generator_ColumnVarNameInTable="columnDescrizione" msprop:Generator_ColumnPropNameInRow="Descrizione" msprop:Generator_ColumnPropNameInTable="DescrizioneColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Attiva" msprop:Generator_UserColumnName="Attiva" msprop:Generator_ColumnVarNameInTable="columnAttiva" msprop:Generator_ColumnPropNameInRow="Attiva" msprop:Generator_ColumnPropNameInTable="AttivaColumn" type="xs:boolean" minOccurs="0" />
|
||||
<xs:element name="IdxBlocco" msprop:Generator_UserColumnName="IdxBlocco" msprop:Generator_ColumnVarNameInTable="columnIdxBlocco" msprop:Generator_ColumnPropNameInRow="IdxBlocco" msprop:Generator_ColumnPropNameInTable="IdxBloccoColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="X" msprop:Generator_UserColumnName="X" msprop:Generator_ColumnVarNameInTable="columnX" msprop:Generator_ColumnPropNameInRow="X" msprop:Generator_ColumnPropNameInTable="XColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Y" msprop:Generator_UserColumnName="Y" msprop:Generator_ColumnVarNameInTable="columnY" msprop:Generator_ColumnPropNameInRow="Y" msprop:Generator_ColumnPropNameInTable="YColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Z" msprop:Generator_UserColumnName="Z" msprop:Generator_ColumnVarNameInTable="columnZ" msprop:Generator_ColumnPropNameInRow="Z" msprop:Generator_ColumnPropNameInTable="ZColumn" type="xs:int" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TipoCella" msprop:Generator_UserTableName="TipoCella" msprop:Generator_RowDeletedName="TipoCellaRowDeleted" msprop:Generator_RowChangedName="TipoCellaRowChanged" msprop:Generator_RowClassName="TipoCellaRow" msprop:Generator_RowChangingName="TipoCellaRowChanging" msprop:Generator_RowEvArgName="TipoCellaRowChangeEvent" msprop:Generator_RowEvHandlerName="TipoCellaRowChangeEventHandler" msprop:Generator_TableClassName="TipoCellaDataTable" msprop:Generator_TableVarName="tableTipoCella" msprop:Generator_RowDeletingName="TipoCellaRowDeleting" msprop:Generator_TablePropName="TipoCella">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxTipoCella" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="IdxTipoCella" msprop:Generator_ColumnVarNameInTable="columnIdxTipoCella" msprop:Generator_ColumnPropNameInRow="IdxTipoCella" msprop:Generator_ColumnPropNameInTable="IdxTipoCellaColumn" type="xs:int" />
|
||||
<xs:element name="CodMag" msprop:Generator_UserColumnName="CodMag" msprop:Generator_ColumnVarNameInTable="columnCodMag" msprop:Generator_ColumnPropNameInRow="CodMag" msprop:Generator_ColumnPropNameInTable="CodMagColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
@@ -1193,12 +1107,254 @@ WHERE (IdxTipoCella = @Original_IdxTipoCella)</CommandText>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Quantita" msprop:Generator_UserColumnName="Quantita" msprop:Generator_ColumnVarNameInTable="columnQuantita" msprop:Generator_ColumnPropNameInRow="Quantita" msprop:Generator_ColumnPropNameInTable="QuantitaColumn" type="xs:int" />
|
||||
<xs:element name="Capienza" msprop:Generator_UserColumnName="Capienza" msprop:Generator_ColumnVarNameInTable="columnCapienza" msprop:Generator_ColumnPropNameInRow="Capienza" msprop:Generator_ColumnPropNameInTable="CapienzaColumn" type="xs:int" />
|
||||
<xs:element name="Max_X" msprop:Generator_UserColumnName="Max_X" msprop:Generator_ColumnVarNameInTable="columnMax_X" msprop:Generator_ColumnPropNameInRow="Max_X" msprop:Generator_ColumnPropNameInTable="Max_XColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Max_Y" msprop:Generator_UserColumnName="Max_Y" msprop:Generator_ColumnVarNameInTable="columnMax_Y" msprop:Generator_ColumnPropNameInRow="Max_Y" msprop:Generator_ColumnPropNameInTable="Max_YColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Max_Z" msprop:Generator_UserColumnName="Max_Z" msprop:Generator_ColumnVarNameInTable="columnMax_Z" msprop:Generator_ColumnPropNameInRow="Max_Z" msprop:Generator_ColumnPropNameInTable="Max_ZColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Max_Kg" msprop:Generator_UserColumnName="Max_Kg" msprop:Generator_ColumnVarNameInTable="columnMax_Kg" msprop:Generator_ColumnPropNameInRow="Max_Kg" msprop:Generator_ColumnPropNameInTable="Max_KgColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="DescMag" msprop:Generator_UserColumnName="DescMag" msprop:Generator_ColumnVarNameInTable="columnDescMag" msprop:Generator_ColumnPropNameInRow="DescMag" msprop:Generator_ColumnPropNameInTable="DescMagColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="PosizioneUdcCorrente" msprop:Generator_UserTableName="PosizioneUdcCorrente" msprop:Generator_RowDeletedName="PosizioneUdcCorrenteRowDeleted" msprop:Generator_RowChangedName="PosizioneUdcCorrenteRowChanged" msprop:Generator_RowClassName="PosizioneUdcCorrenteRow" msprop:Generator_RowChangingName="PosizioneUdcCorrenteRowChanging" msprop:Generator_RowEvArgName="PosizioneUdcCorrenteRowChangeEvent" msprop:Generator_RowEvHandlerName="PosizioneUdcCorrenteRowChangeEventHandler" msprop:Generator_TableClassName="PosizioneUdcCorrenteDataTable" msprop:Generator_TableVarName="tablePosizioneUdcCorrente" msprop:Generator_RowDeletingName="PosizioneUdcCorrenteRowDeleting" msprop:Generator_TablePropName="PosizioneUdcCorrente">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="IdxCella" msprop:Generator_UserColumnName="IdxCella" msprop:Generator_ColumnVarNameInTable="columnIdxCella" msprop:Generator_ColumnPropNameInRow="IdxCella" msprop:Generator_ColumnPropNameInTable="IdxCellaColumn" type="xs:int" />
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DataRif" msprop:Generator_UserColumnName="DataRif" msprop:Generator_ColumnVarNameInTable="columnDataRif" msprop:Generator_ColumnPropNameInRow="DataRif" msprop:Generator_ColumnPropNameInTable="DataRifColumn" type="xs:dateTime" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="PosizioneUdcStorico" msprop:Generator_UserTableName="PosizioneUdcStorico" msprop:Generator_RowDeletedName="PosizioneUdcStoricoRowDeleted" msprop:Generator_RowChangedName="PosizioneUdcStoricoRowChanged" msprop:Generator_RowClassName="PosizioneUdcStoricoRow" msprop:Generator_RowChangingName="PosizioneUdcStoricoRowChanging" msprop:Generator_RowEvArgName="PosizioneUdcStoricoRowChangeEvent" msprop:Generator_RowEvHandlerName="PosizioneUdcStoricoRowChangeEventHandler" msprop:Generator_TableClassName="PosizioneUdcStoricoDataTable" msprop:Generator_TableVarName="tablePosizioneUdcStorico" msprop:Generator_RowDeletingName="PosizioneUdcStoricoRowDeleting" msprop:Generator_TablePropName="PosizioneUdcStorico">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="IdxCella" msprop:Generator_UserColumnName="IdxCella" msprop:Generator_ColumnVarNameInTable="columnIdxCella" msprop:Generator_ColumnPropNameInRow="IdxCella" msprop:Generator_ColumnPropNameInTable="IdxCellaColumn" type="xs:int" />
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DataInizio" msprop:Generator_UserColumnName="DataInizio" msprop:Generator_ColumnVarNameInTable="columnDataInizio" msprop:Generator_ColumnPropNameInRow="DataInizio" msprop:Generator_ColumnPropNameInTable="DataInizioColumn" type="xs:dateTime" />
|
||||
<xs:element name="DataFine" msprop:Generator_UserColumnName="DataFine" msprop:Generator_ColumnVarNameInTable="columnDataFine" msprop:Generator_ColumnPropNameInRow="DataFine" msprop:Generator_ColumnPropNameInTable="DataFineColumn" type="xs:dateTime" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Blocchi" msprop:Generator_UserTableName="Blocchi" msprop:Generator_RowDeletedName="BlocchiRowDeleted" msprop:Generator_RowChangedName="BlocchiRowChanged" msprop:Generator_RowClassName="BlocchiRow" msprop:Generator_RowChangingName="BlocchiRowChanging" msprop:Generator_RowEvArgName="BlocchiRowChangeEvent" msprop:Generator_RowEvHandlerName="BlocchiRowChangeEventHandler" msprop:Generator_TableClassName="BlocchiDataTable" msprop:Generator_TableVarName="tableBlocchi" msprop:Generator_RowDeletingName="BlocchiRowDeleting" msprop:Generator_TablePropName="Blocchi">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxBlocco" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="IdxBlocco" msprop:Generator_ColumnPropNameInRow="IdxBlocco" msprop:Generator_ColumnVarNameInTable="columnIdxBlocco" msprop:Generator_ColumnPropNameInTable="IdxBloccoColumn" type="xs:int" />
|
||||
<xs:element name="CodMag" msprop:Generator_UserColumnName="CodMag" msprop:Generator_ColumnPropNameInRow="CodMag" msprop:Generator_ColumnVarNameInTable="columnCodMag" msprop:Generator_ColumnPropNameInTable="CodMagColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodBlocco" msprop:Generator_UserColumnName="CodBlocco" msprop:Generator_ColumnPropNameInRow="CodBlocco" msprop:Generator_ColumnVarNameInTable="columnCodBlocco" msprop:Generator_ColumnPropNameInTable="CodBloccoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="3" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescBlocco" msprop:Generator_UserColumnName="DescBlocco" msprop:Generator_ColumnPropNameInRow="DescBlocco" msprop:Generator_ColumnVarNameInTable="columnDescBlocco" msprop:Generator_ColumnPropNameInTable="DescBloccoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="NumX" msprop:Generator_UserColumnName="NumX" msprop:Generator_ColumnPropNameInRow="NumX" msprop:Generator_ColumnVarNameInTable="columnNumX" msprop:Generator_ColumnPropNameInTable="NumXColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="NumY" msprop:Generator_UserColumnName="NumY" msprop:Generator_ColumnPropNameInRow="NumY" msprop:Generator_ColumnVarNameInTable="columnNumY" msprop:Generator_ColumnPropNameInTable="NumYColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="NumZ" msprop:Generator_UserColumnName="NumZ" msprop:Generator_ColumnPropNameInRow="NumZ" msprop:Generator_ColumnVarNameInTable="columnNumZ" msprop:Generator_ColumnPropNameInTable="NumZColumn" type="xs:int" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Celle" msprop:Generator_UserTableName="Celle" msprop:Generator_RowDeletedName="CelleRowDeleted" msprop:Generator_RowChangedName="CelleRowChanged" msprop:Generator_RowClassName="CelleRow" msprop:Generator_RowChangingName="CelleRowChanging" msprop:Generator_RowEvArgName="CelleRowChangeEvent" msprop:Generator_RowEvHandlerName="CelleRowChangeEventHandler" msprop:Generator_TableClassName="CelleDataTable" msprop:Generator_TableVarName="tableCelle" msprop:Generator_RowDeletingName="CelleRowDeleting" msprop:Generator_TablePropName="Celle">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxCella" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="IdxCella" msprop:Generator_ColumnPropNameInRow="IdxCella" msprop:Generator_ColumnVarNameInTable="columnIdxCella" msprop:Generator_ColumnPropNameInTable="IdxCellaColumn" type="xs:int" />
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCella" msprop:Generator_UserColumnName="CodCella" msprop:Generator_ColumnPropNameInRow="CodCella" msprop:Generator_ColumnVarNameInTable="columnCodCella" msprop:Generator_ColumnPropNameInTable="CodCellaColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="IdxTipoCella" msprop:Generator_UserColumnName="IdxTipoCella" msprop:Generator_ColumnPropNameInRow="IdxTipoCella" msprop:Generator_ColumnVarNameInTable="columnIdxTipoCella" msprop:Generator_ColumnPropNameInTable="IdxTipoCellaColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Descrizione" msprop:Generator_UserColumnName="Descrizione" msprop:Generator_ColumnPropNameInRow="Descrizione" msprop:Generator_ColumnVarNameInTable="columnDescrizione" msprop:Generator_ColumnPropNameInTable="DescrizioneColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Attiva" msprop:Generator_UserColumnName="Attiva" msprop:Generator_ColumnPropNameInRow="Attiva" msprop:Generator_ColumnVarNameInTable="columnAttiva" msprop:Generator_ColumnPropNameInTable="AttivaColumn" type="xs:boolean" minOccurs="0" />
|
||||
<xs:element name="IdxBlocco" msprop:Generator_UserColumnName="IdxBlocco" msprop:Generator_ColumnPropNameInRow="IdxBlocco" msprop:Generator_ColumnVarNameInTable="columnIdxBlocco" msprop:Generator_ColumnPropNameInTable="IdxBloccoColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="X" msprop:Generator_UserColumnName="X" msprop:Generator_ColumnPropNameInRow="X" msprop:Generator_ColumnVarNameInTable="columnX" msprop:Generator_ColumnPropNameInTable="XColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Y" msprop:Generator_UserColumnName="Y" msprop:Generator_ColumnPropNameInRow="Y" msprop:Generator_ColumnVarNameInTable="columnY" msprop:Generator_ColumnPropNameInTable="YColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Z" msprop:Generator_UserColumnName="Z" msprop:Generator_ColumnPropNameInRow="Z" msprop:Generator_ColumnVarNameInTable="columnZ" msprop:Generator_ColumnPropNameInTable="ZColumn" type="xs:int" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="TipoCella" msprop:Generator_UserTableName="TipoCella" msprop:Generator_RowDeletedName="TipoCellaRowDeleted" msprop:Generator_RowChangedName="TipoCellaRowChanged" msprop:Generator_RowClassName="TipoCellaRow" msprop:Generator_RowChangingName="TipoCellaRowChanging" msprop:Generator_RowEvArgName="TipoCellaRowChangeEvent" msprop:Generator_RowEvHandlerName="TipoCellaRowChangeEventHandler" msprop:Generator_TableClassName="TipoCellaDataTable" msprop:Generator_TableVarName="tableTipoCella" msprop:Generator_RowDeletingName="TipoCellaRowDeleting" msprop:Generator_TablePropName="TipoCella">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxTipoCella" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="IdxTipoCella" msprop:Generator_ColumnPropNameInRow="IdxTipoCella" msprop:Generator_ColumnVarNameInTable="columnIdxTipoCella" msprop:Generator_ColumnPropNameInTable="IdxTipoCellaColumn" type="xs:int" />
|
||||
<xs:element name="CodMag" msprop:Generator_UserColumnName="CodMag" msprop:Generator_ColumnPropNameInRow="CodMag" msprop:Generator_ColumnVarNameInTable="columnCodMag" msprop:Generator_ColumnPropNameInTable="CodMagColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Quantita" msprop:Generator_UserColumnName="Quantita" msprop:Generator_ColumnPropNameInRow="Quantita" msprop:Generator_ColumnVarNameInTable="columnQuantita" msprop:Generator_ColumnPropNameInTable="QuantitaColumn" type="xs:int" />
|
||||
<xs:element name="Capienza" msprop:Generator_UserColumnName="Capienza" msprop:Generator_ColumnPropNameInRow="Capienza" msprop:Generator_ColumnVarNameInTable="columnCapienza" msprop:Generator_ColumnPropNameInTable="CapienzaColumn" type="xs:int" />
|
||||
<xs:element name="Max_X" msprop:Generator_UserColumnName="Max_X" msprop:Generator_ColumnPropNameInRow="Max_X" msprop:Generator_ColumnVarNameInTable="columnMax_X" msprop:Generator_ColumnPropNameInTable="Max_XColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Max_Y" msprop:Generator_UserColumnName="Max_Y" msprop:Generator_ColumnPropNameInRow="Max_Y" msprop:Generator_ColumnVarNameInTable="columnMax_Y" msprop:Generator_ColumnPropNameInTable="Max_YColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Max_Z" msprop:Generator_UserColumnName="Max_Z" msprop:Generator_ColumnPropNameInRow="Max_Z" msprop:Generator_ColumnVarNameInTable="columnMax_Z" msprop:Generator_ColumnPropNameInTable="Max_ZColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Max_Kg" msprop:Generator_UserColumnName="Max_Kg" msprop:Generator_ColumnPropNameInRow="Max_Kg" msprop:Generator_ColumnVarNameInTable="columnMax_Kg" msprop:Generator_ColumnPropNameInTable="Max_KgColumn" type="xs:double" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="v_UdcDetail" msprop:Generator_UserTableName="v_UdcDetail" msprop:Generator_RowDeletedName="v_UdcDetailRowDeleted" msprop:Generator_TableClassName="v_UdcDetailDataTable" msprop:Generator_RowChangedName="v_UdcDetailRowChanged" msprop:Generator_RowClassName="v_UdcDetailRow" msprop:Generator_RowChangingName="v_UdcDetailRowChanging" msprop:Generator_RowEvArgName="v_UdcDetailRowChangeEvent" msprop:Generator_RowEvHandlerName="v_UdcDetailRowChangeEventHandler" msprop:Generator_TablePropName="v_UdcDetail" msprop:Generator_TableVarName="tablev_UdcDetail" msprop:Generator_RowDeletingName="v_UdcDetailRowDeleting">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="35" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Esponente" msprop:Generator_UserColumnName="Esponente" msprop:Generator_ColumnPropNameInRow="Esponente" msprop:Generator_ColumnVarNameInTable="columnEsponente" msprop:Generator_ColumnPropNameInTable="EsponenteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescImpianto" msprop:Generator_UserColumnName="DescImpianto" msprop:Generator_ColumnPropNameInRow="DescImpianto" msprop:Generator_ColumnVarNameInTable="columnDescImpianto" msprop:Generator_ColumnPropNameInTable="DescImpiantoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DataFus" msprop:Generator_UserColumnName="DataFus" msprop:Generator_ColumnPropNameInRow="DataFus" msprop:Generator_ColumnVarNameInTable="columnDataFus" msprop:Generator_ColumnPropNameInTable="DataFusColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="TurnoFus" msprop:Generator_UserColumnName="TurnoFus" msprop:Generator_ColumnPropNameInRow="TurnoFus" msprop:Generator_ColumnVarNameInTable="columnTurnoFus" msprop:Generator_ColumnPropNameInTable="TurnoFusColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Qta" msprop:Generator_UserColumnName="Qta" msprop:Generator_ColumnPropNameInRow="Qta" msprop:Generator_ColumnVarNameInTable="columnQta" msprop:Generator_ColumnPropNameInTable="QtaColumn" type="xs:decimal" minOccurs="0" />
|
||||
<xs:element name="DescStato" msprop:Generator_UserColumnName="DescStato" msprop:Generator_ColumnPropNameInRow="DescStato" msprop:Generator_ColumnVarNameInTable="columnDescStato" msprop:Generator_ColumnPropNameInTable="DescStatoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="ModDate" msprop:Generator_UserColumnName="ModDate" msprop:Generator_ColumnPropNameInRow="ModDate" msprop:Generator_ColumnVarNameInTable="columnModDate" msprop:Generator_ColumnPropNameInTable="ModDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="CodMag" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodMag" msprop:Generator_ColumnPropNameInRow="CodMag" msprop:Generator_ColumnVarNameInTable="columnCodMag" msprop:Generator_ColumnPropNameInTable="CodMagColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodBlocco" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodBlocco" msprop:Generator_ColumnPropNameInRow="CodBlocco" msprop:Generator_ColumnVarNameInTable="columnCodBlocco" msprop:Generator_ColumnPropNameInTable="CodBloccoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="3" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCella" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodCella" msprop:Generator_ColumnPropNameInRow="CodCella" msprop:Generator_ColumnVarNameInTable="columnCodCella" msprop:Generator_ColumnPropNameInTable="CodCellaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="X" msdata:ReadOnly="true" msprop:Generator_UserColumnName="X" msprop:Generator_ColumnPropNameInRow="X" msprop:Generator_ColumnVarNameInTable="columnX" msprop:Generator_ColumnPropNameInTable="XColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Y" msdata:ReadOnly="true" msprop:Generator_UserColumnName="Y" msprop:Generator_ColumnPropNameInRow="Y" msprop:Generator_ColumnVarNameInTable="columnY" msprop:Generator_ColumnPropNameInTable="YColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Z" msdata:ReadOnly="true" msprop:Generator_UserColumnName="Z" msprop:Generator_ColumnPropNameInRow="Z" msprop:Generator_ColumnVarNameInTable="columnZ" msprop:Generator_ColumnPropNameInTable="ZColumn" type="xs:int" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
@@ -1234,6 +1390,10 @@ WHERE (IdxTipoCella = @Original_IdxTipoCella)</CommandText>
|
||||
<xs:selector xpath=".//mstns:TipoCella" />
|
||||
<xs:field xpath="mstns:IdxTipoCella" />
|
||||
</xs:unique>
|
||||
<xs:unique name="v_UdcDetail_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
|
||||
<xs:selector xpath=".//mstns:v_UdcDetail" />
|
||||
<xs:field xpath="mstns:UDC" />
|
||||
</xs:unique>
|
||||
</xs:element>
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
|
||||
@@ -4,18 +4,19 @@
|
||||
Changes to this file may cause incorrect behavior and will be lost if
|
||||
the code is regenerated.
|
||||
</autogenerated>-->
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="14" ViewPortY="-17" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-17" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<Shapes>
|
||||
<Shape ID="DesignTable:ElencoCartellini" ZOrder="13" X="68" Y="333" Height="419" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="368" />
|
||||
<Shape ID="DesignTable:AnagMag" ZOrder="12" X="1014" Y="372" Height="210" Width="248" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
|
||||
<Shape ID="DesignTable:PosizioneUdcCorrente" ZOrder="11" X="375" Y="565" Height="153" Width="273" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:PosizioneUdcStorico" ZOrder="9" X="387" Y="322" Height="172" Width="263" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:Blocchi" ZOrder="2" X="1014" Y="652" Height="305" Width="257" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
||||
<Shape ID="DesignTable:Celle" ZOrder="1" X="722" Y="527" Height="343" Width="216" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
|
||||
<Shape ID="DesignTable:TipoCella" ZOrder="4" X="1008" Y="-2" Height="324" Width="273" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||
<Shape ID="DesignTable:ElencoCartellini" ZOrder="14" X="68" Y="333" Height="419" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="368" />
|
||||
<Shape ID="DesignTable:AnagMag" ZOrder="13" X="1014" Y="372" Height="210" Width="248" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
|
||||
<Shape ID="DesignTable:PosizioneUdcCorrente" ZOrder="12" X="375" Y="565" Height="153" Width="273" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||
<Shape ID="DesignTable:PosizioneUdcStorico" ZOrder="10" X="387" Y="322" Height="172" Width="263" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:Blocchi" ZOrder="3" X="1014" Y="652" Height="305" Width="257" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
||||
<Shape ID="DesignTable:Celle" ZOrder="2" X="722" Y="527" Height="343" Width="216" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
|
||||
<Shape ID="DesignTable:TipoCella" ZOrder="5" X="1008" Y="-2" Height="324" Width="273" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||
<Shape ID="DesignTable:v_UdcDetail" ZOrder="1" X="693" Y="9" Height="343" Width="256" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
</Shapes>
|
||||
<Connectors>
|
||||
<Connector ID="DesignRelation:FK_PosizioneUdcCorrente_ElencoCartellini" ZOrder="10" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_PosizioneUdcCorrente_ElencoCartellini" ZOrder="11" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>302</X>
|
||||
@@ -27,7 +28,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_PosizioneUdcStorico_ElencoCartellini" ZOrder="8" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_PosizioneUdcStorico_ElencoCartellini" ZOrder="9" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>302</X>
|
||||
@@ -39,7 +40,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_Blocchi_AnagMag" ZOrder="7" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_Blocchi_AnagMag" ZOrder="8" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>1116</X>
|
||||
@@ -51,7 +52,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_PosizioneUdcCorrente_Celle" ZOrder="6" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_PosizioneUdcCorrente_Celle" ZOrder="7" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>722</X>
|
||||
@@ -63,7 +64,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_Celle_Blocchi1" ZOrder="5" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_Celle_Blocchi1" ZOrder="6" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>1014</X>
|
||||
@@ -75,7 +76,7 @@
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_TipoCella_AnagMag" ZOrder="3" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_TipoCella_AnagMag" ZOrder="4" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>1107</X>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user