Update x gestione codice dinamico x dataset del report

Aggiunto Imballo come tipo e x elenco

git-svn-id: https://keyhammer.ath.cx/svn/GMW/trunk@36 365432ac-a1b5-4ffd-bb28-6d3099d32164
This commit is contained in:
samuele
2010-05-07 06:49:17 +00:00
parent 2a71d14a1f
commit 6e83771b58
45 changed files with 298 additions and 153 deletions
+1
View File
@@ -82,6 +82,7 @@
<Compile Include="Type\Cliente.cs" />
<Compile Include="Type\CompanySito.cs" />
<Compile Include="Type\elenchi.cs" />
<Compile Include="Type\Imballo.cs" />
<Compile Include="Type\Impianto.cs" />
<Compile Include="Type\Operatore.cs" />
<Compile Include="Type\StatiProdotto.cs" />
+47
View File
@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using GMW_data;
namespace GMW.Type
{
public class Imballo
{
public Imballo()
{
}
public Imballo(DS_Applicazione.AnagImballiRow riga)
{
CodImballo = riga.CodImballo;
DescImballo = riga.DescImballo;
ClasseArticolo = riga.ClasseArticolo;
}
/// <summary>
/// Codice Imballo
/// </summary>
public string CodImballo { get; set; }
/// <summary>
/// Descrizione imballo
/// </summary>
public string DescImballo { get; set; }
/// <summary>
/// Classe Articolo
/// </summary>
public string ClasseArticolo { get; set; }
/// <summary>
/// inizializza a partire da una riga impianto tipizzata
/// </summary>
/// <param name="riga"></param>
public void setFromTabRow(DS_Applicazione.AnagImballiRow riga)
{
CodImballo = riga.CodImballo;
DescImballo = riga.DescImballo;
ClasseArticolo = riga.ClasseArticolo;
}
}
}
+34
View File
@@ -184,6 +184,40 @@ namespace GMW.Type
#endregion
#region area imballi
protected Imballo[] _elencoImballi;
/// <summary>
/// legge una tab di tipo AnagImballi e la converte ad un array di tipo Imballo[]
/// </summary>
/// <param name="tabImpianti"></param>
public void caricaImballi(DS_Applicazione.AnagImballiDataTable tabImballi)
{
// conto quanti elementi ha la tab x inizializzare l'array...
int numRighe = tabImballi.Rows.Count;
_elencoImballi = new Imballo[numRighe];
// prendo un obj impianto da valorizzare di volta in volta...
Imballo obj;
for (int i = 0; i < numRighe; i++)
{
obj = new Imballo(tabImballi[i]);
_elencoImballi[i] = obj;
}
}
/// <summary>
/// Elenco Imballi
/// </summary>
public Imballo[] elencoImballi
{
get
{
return _elencoImballi;
}
}
#endregion
#region area bilance
protected Bilancia[] _elencoBilance;
+10 -2
View File
@@ -14,7 +14,7 @@ namespace GMW.WS
/// <summary>
/// WebService per gestioen sw bilance
/// </summary>
[WebService(Namespace = "http://www.steamware.net/", Description = "Web Services che funziona da collettore di tutte le richieste delle applicazioni per le bilance integrate a <b>GMW</b> v.1.0.34")]
[WebService(Namespace = "http://www.steamware.net/", Description = "Web Services che funziona da collettore di tutte le richieste delle applicazioni per le bilance integrate a <b>GMW</b> v.1.0.36")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class bilance : System.Web.Services.WebService
@@ -97,6 +97,15 @@ namespace GMW.WS
return gestEl.elencoImpianti;
}
/// <summary>
/// Elenco anagrafico imballi
/// </summary>
[WebMethod(Description = "Elenco anagrafico imballi")]
public GMW.Type.Imballo[] ElencoImballi()
{
gestEl.caricaImballi(DataProxy.obj.taAnagImballi.GetData());
return gestEl.elencoImballi;
}
/// <summary>
/// Elenco anagrafica impianti dati codice company e sito (no dataset)
/// </summary>
/// <param name="CodCS">Codice company/sito</param>
@@ -107,7 +116,6 @@ namespace GMW.WS
gestEl.caricaImpianti(DataProxy.obj.taAnagImp.stp_getByCodCS(CodCS));
return gestEl.elencoImpianti;
}
/// <summary>
/// fornisce l'anagrafica bilance
/// </summary>
+9 -6
View File
@@ -1,4 +1,5 @@
<?xml version="1.0"?><configuration>
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
@@ -34,10 +35,11 @@
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies>
<add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
<httpHandlers>
<remove verb="*" path="*.asmx"/>
@@ -87,7 +89,8 @@
<add key="printerCartCompleto" value="\\Vostro410\PDFCreator"/>
<add key="PageWidthCartCompleto" value="21cm"/>
<add key="PageHeightCartCompleto" value="14.8cm"/>
<add key="MarginCompleto" value="0.5cm"/>
<add key="MarginCompleto" value="0.5cm"/>
<add key="ReportDatasource" value="GMWDataSet_stp_getStatoByUdc"/>
<add key="_logDir" value="~/logs/"/>
<add key="_logLevel" value="6"/>
<add key="_logMaxMb" value="30"/>
Binary file not shown.
Binary file not shown.
+1
View File
@@ -7,6 +7,7 @@
<add key="PageWidthCartCompleto" value="21cm"/>
<add key="PageHeightCartCompleto" value="14.8cm"/>
<add key="MarginCompleto" value="0.5cm"/>
<add key="ReportDatasource" value="GMWDataSet_stp_getStatoByUdc"/>
<add key="_logDir" value="~/logs/"/>
<add key="_logLevel" value="6"/>
<add key="_logMaxMb" value="30"/>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+8 -8
View File
@@ -7459,11 +7459,11 @@ namespace GMW_data {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string ClasseArticolo {
get {
try {
return ((string)(this[this.tableAnagImballi.ClasseArticoloColumn]));
if (this.IsClasseArticoloNull()) {
return string.Empty;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'ClasseArticolo\' in table \'AnagImballi\' is DBNull.", e);
else {
return ((string)(this[this.tableAnagImballi.ClasseArticoloColumn]));
}
}
set {
@@ -7474,11 +7474,11 @@ namespace GMW_data {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string DescImballo {
get {
try {
return ((string)(this[this.tableAnagImballi.DescImballoColumn]));
if (this.IsDescImballoNull()) {
return string.Empty;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'DescImballo\' in table \'AnagImballi\' is DBNull.", e);
else {
return ((string)(this[this.tableAnagImballi.DescImballoColumn]));
}
}
set {
+105 -105
View File
@@ -1364,8 +1364,8 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="AnagStati" msprop:Generator_UserTableName="AnagStati" msprop:Generator_RowDeletedName="AnagStatiRowDeleted" msprop:Generator_RowChangedName="AnagStatiRowChanged" msprop:Generator_RowClassName="AnagStatiRow" msprop:Generator_RowChangingName="AnagStatiRowChanging" msprop:Generator_RowEvArgName="AnagStatiRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagStatiRowChangeEventHandler" msprop:Generator_TableClassName="AnagStatiDataTable" msprop:Generator_TableVarName="tableAnagStati" msprop:Generator_RowDeletingName="AnagStatiRowDeleting" msprop:Generator_TablePropName="AnagStati">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxStato" msprop:Generator_UserColumnName="IdxStato" msprop:Generator_ColumnVarNameInTable="columnIdxStato" msprop:Generator_ColumnPropNameInRow="IdxStato" msprop:Generator_ColumnPropNameInTable="IdxStatoColumn" type="xs:int" />
<xs:element name="DescrStato" msprop:Generator_UserColumnName="DescrStato" msprop:Generator_ColumnVarNameInTable="columnDescrStato" msprop:Generator_ColumnPropNameInRow="DescrStato" msprop:Generator_ColumnPropNameInTable="DescrStatoColumn" minOccurs="0">
<xs:element name="IdxStato" msprop:Generator_UserColumnName="IdxStato" msprop:Generator_ColumnPropNameInRow="IdxStato" msprop:Generator_ColumnVarNameInTable="columnIdxStato" msprop:Generator_ColumnPropNameInTable="IdxStatoColumn" type="xs:int" />
<xs:element name="DescrStato" msprop:Generator_UserColumnName="DescrStato" msprop:Generator_ColumnPropNameInRow="DescrStato" msprop:Generator_ColumnVarNameInTable="columnDescrStato" msprop:Generator_ColumnPropNameInTable="DescrStatoColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1378,14 +1378,14 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="AnagTipoDichiaraz" msprop:Generator_UserTableName="AnagTipoDichiaraz" msprop:Generator_RowDeletedName="AnagTipoDichiarazRowDeleted" msprop:Generator_RowChangedName="AnagTipoDichiarazRowChanged" msprop:Generator_RowClassName="AnagTipoDichiarazRow" msprop:Generator_RowChangingName="AnagTipoDichiarazRowChanging" msprop:Generator_RowEvArgName="AnagTipoDichiarazRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagTipoDichiarazRowChangeEventHandler" msprop:Generator_TableClassName="AnagTipoDichiarazDataTable" msprop:Generator_TableVarName="tableAnagTipoDichiaraz" msprop:Generator_RowDeletingName="AnagTipoDichiarazRowDeleting" msprop:Generator_TablePropName="AnagTipoDichiaraz">
<xs:complexType>
<xs:sequence>
<xs:element name="CodTipoDichiaraz" msprop:Generator_UserColumnName="CodTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnCodTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="CodTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="CodTipoDichiarazColumn">
<xs:element name="CodTipoDichiaraz" msprop:Generator_UserColumnName="CodTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="CodTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnCodTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="CodTipoDichiarazColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescrTipoDichiaraz" msprop:Generator_UserColumnName="DescrTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnDescrTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="DescrTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="DescrTipoDichiarazColumn" minOccurs="0">
<xs:element name="DescrTipoDichiaraz" msprop:Generator_UserColumnName="DescrTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="DescrTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnDescrTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="DescrTipoDichiarazColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1398,14 +1398,14 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="AnagStatiProdotto" msprop:Generator_UserTableName="AnagStatiProdotto" msprop:Generator_RowDeletedName="AnagStatiProdottoRowDeleted" msprop:Generator_RowChangedName="AnagStatiProdottoRowChanged" msprop:Generator_RowClassName="AnagStatiProdottoRow" msprop:Generator_RowChangingName="AnagStatiProdottoRowChanging" msprop:Generator_RowEvArgName="AnagStatiProdottoRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagStatiProdottoRowChangeEventHandler" msprop:Generator_TableClassName="AnagStatiProdottoDataTable" msprop:Generator_TableVarName="tableAnagStatiProdotto" msprop:Generator_RowDeletingName="AnagStatiProdottoRowDeleting" msprop:Generator_TablePropName="AnagStatiProdotto">
<xs:complexType>
<xs:sequence>
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn">
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescStato" msprop:Generator_UserColumnName="DescStato" msprop:Generator_ColumnVarNameInTable="columnDescStato" msprop:Generator_ColumnPropNameInRow="DescStato" msprop:Generator_ColumnPropNameInTable="DescStatoColumn" 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" />
@@ -1418,28 +1418,28 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="AnagArticoli" msprop:Generator_UserTableName="AnagArticoli" msprop:Generator_RowDeletedName="AnagArticoliRowDeleted" msprop:Generator_RowChangedName="AnagArticoliRowChanged" msprop:Generator_RowClassName="AnagArticoliRow" msprop:Generator_RowChangingName="AnagArticoliRowChanging" msprop:Generator_RowEvArgName="AnagArticoliRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagArticoliRowChangeEventHandler" msprop:Generator_TableClassName="AnagArticoliDataTable" msprop:Generator_TableVarName="tableAnagArticoli" msprop:Generator_RowDeletingName="AnagArticoliRowDeleting" msprop:Generator_TablePropName="AnagArticoli">
<xs:complexType>
<xs:sequence>
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn">
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescrArticolo" msprop:Generator_UserColumnName="DescrArticolo" msprop:Generator_ColumnPropNameInRow="DescrArticolo" msprop:Generator_ColumnVarNameInTable="columnDescrArticolo" msprop:Generator_ColumnPropNameInTable="DescrArticoloColumn" minOccurs="0">
<xs:element name="DescrArticolo" msprop:Generator_UserColumnName="DescrArticolo" msprop:Generator_ColumnVarNameInTable="columnDescrArticolo" msprop:Generator_ColumnPropNameInRow="DescrArticolo" msprop:Generator_ColumnPropNameInTable="DescrArticoloColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Cliente" msprop:Generator_UserColumnName="Cliente" msprop:Generator_ColumnPropNameInRow="Cliente" msprop:Generator_ColumnVarNameInTable="columnCliente" msprop:Generator_ColumnPropNameInTable="ClienteColumn" minOccurs="0">
<xs:element name="Cliente" msprop:Generator_UserColumnName="Cliente" msprop:Generator_ColumnVarNameInTable="columnCliente" msprop:Generator_ColumnPropNameInRow="Cliente" msprop:Generator_ColumnPropNameInTable="ClienteColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Famiglia" msprop:Generator_UserColumnName="Famiglia" msprop:Generator_ColumnPropNameInRow="Famiglia" msprop:Generator_ColumnVarNameInTable="columnFamiglia" msprop:Generator_ColumnPropNameInTable="FamigliaColumn" minOccurs="0">
<xs:element name="Famiglia" msprop:Generator_UserColumnName="Famiglia" msprop:Generator_ColumnVarNameInTable="columnFamiglia" msprop:Generator_ColumnPropNameInRow="Famiglia" msprop:Generator_ColumnPropNameInTable="FamigliaColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1452,37 +1452,37 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="Impianti2Articoli" msprop:Generator_UserTableName="Impianti2Articoli" msprop:Generator_RowDeletedName="Impianti2ArticoliRowDeleted" msprop:Generator_RowChangedName="Impianti2ArticoliRowChanged" msprop:Generator_RowClassName="Impianti2ArticoliRow" msprop:Generator_RowChangingName="Impianti2ArticoliRowChanging" msprop:Generator_RowEvArgName="Impianti2ArticoliRowChangeEvent" msprop:Generator_RowEvHandlerName="Impianti2ArticoliRowChangeEventHandler" msprop:Generator_TableClassName="Impianti2ArticoliDataTable" msprop:Generator_TableVarName="tableImpianti2Articoli" msprop:Generator_RowDeletingName="Impianti2ArticoliRowDeleting" msprop:Generator_TablePropName="Impianti2Articoli">
<xs:complexType>
<xs:sequence>
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</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">
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="InizioProd" msprop:Generator_UserColumnName="InizioProd" msprop:Generator_ColumnPropNameInRow="InizioProd" msprop:Generator_ColumnVarNameInTable="columnInizioProd" msprop:Generator_ColumnPropNameInTable="InizioProdColumn" type="xs:dateTime" />
<xs:element name="FineProd" msprop:Generator_UserColumnName="FineProd" msprop:Generator_ColumnPropNameInRow="FineProd" msprop:Generator_ColumnVarNameInTable="columnFineProd" msprop:Generator_ColumnPropNameInTable="FineProdColumn" type="xs:dateTime" 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:element name="InizioProd" msprop:Generator_UserColumnName="InizioProd" msprop:Generator_ColumnVarNameInTable="columnInizioProd" msprop:Generator_ColumnPropNameInRow="InizioProd" msprop:Generator_ColumnPropNameInTable="InizioProdColumn" type="xs:dateTime" />
<xs:element name="FineProd" msprop:Generator_UserColumnName="FineProd" msprop:Generator_ColumnVarNameInTable="columnFineProd" msprop:Generator_ColumnPropNameInRow="FineProd" msprop:Generator_ColumnPropNameInTable="FineProdColumn" type="xs:dateTime" minOccurs="0" />
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FiguraIncisa" msprop:Generator_UserColumnName="FiguraIncisa" msprop:Generator_ColumnPropNameInRow="FiguraIncisa" msprop:Generator_ColumnVarNameInTable="columnFiguraIncisa" msprop:Generator_ColumnPropNameInTable="FiguraIncisaColumn" minOccurs="0">
<xs:element name="FiguraIncisa" msprop:Generator_UserColumnName="FiguraIncisa" msprop:Generator_ColumnVarNameInTable="columnFiguraIncisa" msprop:Generator_ColumnPropNameInRow="FiguraIncisa" msprop:Generator_ColumnPropNameInTable="FiguraIncisaColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1495,82 +1495,82 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="StoricoEventi" msprop:Generator_UserTableName="StoricoEventi" msprop:Generator_RowDeletedName="StoricoEventiRowDeleted" msprop:Generator_RowChangedName="StoricoEventiRowChanged" msprop:Generator_RowClassName="StoricoEventiRow" msprop:Generator_RowChangingName="StoricoEventiRowChanging" msprop:Generator_RowEvArgName="StoricoEventiRowChangeEvent" msprop:Generator_RowEvHandlerName="StoricoEventiRowChangeEventHandler" msprop:Generator_TableClassName="StoricoEventiDataTable" msprop:Generator_TableVarName="tableStoricoEventi" msprop:Generator_RowDeletingName="StoricoEventiRowDeleting" msprop:Generator_TablePropName="StoricoEventi">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxEv" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="IdxEv" msprop:Generator_ColumnPropNameInRow="IdxEv" msprop:Generator_ColumnVarNameInTable="columnIdxEv" msprop:Generator_ColumnPropNameInTable="IdxEvColumn" type="xs:int" />
<xs:element name="DataEv" msprop:Generator_UserColumnName="DataEv" msprop:Generator_ColumnPropNameInRow="DataEv" msprop:Generator_ColumnVarNameInTable="columnDataEv" msprop:Generator_ColumnPropNameInTable="DataEvColumn" type="xs:dateTime" />
<xs:element name="CodEvento" msprop:Generator_UserColumnName="CodEvento" msprop:Generator_ColumnPropNameInRow="CodEvento" msprop:Generator_ColumnVarNameInTable="columnCodEvento" msprop:Generator_ColumnPropNameInTable="CodEventoColumn">
<xs:element name="IdxEv" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="IdxEv" msprop:Generator_ColumnVarNameInTable="columnIdxEv" msprop:Generator_ColumnPropNameInRow="IdxEv" msprop:Generator_ColumnPropNameInTable="IdxEvColumn" type="xs:int" />
<xs:element name="DataEv" msprop:Generator_UserColumnName="DataEv" msprop:Generator_ColumnVarNameInTable="columnDataEv" msprop:Generator_ColumnPropNameInRow="DataEv" msprop:Generator_ColumnPropNameInTable="DataEvColumn" type="xs:dateTime" />
<xs:element name="CodEvento" msprop:Generator_UserColumnName="CodEvento" msprop:Generator_ColumnVarNameInTable="columnCodEvento" msprop:Generator_ColumnPropNameInRow="CodEvento" msprop:Generator_ColumnPropNameInTable="CodEventoColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="10" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodOperatore" msprop:Generator_UserColumnName="CodOperatore" msprop:Generator_ColumnPropNameInRow="CodOperatore" msprop:Generator_ColumnVarNameInTable="columnCodOperatore" msprop:Generator_ColumnPropNameInTable="CodOperatoreColumn" minOccurs="0">
<xs:element name="CodOperatore" msprop:Generator_UserColumnName="CodOperatore" msprop:Generator_ColumnVarNameInTable="columnCodOperatore" msprop:Generator_ColumnPropNameInRow="CodOperatore" msprop:Generator_ColumnPropNameInTable="CodOperatoreColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="10" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodTipoDichiaraz" msprop:Generator_UserColumnName="CodTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="CodTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnCodTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="CodTipoDichiarazColumn" minOccurs="0">
<xs:element name="CodTipoDichiaraz" msprop:Generator_UserColumnName="CodTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnCodTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="CodTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="CodTipoDichiarazColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodCompany" msprop:Generator_UserColumnName="CodCompany" msprop:Generator_ColumnPropNameInRow="CodCompany" msprop:Generator_ColumnVarNameInTable="columnCodCompany" msprop:Generator_ColumnPropNameInTable="CodCompanyColumn" minOccurs="0">
<xs:element name="CodCompany" msprop:Generator_UserColumnName="CodCompany" msprop:Generator_ColumnVarNameInTable="columnCodCompany" msprop:Generator_ColumnPropNameInRow="CodCompany" msprop:Generator_ColumnPropNameInTable="CodCompanyColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="4" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ODP" msprop:Generator_UserColumnName="ODP" msprop:Generator_ColumnPropNameInRow="ODP" msprop:Generator_ColumnVarNameInTable="columnODP" msprop:Generator_ColumnPropNameInTable="ODPColumn" minOccurs="0">
<xs:element name="ODP" msprop:Generator_UserColumnName="ODP" msprop:Generator_ColumnVarNameInTable="columnODP" msprop:Generator_ColumnPropNameInRow="ODP" msprop:Generator_ColumnPropNameInTable="ODPColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="20" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
<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="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="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="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" 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="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="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" 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: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_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn" minOccurs="0">
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FiguraIncisa" msprop:Generator_UserColumnName="FiguraIncisa" msprop:Generator_ColumnPropNameInRow="FiguraIncisa" msprop:Generator_ColumnVarNameInTable="columnFiguraIncisa" msprop:Generator_ColumnPropNameInTable="FiguraIncisaColumn" minOccurs="0">
<xs:element name="FiguraIncisa" msprop:Generator_UserColumnName="FiguraIncisa" msprop:Generator_ColumnVarNameInTable="columnFiguraIncisa" msprop:Generator_ColumnPropNameInRow="FiguraIncisa" msprop:Generator_ColumnPropNameInTable="FiguraIncisaColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1583,14 +1583,14 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="RelazUDC" msprop:Generator_UserTableName="RelazUDC" msprop:Generator_RowDeletedName="RelazUDCRowDeleted" msprop:Generator_RowChangedName="RelazUDCRowChanged" msprop:Generator_RowClassName="RelazUDCRow" msprop:Generator_RowChangingName="RelazUDCRowChanging" msprop:Generator_RowEvArgName="RelazUDCRowChangeEvent" msprop:Generator_RowEvHandlerName="RelazUDCRowChangeEventHandler" msprop:Generator_TableClassName="RelazUDCDataTable" msprop:Generator_TableVarName="tableRelazUDC" msprop:Generator_RowDeletingName="RelazUDCRowDeleting" msprop:Generator_TablePropName="RelazUDC">
<xs:complexType>
<xs:sequence>
<xs:element name="UDC_parent" msprop:Generator_UserColumnName="UDC_parent" msprop:Generator_ColumnPropNameInRow="UDC_parent" msprop:Generator_ColumnVarNameInTable="columnUDC_parent" msprop:Generator_ColumnPropNameInTable="UDC_parentColumn">
<xs:element name="UDC_parent" msprop:Generator_UserColumnName="UDC_parent" msprop:Generator_ColumnVarNameInTable="columnUDC_parent" msprop:Generator_ColumnPropNameInRow="UDC_parent" msprop:Generator_ColumnPropNameInTable="UDC_parentColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="UDC_child" msprop:Generator_UserColumnName="UDC_child" msprop:Generator_ColumnPropNameInRow="UDC_child" msprop:Generator_ColumnVarNameInTable="columnUDC_child" msprop:Generator_ColumnPropNameInTable="UDC_childColumn">
<xs:element name="UDC_child" msprop:Generator_UserColumnName="UDC_child" msprop:Generator_ColumnVarNameInTable="columnUDC_child" msprop:Generator_ColumnPropNameInRow="UDC_child" msprop:Generator_ColumnPropNameInTable="UDC_childColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1603,35 +1603,35 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="AnagImpianti" msprop:Generator_UserTableName="AnagImpianti" msprop:Generator_RowDeletedName="AnagImpiantiRowDeleted" msprop:Generator_RowChangedName="AnagImpiantiRowChanged" msprop:Generator_RowClassName="AnagImpiantiRow" msprop:Generator_RowChangingName="AnagImpiantiRowChanging" msprop:Generator_RowEvArgName="AnagImpiantiRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagImpiantiRowChangeEventHandler" msprop:Generator_TableClassName="AnagImpiantiDataTable" msprop:Generator_TableVarName="tableAnagImpianti" msprop:Generator_RowDeletingName="AnagImpiantiRowDeleting" msprop:Generator_TablePropName="AnagImpianti">
<xs:complexType>
<xs:sequence>
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
<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: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="DescImpianto" msprop:Generator_UserColumnName="DescImpianto" msprop:Generator_ColumnPropNameInRow="DescImpianto" msprop:Generator_ColumnVarNameInTable="columnDescImpianto" msprop:Generator_ColumnPropNameInTable="DescImpiantoColumn" minOccurs="0">
<xs:element name="DescImpianto" msprop:Generator_UserColumnName="DescImpianto" msprop:Generator_ColumnVarNameInTable="columnDescImpianto" msprop:Generator_ColumnPropNameInRow="DescImpianto" 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="Campionatura" msprop:Generator_UserColumnName="Campionatura" msprop:Generator_ColumnPropNameInRow="Campionatura" msprop:Generator_ColumnVarNameInTable="columnCampionatura" msprop:Generator_ColumnPropNameInTable="CampionaturaColumn" minOccurs="0">
<xs:element name="Campionatura" msprop:Generator_UserColumnName="Campionatura" msprop:Generator_ColumnVarNameInTable="columnCampionatura" msprop:Generator_ColumnPropNameInRow="Campionatura" msprop:Generator_ColumnPropNameInTable="CampionaturaColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TipoLinea" msprop:Generator_UserColumnName="TipoLinea" msprop:Generator_ColumnPropNameInRow="TipoLinea" msprop:Generator_ColumnVarNameInTable="columnTipoLinea" msprop:Generator_ColumnPropNameInTable="TipoLineaColumn" minOccurs="0">
<xs:element name="TipoLinea" msprop:Generator_UserColumnName="TipoLinea" msprop:Generator_ColumnVarNameInTable="columnTipoLinea" msprop:Generator_ColumnPropNameInRow="TipoLinea" msprop:Generator_ColumnPropNameInTable="TipoLineaColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="6" />
@@ -1644,35 +1644,35 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="AnagCompanySito" msprop:Generator_UserTableName="AnagCompanySito" msprop:Generator_RowDeletedName="AnagCompanySitoRowDeleted" msprop:Generator_RowChangedName="AnagCompanySitoRowChanged" msprop:Generator_RowClassName="AnagCompanySitoRow" msprop:Generator_RowChangingName="AnagCompanySitoRowChanging" msprop:Generator_RowEvArgName="AnagCompanySitoRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagCompanySitoRowChangeEventHandler" msprop:Generator_TableClassName="AnagCompanySitoDataTable" msprop:Generator_TableVarName="tableAnagCompanySito" msprop:Generator_RowDeletingName="AnagCompanySitoRowDeleting" msprop:Generator_TablePropName="AnagCompanySito">
<xs:complexType>
<xs:sequence>
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
<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="CodCompany" msprop:Generator_UserColumnName="CodCompany" msprop:Generator_ColumnPropNameInRow="CodCompany" msprop:Generator_ColumnVarNameInTable="columnCodCompany" msprop:Generator_ColumnPropNameInTable="CodCompanyColumn" minOccurs="0">
<xs:element name="CodCompany" msprop:Generator_UserColumnName="CodCompany" msprop:Generator_ColumnVarNameInTable="columnCodCompany" msprop:Generator_ColumnPropNameInRow="CodCompany" msprop:Generator_ColumnPropNameInTable="CodCompanyColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescCompany" msprop:Generator_UserColumnName="DescCompany" msprop:Generator_ColumnPropNameInRow="DescCompany" msprop:Generator_ColumnVarNameInTable="columnDescCompany" msprop:Generator_ColumnPropNameInTable="DescCompanyColumn" minOccurs="0">
<xs:element name="DescCompany" msprop:Generator_UserColumnName="DescCompany" msprop:Generator_ColumnVarNameInTable="columnDescCompany" msprop:Generator_ColumnPropNameInRow="DescCompany" msprop:Generator_ColumnPropNameInTable="DescCompanyColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodSito" msprop:Generator_UserColumnName="CodSito" msprop:Generator_ColumnPropNameInRow="CodSito" msprop:Generator_ColumnVarNameInTable="columnCodSito" msprop:Generator_ColumnPropNameInTable="CodSitoColumn" minOccurs="0">
<xs:element name="CodSito" msprop:Generator_UserColumnName="CodSito" msprop:Generator_ColumnVarNameInTable="columnCodSito" msprop:Generator_ColumnPropNameInRow="CodSito" msprop:Generator_ColumnPropNameInTable="CodSitoColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescSito" msprop:Generator_UserColumnName="DescSito" msprop:Generator_ColumnPropNameInRow="DescSito" msprop:Generator_ColumnVarNameInTable="columnDescSito" msprop:Generator_ColumnPropNameInTable="DescSitoColumn" minOccurs="0">
<xs:element name="DescSito" msprop:Generator_UserColumnName="DescSito" msprop:Generator_ColumnVarNameInTable="columnDescSito" msprop:Generator_ColumnPropNameInRow="DescSito" msprop:Generator_ColumnPropNameInTable="DescSitoColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1685,21 +1685,21 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="AnagBilance" msprop:Generator_UserTableName="AnagBilance" msprop:Generator_RowDeletedName="AnagBilanceRowDeleted" msprop:Generator_RowChangedName="AnagBilanceRowChanged" msprop:Generator_RowClassName="AnagBilanceRow" msprop:Generator_RowChangingName="AnagBilanceRowChanging" msprop:Generator_RowEvArgName="AnagBilanceRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagBilanceRowChangeEventHandler" msprop:Generator_TableClassName="AnagBilanceDataTable" msprop:Generator_TableVarName="tableAnagBilance" msprop:Generator_RowDeletingName="AnagBilanceRowDeleting" msprop:Generator_TablePropName="AnagBilance">
<xs:complexType>
<xs:sequence>
<xs:element name="CodBilancia" msprop:Generator_UserColumnName="CodBilancia" msprop:Generator_ColumnVarNameInTable="columnCodBilancia" msprop:Generator_ColumnPropNameInRow="CodBilancia" msprop:Generator_ColumnPropNameInTable="CodBilanciaColumn">
<xs:element name="CodBilancia" msprop:Generator_UserColumnName="CodBilancia" msprop:Generator_ColumnPropNameInRow="CodBilancia" msprop:Generator_ColumnVarNameInTable="columnCodBilancia" msprop:Generator_ColumnPropNameInTable="CodBilanciaColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescrImpianto" msprop:Generator_UserColumnName="DescrImpianto" msprop:Generator_ColumnVarNameInTable="columnDescrImpianto" msprop:Generator_ColumnPropNameInRow="DescrImpianto" msprop:Generator_ColumnPropNameInTable="DescrImpiantoColumn" minOccurs="0">
<xs:element name="DescrImpianto" msprop:Generator_UserColumnName="DescrImpianto" msprop:Generator_ColumnPropNameInRow="DescrImpianto" msprop:Generator_ColumnVarNameInTable="columnDescrImpianto" msprop:Generator_ColumnPropNameInTable="DescrImpiantoColumn" 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: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" />
@@ -1712,142 +1712,142 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<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="AnagImballi" msprop:Generator_UserTableName="AnagImballi" msprop:Generator_RowDeletedName="AnagImballiRowDeleted" msprop:Generator_RowChangedName="AnagImballiRowChanged" msprop:Generator_RowClassName="AnagImballiRow" msprop:Generator_RowChangingName="AnagImballiRowChanging" msprop:Generator_RowEvArgName="AnagImballiRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagImballiRowChangeEventHandler" msprop:Generator_TableClassName="AnagImballiDataTable" msprop:Generator_TableVarName="tableAnagImballi" msprop:Generator_RowDeletingName="AnagImballiRowDeleting" msprop:Generator_TablePropName="AnagImballi">
<xs:complexType>
<xs:sequence>
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn">
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="15" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ClasseArticolo" msprop:Generator_UserColumnName="ClasseArticolo" msprop:Generator_ColumnVarNameInTable="columnClasseArticolo" msprop:Generator_ColumnPropNameInRow="ClasseArticolo" msprop:Generator_ColumnPropNameInTable="ClasseArticoloColumn" minOccurs="0">
<xs:element name="ClasseArticolo" msprop:Generator_UserColumnName="ClasseArticolo" msprop:Generator_ColumnPropNameInRow="ClasseArticolo" msprop:nullValue="_empty" msprop:Generator_ColumnVarNameInTable="columnClasseArticolo" msprop:Generator_ColumnPropNameInTable="ClasseArticoloColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescImballo" msprop:Generator_UserColumnName="DescImballo" msprop:Generator_ColumnVarNameInTable="columnDescImballo" msprop:Generator_ColumnPropNameInRow="DescImballo" msprop:Generator_ColumnPropNameInTable="DescImballoColumn" minOccurs="0">
<xs:element name="DescImballo" msprop:Generator_UserColumnName="DescImballo" msprop:Generator_ColumnPropNameInRow="DescImballo" msprop:nullValue="_empty" msprop:Generator_ColumnVarNameInTable="columnDescImballo" msprop:Generator_ColumnPropNameInTable="DescImballoColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="30" />
@@ -1860,96 +1860,96 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="v_ArtInProd" msprop:Generator_UserTableName="v_ArtInProd" msprop:Generator_RowDeletedName="v_ArtInProdRowDeleted" msprop:Generator_RowChangedName="v_ArtInProdRowChanged" msprop:Generator_RowClassName="v_ArtInProdRow" msprop:Generator_RowChangingName="v_ArtInProdRowChanging" msprop:Generator_RowEvArgName="v_ArtInProdRowChangeEvent" msprop:Generator_RowEvHandlerName="v_ArtInProdRowChangeEventHandler" msprop:Generator_TableClassName="v_ArtInProdDataTable" msprop:Generator_TableVarName="tablev_ArtInProd" msprop:Generator_RowDeletingName="v_ArtInProdRowDeleting" msprop:Generator_TablePropName="v_ArtInProd">
<xs:complexType>
<xs:sequence>
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
<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">
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="8" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="NumStampate" msprop:Generator_UserColumnName="NumStampate" msprop:Generator_ColumnVarNameInTable="columnNumStampate" msprop:Generator_ColumnPropNameInRow="NumStampate" msprop:Generator_ColumnPropNameInTable="NumStampateColumn" type="xs:decimal" />
<xs:element name="DataInizio" msprop:Generator_UserColumnName="DataInizio" msprop:Generator_ColumnVarNameInTable="columnDataInizio" msprop:Generator_ColumnPropNameInRow="DataInizio" msprop:Generator_ColumnPropNameInTable="DataInizioColumn" type="xs:dateTime" minOccurs="0" />
<xs:element name="TurnoInizio" msprop:Generator_UserColumnName="TurnoInizio" msprop:Generator_ColumnVarNameInTable="columnTurnoInizio" msprop:Generator_ColumnPropNameInRow="TurnoInizio" msprop:Generator_ColumnPropNameInTable="TurnoInizioColumn">
<xs:element name="NumStampate" msprop:Generator_UserColumnName="NumStampate" msprop:Generator_ColumnPropNameInRow="NumStampate" msprop:Generator_ColumnVarNameInTable="columnNumStampate" msprop:Generator_ColumnPropNameInTable="NumStampateColumn" type="xs:decimal" />
<xs:element name="DataInizio" msprop:Generator_UserColumnName="DataInizio" msprop:Generator_ColumnPropNameInRow="DataInizio" msprop:Generator_ColumnVarNameInTable="columnDataInizio" msprop:Generator_ColumnPropNameInTable="DataInizioColumn" type="xs:dateTime" minOccurs="0" />
<xs:element name="TurnoInizio" msprop:Generator_UserColumnName="TurnoInizio" msprop:Generator_ColumnPropNameInRow="TurnoInizio" msprop:Generator_ColumnVarNameInTable="columnTurnoInizio" msprop:Generator_ColumnPropNameInTable="TurnoInizioColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="6" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="InizioValidita" msprop:Generator_UserColumnName="InizioValidita" msprop:Generator_ColumnVarNameInTable="columnInizioValidita" msprop:Generator_ColumnPropNameInRow="InizioValidita" msprop:Generator_ColumnPropNameInTable="InizioValiditaColumn" type="xs:dateTime" />
<xs:element name="FineValidita" msprop:Generator_UserColumnName="FineValidita" msprop:Generator_ColumnVarNameInTable="columnFineValidita" msprop:Generator_ColumnPropNameInRow="FineValidita" msprop:Generator_ColumnPropNameInTable="FineValiditaColumn" type="xs:dateTime" minOccurs="0" />
<xs:element name="NumFigure" msprop:Generator_UserColumnName="NumFigure" msprop:Generator_ColumnVarNameInTable="columnNumFigure" msprop:Generator_ColumnPropNameInRow="NumFigure" msprop:Generator_ColumnPropNameInTable="NumFigureColumn" type="xs:decimal" minOccurs="0" />
<xs:element name="CodCliente" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" minOccurs="0">
<xs:element name="InizioValidita" msprop:Generator_UserColumnName="InizioValidita" msprop:Generator_ColumnPropNameInRow="InizioValidita" msprop:Generator_ColumnVarNameInTable="columnInizioValidita" msprop:Generator_ColumnPropNameInTable="InizioValiditaColumn" type="xs:dateTime" />
<xs:element name="FineValidita" msprop:Generator_UserColumnName="FineValidita" msprop:Generator_ColumnPropNameInRow="FineValidita" msprop:Generator_ColumnVarNameInTable="columnFineValidita" msprop:Generator_ColumnPropNameInTable="FineValiditaColumn" type="xs:dateTime" minOccurs="0" />
<xs:element name="NumFigure" msprop:Generator_UserColumnName="NumFigure" msprop:Generator_ColumnPropNameInRow="NumFigure" msprop:Generator_ColumnVarNameInTable="columnNumFigure" msprop:Generator_ColumnPropNameInTable="NumFigureColumn" type="xs:decimal" minOccurs="0" />
<xs:element name="CodCliente" msdata:ReadOnly="true" 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="50" />
</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="CodArticolo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodArticolo" msprop:Generator_ColumnVarNameInTable="columnCodArticolo" msprop:Generator_ColumnPropNameInRow="CodArticolo" msprop:Generator_ColumnPropNameInTable="CodArticoloColumn" minOccurs="0">
<xs:element name="CodArticolo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodArticolo" msprop:Generator_ColumnPropNameInRow="CodArticolo" msprop:Generator_ColumnVarNameInTable="columnCodArticolo" msprop:Generator_ColumnPropNameInTable="CodArticoloColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</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">
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn">
<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="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn" minOccurs="0">
<xs:element name="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="4" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescFamiglia" msprop:Generator_UserColumnName="DescFamiglia" msprop:Generator_ColumnVarNameInTable="columnDescFamiglia" msprop:Generator_ColumnPropNameInRow="DescFamiglia" msprop:Generator_ColumnPropNameInTable="DescFamigliaColumn" minOccurs="0">
<xs:element name="DescFamiglia" msprop:Generator_UserColumnName="DescFamiglia" msprop:Generator_ColumnPropNameInRow="DescFamiglia" msprop:Generator_ColumnVarNameInTable="columnDescFamiglia" msprop:Generator_ColumnPropNameInTable="DescFamigliaColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</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="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" />
@@ -1962,63 +1962,63 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="AnagOperatori" msprop:Generator_UserTableName="AnagOperatori" msprop:Generator_RowDeletedName="AnagOperatoriRowDeleted" msprop:Generator_RowChangedName="AnagOperatoriRowChanged" msprop:Generator_RowClassName="AnagOperatoriRow" msprop:Generator_RowChangingName="AnagOperatoriRowChanging" msprop:Generator_RowEvArgName="AnagOperatoriRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagOperatoriRowChangeEventHandler" msprop:Generator_TableClassName="AnagOperatoriDataTable" msprop:Generator_TableVarName="tableAnagOperatori" msprop:Generator_RowDeletingName="AnagOperatoriRowDeleting" msprop:Generator_TablePropName="AnagOperatori">
<xs:complexType>
<xs:sequence>
<xs:element name="CodSoggetto" msprop:Generator_UserColumnName="CodSoggetto" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn">
<xs:element name="CodSoggetto" msprop:Generator_UserColumnName="CodSoggetto" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="16" />
</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">
<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="CodDipendente" msprop:Generator_UserColumnName="CodDipendente" msprop:Generator_ColumnVarNameInTable="columnCodDipendente" msprop:Generator_ColumnPropNameInRow="CodDipendente" msprop:Generator_ColumnPropNameInTable="CodDipendenteColumn" minOccurs="0">
<xs:element name="CodDipendente" msprop:Generator_UserColumnName="CodDipendente" msprop:Generator_ColumnPropNameInRow="CodDipendente" msprop:Generator_ColumnVarNameInTable="columnCodDipendente" msprop:Generator_ColumnPropNameInTable="CodDipendenteColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="7" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodAziendaOp" msprop:Generator_UserColumnName="CodAziendaOp" msprop:Generator_ColumnVarNameInTable="columnCodAziendaOp" msprop:Generator_ColumnPropNameInRow="CodAziendaOp" msprop:Generator_ColumnPropNameInTable="CodAziendaOpColumn">
<xs:element name="CodAziendaOp" msprop:Generator_UserColumnName="CodAziendaOp" msprop:Generator_ColumnPropNameInRow="CodAziendaOp" msprop:Generator_ColumnVarNameInTable="columnCodAziendaOp" msprop:Generator_ColumnPropNameInTable="CodAziendaOpColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="6" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescAziendaOp" msprop:Generator_UserColumnName="DescAziendaOp" msprop:Generator_ColumnVarNameInTable="columnDescAziendaOp" msprop:Generator_ColumnPropNameInRow="DescAziendaOp" msprop:Generator_ColumnPropNameInTable="DescAziendaOpColumn" minOccurs="0">
<xs:element name="DescAziendaOp" msprop:Generator_UserColumnName="DescAziendaOp" msprop:Generator_ColumnPropNameInRow="DescAziendaOp" msprop:Generator_ColumnVarNameInTable="columnDescAziendaOp" msprop:Generator_ColumnPropNameInTable="DescAziendaOpColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodFilialeOp" msprop:Generator_UserColumnName="CodFilialeOp" msprop:Generator_ColumnVarNameInTable="columnCodFilialeOp" msprop:Generator_ColumnPropNameInRow="CodFilialeOp" msprop:Generator_ColumnPropNameInTable="CodFilialeOpColumn">
<xs:element name="CodFilialeOp" msprop:Generator_UserColumnName="CodFilialeOp" msprop:Generator_ColumnPropNameInRow="CodFilialeOp" msprop:Generator_ColumnVarNameInTable="columnCodFilialeOp" msprop:Generator_ColumnPropNameInTable="CodFilialeOpColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="10" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescFilialeOp" msprop:Generator_UserColumnName="DescFilialeOp" msprop:Generator_ColumnVarNameInTable="columnDescFilialeOp" msprop:Generator_ColumnPropNameInRow="DescFilialeOp" msprop:Generator_ColumnPropNameInTable="DescFilialeOpColumn" minOccurs="0">
<xs:element name="DescFilialeOp" msprop:Generator_UserColumnName="DescFilialeOp" msprop:Generator_ColumnPropNameInRow="DescFilialeOp" msprop:Generator_ColumnVarNameInTable="columnDescFilialeOp" msprop:Generator_ColumnPropNameInTable="DescFilialeOpColumn" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Cognome" msprop:Generator_UserColumnName="Cognome" msprop:Generator_ColumnVarNameInTable="columnCognome" msprop:Generator_ColumnPropNameInRow="Cognome" msprop:Generator_ColumnPropNameInTable="CognomeColumn">
<xs:element name="Cognome" msprop:Generator_UserColumnName="Cognome" msprop:Generator_ColumnPropNameInRow="Cognome" msprop:Generator_ColumnVarNameInTable="columnCognome" msprop:Generator_ColumnPropNameInTable="CognomeColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Nome" msprop:Generator_UserColumnName="Nome" msprop:Generator_ColumnVarNameInTable="columnNome" msprop:Generator_ColumnPropNameInRow="Nome" msprop:Generator_ColumnPropNameInTable="NomeColumn">
<xs:element name="Nome" msprop:Generator_UserColumnName="Nome" msprop:Generator_ColumnPropNameInRow="Nome" msprop:Generator_ColumnVarNameInTable="columnNome" msprop:Generator_ColumnPropNameInTable="NomeColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40" />
@@ -2031,14 +2031,14 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
<xs:element name="AnagClienti" msprop:Generator_UserTableName="AnagClienti" msprop:Generator_RowDeletedName="AnagClientiRowDeleted" msprop:Generator_RowChangedName="AnagClientiRowChanged" msprop:Generator_RowClassName="AnagClientiRow" msprop:Generator_RowChangingName="AnagClientiRowChanging" msprop:Generator_RowEvArgName="AnagClientiRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagClientiRowChangeEventHandler" msprop:Generator_TableClassName="AnagClientiDataTable" msprop:Generator_TableVarName="tableAnagClienti" msprop:Generator_RowDeletingName="AnagClientiRowDeleting" msprop:Generator_TablePropName="AnagClienti">
<xs:complexType>
<xs:sequence>
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn">
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn">
<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">
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="35" />
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+2 -2
View File
@@ -156,12 +156,12 @@ public class reportPrinter
{
case reportRichiesto.CartellinoPesa:
report.ReportPath = @".\Reports\CartellinoCompleto.rdlc";
report.DataSources.Add(new ReportDataSource("GMWDataSet_stp_getStatoByUdc", caricaDati(tipoReport, UDC)));
report.DataSources.Add(new ReportDataSource(memLayer.ML.confReadString("ReportDatasource"), caricaDati(tipoReport, UDC)));
deviceInfo = deviceInfoParam.xmlParam;
break;
case reportRichiesto.CartellinoTara:
report.ReportPath = @".\Reports\CartellinoTara.rdlc";
report.DataSources.Add(new ReportDataSource("GMWDataSet_stp_getStatoByUdc", caricaDati(tipoReport, UDC)));
report.DataSources.Add(new ReportDataSource(memLayer.ML.confReadString("ReportDatasource"), caricaDati(tipoReport, UDC)));
deviceInfo = deviceInfoParam.xmlParam;
break;
default:
+1
View File
@@ -82,6 +82,7 @@
<Compile Include="Type\Cliente.cs" />
<Compile Include="Type\CompanySito.cs" />
<Compile Include="Type\elenchi.cs" />
<Compile Include="Type\Imballo.cs" />
<Compile Include="Type\Impianto.cs" />
<Compile Include="Type\Operatore.cs" />
<Compile Include="Type\StatiProdotto.cs" />
Binary file not shown.
Binary file not shown.
@@ -7,6 +7,7 @@
<add key="PageWidthCartCompleto" value="21cm"/>
<add key="PageHeightCartCompleto" value="14.8cm"/>
<add key="MarginCompleto" value="0.5cm"/>
<add key="ReportDatasource" value="GMWDataSet_stp_getStatoByUdc"/>
<add key="_logDir" value="~/logs/"/>
<add key="_logLevel" value="6"/>
<add key="_logMaxMb" value="30"/>
Binary file not shown.
Binary file not shown.
+21 -19
View File
@@ -1,4 +1,5 @@
<?xml version="1.0"?><configuration>
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
@@ -50,26 +51,27 @@
</httpModules>
</system.web>
<appSettings>
<add key="printerCartTara" value="\\Vostro410\PDFCreator" />
<add key="PageWidthCartTara" value="21cm" />
<add key="PageHeightCartTara" value="14.8cm" />
<add key="MarginTara" value="0.5cm" />
<add key="printerCartCompleto" value="\\Vostro410\PDFCreator" />
<add key="PageWidthCartCompleto" value="21cm" />
<add key="PageHeightCartCompleto" value="14.8cm" />
<add key="MarginCompleto" value="0.5cm" />
<add key="_logDir" value="~/logs/" />
<add key="_logLevel" value="6" />
<add key="_logMaxMb" value="30" />
<add key="passkey" value="pi=314" />
<add key="CodCS" value="MA" />
<add key="MinutiFinestraEditUDC" value="10" />
<add key="GMWConnectionString" value="Data Source=localhost;Initial Catalog=GMW;Persist Security Info=True;User ID=connGMW;Password=steamware" />
<add key="printerCartTara" value="\\Vostro410\PDFCreator" />
<add key="PageWidthCartTara" value="21cm" />
<add key="PageHeightCartTara" value="14.8cm" />
<add key="MarginTara" value="0.5cm" />
<add key="printerCartCompleto" value="\\Vostro410\PDFCreator" />
<add key="PageWidthCartCompleto" value="21cm" />
<add key="PageHeightCartCompleto" value="14.8cm" />
<add key="MarginCompleto" value="0.5cm" />
<add key="ReportDatasource" value="GMWDataSet_stp_getStatoByUdc" />
<add key="_logDir" value="~/logs/" />
<add key="_logLevel" value="6" />
<add key="_logMaxMb" value="30" />
<add key="passkey" value="pi=314" />
<add key="CodCS" value="MA" />
<add key="MinutiFinestraEditUDC" value="10" />
<add key="GMWConnectionString" value="Data Source=localhost;Initial Catalog=GMW;Persist Security Info=True;User ID=connGMW;Password=steamware" />
</appSettings>
<connectionStrings>
<add name="GMW_data.Properties.Settings.GMWConnectionString"
connectionString="Data Source=localhost;Initial Catalog=GMW;Persist Security Info=True;User ID=connGMW;Password=steamware"
providerName="System.Data.SqlClient" />
<add name="GMW_data.Properties.Settings.GMWConnectionString"
connectionString="Data Source=localhost;Initial Catalog=GMW;Persist Security Info=True;User ID=connGMW;Password=steamware"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
+1
View File
@@ -82,6 +82,7 @@
<Compile Include="Type\Cliente.cs" />
<Compile Include="Type\CompanySito.cs" />
<Compile Include="Type\elenchi.cs" />
<Compile Include="Type\Imballo.cs" />
<Compile Include="Type\Impianto.cs" />
<Compile Include="Type\Operatore.cs" />
<Compile Include="Type\StatiProdotto.cs" />
+34
View File
@@ -184,6 +184,40 @@ namespace GMW.Type
#endregion
#region area imballi
protected Imballo[] _elencoImballi;
/// <summary>
/// legge una tab di tipo AnagImballi e la converte ad un array di tipo Imballo[]
/// </summary>
/// <param name="tabImpianti"></param>
public void caricaImballi(DS_Applicazione.AnagImballiDataTable tabImballi)
{
// conto quanti elementi ha la tab x inizializzare l'array...
int numRighe = tabImballi.Rows.Count;
_elencoImballi = new Imballo[numRighe];
// prendo un obj impianto da valorizzare di volta in volta...
Imballo obj;
for (int i = 0; i < numRighe; i++)
{
obj = new Imballo(tabImballi[i]);
_elencoImballi[i] = obj;
}
}
/// <summary>
/// Elenco Imballi
/// </summary>
public Imballo[] elencoImballi
{
get
{
return _elencoImballi;
}
}
#endregion
#region area bilance
protected Bilancia[] _elencoBilance;
+10 -2
View File
@@ -14,7 +14,7 @@ namespace GMW.WS
/// <summary>
/// WebService per gestioen sw bilance
/// </summary>
[WebService(Namespace = "http://www.steamware.net/", Description = "Web Services che funziona da collettore di tutte le richieste delle applicazioni per le bilance integrate a <b>GMW</b> v.1.0.34")]
[WebService(Namespace = "http://www.steamware.net/", Description = "Web Services che funziona da collettore di tutte le richieste delle applicazioni per le bilance integrate a <b>GMW</b> v.1.0.36")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class bilance : System.Web.Services.WebService
@@ -97,6 +97,15 @@ namespace GMW.WS
return gestEl.elencoImpianti;
}
/// <summary>
/// Elenco anagrafico imballi
/// </summary>
[WebMethod(Description = "Elenco anagrafico imballi")]
public GMW.Type.Imballo[] ElencoImballi()
{
gestEl.caricaImballi(DataProxy.obj.taAnagImballi.GetData());
return gestEl.elencoImballi;
}
/// <summary>
/// Elenco anagrafica impianti dati codice company e sito (no dataset)
/// </summary>
/// <param name="CodCS">Codice company/sito</param>
@@ -107,7 +116,6 @@ namespace GMW.WS
gestEl.caricaImpianti(DataProxy.obj.taAnagImp.stp_getByCodCS(CodCS));
return gestEl.elencoImpianti;
}
/// <summary>
/// fornisce l'anagrafica bilance
/// </summary>
+9 -6
View File
@@ -1,4 +1,5 @@
<?xml version="1.0"?><configuration>
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
@@ -34,10 +35,11 @@
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies>
<add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
<httpHandlers>
<remove verb="*" path="*.asmx"/>
@@ -87,7 +89,8 @@
<add key="printerCartCompleto" value="\\Vostro410\PDFCreator"/>
<add key="PageWidthCartCompleto" value="21cm"/>
<add key="PageHeightCartCompleto" value="14.8cm"/>
<add key="MarginCompleto" value="0.5cm"/>
<add key="MarginCompleto" value="0.5cm"/>
<add key="ReportDatasource" value="GMWDataSet_stp_getStatoByUdc"/>
<add key="_logDir" value="~/logs/"/>
<add key="_logLevel" value="6"/>
<add key="_logMaxMb" value="30"/>
Binary file not shown.
Binary file not shown.
@@ -7,6 +7,7 @@
<add key="PageWidthCartCompleto" value="21cm"/>
<add key="PageHeightCartCompleto" value="14.8cm"/>
<add key="MarginCompleto" value="0.5cm"/>
<add key="ReportDatasource" value="GMWDataSet_stp_getStatoByUdc"/>
<add key="_logDir" value="~/logs/"/>
<add key="_logLevel" value="6"/>
<add key="_logMaxMb" value="30"/>
Binary file not shown.
Binary file not shown.
+3 -3
View File
@@ -349,14 +349,14 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:GMW"
"ProductCode" = "8:{411F1AE9-7396-448A-A8F5-75F30B3A6CB6}"
"PackageCode" = "8:{5E98BBFD-AFB4-4963-8AFF-70CFA8DF27DD}"
"ProductCode" = "8:{19F81382-5942-416D-97C7-2376F9A2C5E3}"
"PackageCode" = "8:{4F10731D-12DD-4E01-991C-1C955B66CCCA}"
"UpgradeCode" = "8:{C9BC0732-DC92-4336-BAC9-A05A5D2A97C0}"
"RestartWWWService" = "11:TRUE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:1.0.34"
"ProductVersion" = "8:1.0.36"
"Manufacturer" = "8:SteamWare s.r.l."
"ARPHELPTELEPHONE" = "8:+39-035460560"
"ARPHELPLINK" = "8:http://www.steamware.net"
Binary file not shown.