Completato editing CliFor + destinazioni

This commit is contained in:
Samuele Locatelli
2022-04-08 16:23:43 +02:00
parent b120a55eb6
commit 84bc83e17c
7 changed files with 516 additions and 169 deletions
+10 -10
View File
@@ -62,42 +62,42 @@
</asp:TemplateField>
<asp:TemplateField HeaderText="Indirizzo" SortExpression="Indirizzo">
<EditItemTemplate>
<asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("Indirizzo") %>' Width="15em" />
<asp:TextBox ID="txtIndirizzo" runat="server" Text='<%# Bind("Indirizzo") %>' Width="10em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Eval("Indirizzo") %>' />
<asp:Label ID="lblIndirizzo" runat="server" Text='<%# Eval("Indirizzo") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Localita" SortExpression="Localita">
<EditItemTemplate>
<asp:TextBox ID="TextBox3" runat="server" Text='<%# Bind("Localita") %>' />
<asp:TextBox ID="txtLocalita" runat="server" Text='<%# Bind("Localita") %>' Width="10em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label3" runat="server" Text='<%# Eval("Localita") %>' />
<asp:Label ID="lblLocalita" runat="server" Text='<%# Eval("Localita") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Cap" SortExpression="Cap">
<EditItemTemplate>
<asp:TextBox ID="TextBox4" runat="server" Text='<%# Bind("Cap") %>' Width="5em" />
<asp:TextBox ID="txtCap" runat="server" Text='<%# Bind("Cap") %>' Width="5em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label4" runat="server" Text='<%# Eval("Cap") %>' />
<asp:Label ID="lblCap" runat="server" Text='<%# Eval("Cap") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Provincia" SortExpression="Provincia">
<EditItemTemplate>
<asp:TextBox ID="TextBox5" runat="server" Text='<%# Bind("Provincia") %>' Width="5em" />
<asp:TextBox ID="txtProvincia" runat="server" Text='<%# Bind("Provincia") %>' Width="4em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label5" runat="server" Text='<%# Eval("Provincia") %>' />
<asp:Label ID="lblProvincia" runat="server" Text='<%# Eval("Provincia") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Nazione" SortExpression="Nazione">
<EditItemTemplate>
<asp:TextBox ID="TextBox6" runat="server" Text='<%# Bind("Nazione") %>' Width="2em" />
<asp:TextBox ID="txtNazione" runat="server" Text='<%# Bind("Nazione") %>' Width="2em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label6" runat="server" Text='<%# Eval("Nazione") %>' />
<asp:Label ID="lblNazione" runat="server" Text='<%# Eval("Nazione") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:CheckBoxField DataField="IsCli" HeaderText="Cli" SortExpression="IsCli" />
+82 -9
View File
@@ -26,14 +26,62 @@
</div>
</ItemTemplate>
</asp:TemplateField>
<%--<asp:BoundField DataField="CodCliente" HeaderText="CodCliente" ReadOnly="True" SortExpression="CodCliente" />--%>
<asp:BoundField DataField="CodDestinazione" HeaderText="Cod." ReadOnly="True" SortExpression="CodDestinazione" />
<asp:BoundField DataField="DescDestinazione" HeaderText="Descr" SortExpression="DescDestinazione" />
<asp:BoundField DataField="Indirizzo" HeaderText="Indirizzo" SortExpression="Indirizzo" />
<asp:BoundField DataField="Localita" HeaderText="Localita" SortExpression="Localita" />
<asp:BoundField DataField="Cap" HeaderText="Cap" SortExpression="Cap" />
<asp:BoundField DataField="Provincia" HeaderText="Provincia" SortExpression="Provincia" />
<asp:BoundField DataField="Nazione" HeaderText="Naz." SortExpression="Nazione" />
<asp:TemplateField HeaderText="Cod." SortExpression="CodDestinazione">
<EditItemTemplate>
<asp:TextBox ID="txtCodDestinazione" runat="server" Text='<%# Bind("CodDestinazione") %>' Width="5em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblCodDestinazione" runat="server" Text='<%# Eval("CodDestinazione") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Descr" SortExpression="DescDestinazione">
<EditItemTemplate>
<asp:TextBox ID="txtDescDestinazione" runat="server" Text='<%# Bind("DescDestinazione") %>' Width="6em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblDescDestinazione" runat="server" Text='<%# Eval("DescDestinazione") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Indirizzo" SortExpression="Indirizzo">
<EditItemTemplate>
<asp:TextBox ID="txtIndirizzo" runat="server" Text='<%# Bind("Indirizzo") %>' Width="10em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblIndirizzo" runat="server" Text='<%# Eval("Indirizzo") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Localita" SortExpression="Localita">
<EditItemTemplate>
<asp:TextBox ID="txtLocalita" runat="server" Text='<%# Bind("Localita") %>' Width="10em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblLocalita" runat="server" Text='<%# Eval("Localita") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Cap" SortExpression="Cap">
<EditItemTemplate>
<asp:TextBox ID="txtCap" runat="server" Text='<%# Bind("Cap") %>' Width="5em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblCap" runat="server" Text='<%# Eval("Cap") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Provincia" SortExpression="Provincia">
<EditItemTemplate>
<asp:TextBox ID="txtProvincia" runat="server" Text='<%# Bind("Provincia") %>' Width="4em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblProvincia" runat="server" Text='<%# Eval("Provincia") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Nazione" SortExpression="Nazione">
<EditItemTemplate>
<asp:TextBox ID="txtNazione" runat="server" Text='<%# Bind("Nazione") %>' Width="2em" />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblNazione" runat="server" Text='<%# Eval("Nazione") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField ShowHeader="False">
<HeaderTemplate>
<asp:LinkButton ID="lbtAddNew" runat="server" OnClick="lbtAddNew_Click" CssClass="btn btn-success btn-sm" Visible="true" ToolTip="Add New" OnClientClick="return confirm('Sicuro di voler inserire un nuovo record?');"><i class="fas fa-plus"></i></asp:LinkButton>
@@ -53,8 +101,33 @@
<PagerSettings Mode="NumericFirstLast" />
<SelectedRowStyle CssClass="table-primary" />
</asp:GridView>
<asp:ObjectDataSource runat="server" ID="ods" OldValuesParameterFormatString="original_{0}" SelectMethod="getByCodCli" TypeName="MagData.DS_MagTableAdapters.AnagDestinClientiTableAdapter">
<asp:ObjectDataSource runat="server" ID="ods" OldValuesParameterFormatString="Original_{0}" SelectMethod="getByCodCli" TypeName="MagData.DS_MagTableAdapters.AnagDestinClientiTableAdapter" DeleteMethod="deleteQuery" InsertMethod="insertQuery" UpdateMethod="updateQuery">
<DeleteParameters>
<asp:Parameter Name="Original_CodCliente" Type="String" />
<asp:Parameter Name="Original_CodDestinazione" Type="String" />
</DeleteParameters>
<InsertParameters>
<asp:Parameter Name="CodCliente" Type="String" />
<asp:Parameter Name="CodDestinazione" Type="String" />
<asp:Parameter Name="DescDestinazione" Type="String" />
<asp:Parameter Name="Indirizzo" Type="String" />
<asp:Parameter Name="Localita" Type="String" />
<asp:Parameter Name="Cap" Type="String" />
<asp:Parameter Name="Provincia" Type="String" />
<asp:Parameter Name="Nazione" Type="String" />
</InsertParameters>
<SelectParameters>
<asp:ControlParameter ControlID="hfCodCli" DefaultValue="###" Name="CodCliente" PropertyName="Value" Type="String" />
</SelectParameters>
<UpdateParameters>
<asp:Parameter Name="CodDestinazione" Type="String" />
<asp:Parameter Name="DescDestinazione" Type="String" />
<asp:Parameter Name="Indirizzo" Type="String" />
<asp:Parameter Name="Cap" Type="String" />
<asp:Parameter Name="Localita" Type="String" />
<asp:Parameter Name="Provincia" Type="String" />
<asp:Parameter Name="Nazione" Type="String" />
<asp:Parameter Name="Original_CodCliente" Type="String" />
<asp:Parameter Name="Original_CodDestinazione" Type="String" />
</UpdateParameters>
</asp:ObjectDataSource>
@@ -31,7 +31,14 @@ namespace MP_MAG.WebUserControls
/// <param name="e"></param>
protected void lbtAddNew_Click(object sender, EventArgs e)
{
//MagDataLayerObj.taACF.insertQuery("__CodiceCliente", "Nuova Ragione Sociale", "Nuovo Indirizzo", "Nuova Località", "00000", "BA", "IT", false, true);
// cerco il num di cli esistenti e usi + 1...
var destCli = MagDataLayerObj.taADC.getByCodCli(codCli);
string newCodDest = "__CodDestNew";
if (destCli != null)
{
newCodDest = $"D{destCli.Count + 1:0000}";
}
MagDataLayerObj.taADC.insertQuery(codCli, newCodDest, "Nuova Destinazione", "Nuovo Indirizzo", "00000", "Nuova Località", "BA", "IT");
doReset();
}
+218 -4
View File
@@ -11509,17 +11509,51 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
private void InitCommandCollection() {
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[2];
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[5];
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = "SELECT * FROM AnagDestinClienti";
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[1].Connection = this.Connection;
this._commandCollection[1].CommandText = "dbo.stp_ADC_getByCodCli";
this._commandCollection[1].CommandText = "dbo.stp_ADC_deleteQuery";
this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodCliente", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodCliente", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodDestinazione", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[2].Connection = this.Connection;
this._commandCollection[2].CommandText = "dbo.stp_ADC_getByCodCli";
this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodCliente", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[3].Connection = this.Connection;
this._commandCollection[3].CommandText = "dbo.stp_ADC_insertQuery";
this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure;
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodCliente", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodDestinazione", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DescDestinazione", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Indirizzo", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cap", global::System.Data.SqlDbType.NVarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Localita", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Provincia", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Nazione", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[4].Connection = this.Connection;
this._commandCollection[4].CommandText = "dbo.stp_ADC_updateQuery";
this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure;
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodDestinazione", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DescDestinazione", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Indirizzo", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cap", global::System.Data.SqlDbType.NVarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Localita", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Provincia", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Nazione", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodDestinazione", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodCliente", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -11551,7 +11585,7 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
public virtual DS_Mag.AnagDestinClientiDataTable getByCodCli(string CodCliente) {
this.Adapter.SelectCommand = this.CommandCollection[1];
this.Adapter.SelectCommand = this.CommandCollection[2];
if ((CodCliente == null)) {
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
}
@@ -11886,6 +11920,186 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
public virtual int Update(string DescDestinazione, string Indirizzo, string Cap, string Localita, string Provincia, string Nazione, string Original_CodCliente, string Original_CodDestinazione, string Original_DescDestinazione, string Original_Indirizzo, string Original_Cap, string Original_Localita, string Original_Provincia, string Original_Nazione) {
return this.Update(Original_CodCliente, Original_CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita, Provincia, Nazione, Original_CodCliente, Original_CodDestinazione, Original_DescDestinazione, Original_Indirizzo, Original_Cap, Original_Localita, Original_Provincia, Original_Nazione);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
public virtual int deleteQuery(string Original_CodCliente, string Original_CodDestinazione) {
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
if ((Original_CodCliente == null)) {
command.Parameters[1].Value = global::System.DBNull.Value;
}
else {
command.Parameters[1].Value = ((string)(Original_CodCliente));
}
if ((Original_CodDestinazione == null)) {
command.Parameters[2].Value = global::System.DBNull.Value;
}
else {
command.Parameters[2].Value = ((string)(Original_CodDestinazione));
}
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
!= global::System.Data.ConnectionState.Open)) {
command.Connection.Open();
}
int returnValue;
try {
returnValue = command.ExecuteNonQuery();
}
finally {
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
command.Connection.Close();
}
}
return returnValue;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
public virtual int insertQuery(string CodCliente, string CodDestinazione, string DescDestinazione, string Indirizzo, string Cap, string Localita, string Provincia, string Nazione) {
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3];
if ((CodCliente == null)) {
command.Parameters[1].Value = global::System.DBNull.Value;
}
else {
command.Parameters[1].Value = ((string)(CodCliente));
}
if ((CodDestinazione == null)) {
command.Parameters[2].Value = global::System.DBNull.Value;
}
else {
command.Parameters[2].Value = ((string)(CodDestinazione));
}
if ((DescDestinazione == null)) {
command.Parameters[3].Value = global::System.DBNull.Value;
}
else {
command.Parameters[3].Value = ((string)(DescDestinazione));
}
if ((Indirizzo == null)) {
command.Parameters[4].Value = global::System.DBNull.Value;
}
else {
command.Parameters[4].Value = ((string)(Indirizzo));
}
if ((Cap == null)) {
command.Parameters[5].Value = global::System.DBNull.Value;
}
else {
command.Parameters[5].Value = ((string)(Cap));
}
if ((Localita == null)) {
command.Parameters[6].Value = global::System.DBNull.Value;
}
else {
command.Parameters[6].Value = ((string)(Localita));
}
if ((Provincia == null)) {
command.Parameters[7].Value = global::System.DBNull.Value;
}
else {
command.Parameters[7].Value = ((string)(Provincia));
}
if ((Nazione == null)) {
command.Parameters[8].Value = global::System.DBNull.Value;
}
else {
command.Parameters[8].Value = ((string)(Nazione));
}
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
!= global::System.Data.ConnectionState.Open)) {
command.Connection.Open();
}
int returnValue;
try {
returnValue = command.ExecuteNonQuery();
}
finally {
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
command.Connection.Close();
}
}
return returnValue;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
public virtual int updateQuery(string CodDestinazione, string DescDestinazione, string Indirizzo, string Cap, string Localita, string Provincia, string Nazione, string Original_CodDestinazione, string Original_CodCliente) {
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[4];
if ((CodDestinazione == null)) {
command.Parameters[1].Value = global::System.DBNull.Value;
}
else {
command.Parameters[1].Value = ((string)(CodDestinazione));
}
if ((DescDestinazione == null)) {
command.Parameters[2].Value = global::System.DBNull.Value;
}
else {
command.Parameters[2].Value = ((string)(DescDestinazione));
}
if ((Indirizzo == null)) {
command.Parameters[3].Value = global::System.DBNull.Value;
}
else {
command.Parameters[3].Value = ((string)(Indirizzo));
}
if ((Cap == null)) {
command.Parameters[4].Value = global::System.DBNull.Value;
}
else {
command.Parameters[4].Value = ((string)(Cap));
}
if ((Localita == null)) {
command.Parameters[5].Value = global::System.DBNull.Value;
}
else {
command.Parameters[5].Value = ((string)(Localita));
}
if ((Provincia == null)) {
command.Parameters[6].Value = global::System.DBNull.Value;
}
else {
command.Parameters[6].Value = ((string)(Provincia));
}
if ((Nazione == null)) {
command.Parameters[7].Value = global::System.DBNull.Value;
}
else {
command.Parameters[7].Value = ((string)(Nazione));
}
if ((Original_CodDestinazione == null)) {
command.Parameters[8].Value = global::System.DBNull.Value;
}
else {
command.Parameters[8].Value = ((string)(Original_CodDestinazione));
}
if ((Original_CodCliente == null)) {
command.Parameters[9].Value = global::System.DBNull.Value;
}
else {
command.Parameters[9].Value = ((string)(Original_CodCliente));
}
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
!= global::System.Data.ConnectionState.Open)) {
command.Connection.Open();
}
int returnValue;
try {
returnValue = command.ExecuteNonQuery();
}
finally {
if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
command.Connection.Close();
}
}
return returnValue;
}
}
/// <summary>
+181 -132
View File
@@ -619,7 +619,7 @@ SELECT CodCliente, RagSociale, Indirizzo, Localita, Cap, Provincia, Nazione, IsC
<Mapping SourceColumn="IsFor" DataSetColumn="IsFor" />
</Mappings>
<Sources>
<DbSource ConnectionRef="MoonPro_MAGConnectionString (Settings)" DbObjectName="MoonPro_MAG.dbo.stp_ACF_deleteQuery" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="deleteQuery" Modifier="Public" Name="deleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="deleteQuery">
<DbSource ConnectionRef="MoonPro_MAGConnectionString (Settings)" DbObjectName="MoonPro_MAG.dbo.stp_ACF_deleteQuery" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="deleteQuery" Modifier="Public" Name="deleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="deleteQuery">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ACF_deleteQuery</CommandText>
@@ -643,7 +643,7 @@ SELECT CodCliente, RagSociale, Indirizzo, Localita, Cap, Provincia, Nazione, IsC
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonPro_MAGConnectionString (Settings)" DbObjectName="MoonPro_MAG.dbo.stp_ACF_insertQuery" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="insertQuery" Modifier="Public" Name="insertQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="insertQuery">
<DbSource ConnectionRef="MoonPro_MAGConnectionString (Settings)" DbObjectName="MoonPro_MAG.dbo.stp_ACF_insertQuery" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="insertQuery" Modifier="Public" Name="insertQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="insertQuery">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ACF_insertQuery</CommandText>
@@ -908,6 +908,18 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
<Mapping SourceColumn="Nazione" DataSetColumn="Nazione" />
</Mappings>
<Sources>
<DbSource ConnectionRef="MoonPro_MAGConnectionString (Settings)" DbObjectName="MoonPro_MAG.dbo.stp_ADC_deleteQuery" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="deleteQuery" Modifier="Public" Name="deleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy2" UserSourceName="deleteQuery">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ADC_deleteQuery</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Original_CodCliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Original_CodDestinazione" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonPro_MAGConnectionString (Settings)" DbObjectName="MoonPro_MAG.dbo.stp_ADC_getByCodCli" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByCodCli" GetMethodModifier="Public" GetMethodName="getByCodCli" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByCodCli" UserSourceName="getByCodCli">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
@@ -919,6 +931,43 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonPro_MAGConnectionString (Settings)" DbObjectName="MoonPro_MAG.dbo.stp_ACF_insertQuery" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="insertQuery" Modifier="Public" Name="insertQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="insertQuery">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="true">
<CommandText>dbo.stp_ADC_insertQuery</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodCliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodDestinazione" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@DescDestinazione" Precision="0" ProviderType="NVarChar" Scale="0" Size="250" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="250" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Cap" Precision="0" ProviderType="NVarChar" Scale="0" Size="10" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Localita" Precision="0" ProviderType="NVarChar" Scale="0" Size="250" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Provincia" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Nazione" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="MoonPro_MAGConnectionString (Settings)" DbObjectName="MoonPro_MAG.dbo.stp_ADC_updateQuery" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="updateQuery" Modifier="Public" Name="updateQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="updateQuery">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_ADC_updateQuery</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodDestinazione" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@DescDestinazione" Precision="0" ProviderType="NVarChar" Scale="0" Size="250" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="250" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Cap" Precision="0" ProviderType="NVarChar" Scale="0" Size="10" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Localita" Precision="0" ProviderType="NVarChar" Scale="0" Size="250" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Provincia" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Nazione" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Original_CodDestinazione" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Original_CodCliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</Sources>
</TableAdapter>
</Tables>
@@ -926,83 +975,83 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
</DataSource>
</xs:appinfo>
</xs:annotation>
<xs:element name="DS_Mag" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_UserDSName="DS_Mag" msprop:Generator_DataSetName="DS_Mag">
<xs:element name="DS_Mag" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:Generator_UserDSName="DS_Mag" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DS_Mag">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="ElencoLotti" msprop:Generator_RowClassName="ElencoLottiRow" msprop:Generator_RowEvHandlerName="ElencoLottiRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoLottiRowDeleted" msprop:Generator_RowDeletingName="ElencoLottiRowDeleting" msprop:Generator_RowEvArgName="ElencoLottiRowChangeEvent" msprop:Generator_TablePropName="ElencoLotti" msprop:Generator_RowChangedName="ElencoLottiRowChanged" msprop:Generator_RowChangingName="ElencoLottiRowChanging" msprop:Generator_TableClassName="ElencoLottiDataTable" msprop:Generator_UserTableName="ElencoLotti" msprop:Generator_TableVarName="tableElencoLotti">
<xs:element name="ElencoLotti" msprop:Generator_RowEvHandlerName="ElencoLottiRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoLottiRowDeleted" msprop:Generator_RowDeletingName="ElencoLottiRowDeleting" msprop:Generator_RowEvArgName="ElencoLottiRowChangeEvent" msprop:Generator_TablePropName="ElencoLotti" msprop:Generator_RowChangedName="ElencoLottiRowChanged" msprop:Generator_UserTableName="ElencoLotti" msprop:Generator_RowChangingName="ElencoLottiRowChanging" msprop:Generator_RowClassName="ElencoLottiRow" msprop:Generator_TableClassName="ElencoLottiDataTable" msprop:Generator_TableVarName="tableElencoLotti">
<xs:complexType>
<xs:sequence>
<xs:element name="Lotto" msprop:Generator_ColumnPropNameInRow="Lotto" msprop:Generator_ColumnPropNameInTable="LottoColumn" msprop:Generator_ColumnVarNameInTable="columnLotto" msprop:Generator_UserColumnName="Lotto">
<xs:element name="Lotto" msprop:Generator_UserColumnName="Lotto" msprop:Generator_ColumnPropNameInTable="LottoColumn" msprop:Generator_ColumnPropNameInRow="Lotto" msprop:Generator_ColumnVarNameInTable="columnLotto">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IdxODL" msprop:Generator_ColumnPropNameInRow="IdxODL" msprop:Generator_ColumnPropNameInTable="IdxODLColumn" msprop:Generator_ColumnVarNameInTable="columnIdxODL" msprop:Generator_UserColumnName="IdxODL" type="xs:int" />
<xs:element name="RifExt" msprop:Generator_ColumnPropNameInRow="RifExt" msprop:Generator_ColumnPropNameInTable="RifExtColumn" msprop:Generator_ColumnVarNameInTable="columnRifExt" msprop:Generator_UserColumnName="RifExt">
<xs:element name="IdxODL" msprop:Generator_UserColumnName="IdxODL" msprop:Generator_ColumnPropNameInTable="IdxODLColumn" msprop:Generator_ColumnPropNameInRow="IdxODL" msprop:Generator_ColumnVarNameInTable="columnIdxODL" type="xs:int" />
<xs:element name="RifExt" msprop:Generator_UserColumnName="RifExt" msprop:Generator_ColumnPropNameInTable="RifExtColumn" msprop:Generator_ColumnPropNameInRow="RifExt" msprop:Generator_ColumnVarNameInTable="columnRifExt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TipoLotto" msprop:Generator_ColumnPropNameInRow="TipoLotto" msprop:Generator_ColumnPropNameInTable="TipoLottoColumn" msprop:Generator_ColumnVarNameInTable="columnTipoLotto" msprop:Generator_UserColumnName="TipoLotto">
<xs:element name="TipoLotto" msprop:Generator_UserColumnName="TipoLotto" msprop:Generator_ColumnPropNameInTable="TipoLottoColumn" msprop:Generator_ColumnPropNameInRow="TipoLotto" msprop:Generator_ColumnVarNameInTable="columnTipoLotto">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodArt" msprop:Generator_ColumnPropNameInRow="CodArt" msprop:Generator_ColumnPropNameInTable="CodArtColumn" msprop:Generator_ColumnVarNameInTable="columnCodArt" msprop:Generator_UserColumnName="CodArt">
<xs:element name="CodArt" msprop:Generator_UserColumnName="CodArt" msprop:Generator_ColumnPropNameInTable="CodArtColumn" msprop:Generator_ColumnPropNameInRow="CodArt" msprop:Generator_ColumnVarNameInTable="columnCodArt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_UserColumnName="CodStato">
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Origine" msprop:Generator_ColumnPropNameInRow="Origine" msprop:Generator_ColumnPropNameInTable="OrigineColumn" msprop:Generator_ColumnVarNameInTable="columnOrigine" msprop:Generator_UserColumnName="Origine">
<xs:element name="Origine" msprop:Generator_UserColumnName="Origine" msprop:Generator_ColumnPropNameInTable="OrigineColumn" msprop:Generator_ColumnPropNameInRow="Origine" msprop:Generator_ColumnVarNameInTable="columnOrigine">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DtCrea" msprop:Generator_ColumnPropNameInRow="DtCrea" msprop:Generator_ColumnPropNameInTable="DtCreaColumn" msprop:Generator_ColumnVarNameInTable="columnDtCrea" msprop:Generator_UserColumnName="DtCrea" type="xs:dateTime" />
<xs:element name="Note" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" msprop:Generator_ColumnVarNameInTable="columnNote" msprop:Generator_UserColumnName="Note">
<xs:element name="DtCrea" msprop:Generator_UserColumnName="DtCrea" msprop:Generator_ColumnPropNameInTable="DtCreaColumn" msprop:Generator_ColumnPropNameInRow="DtCrea" msprop:Generator_ColumnVarNameInTable="columnDtCrea" type="xs:dateTime" />
<xs:element name="Note" msprop:Generator_UserColumnName="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnVarNameInTable="columnNote">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="QtaOrig" msprop:Generator_ColumnPropNameInRow="QtaOrig" msprop:Generator_ColumnPropNameInTable="QtaOrigColumn" msprop:Generator_ColumnVarNameInTable="columnQtaOrig" msprop:Generator_UserColumnName="QtaOrig" type="xs:decimal" />
<xs:element name="NumUdc" msprop:Generator_ColumnPropNameInRow="NumUdc" msprop:Generator_ColumnPropNameInTable="NumUdcColumn" msprop:Generator_ColumnVarNameInTable="columnNumUdc" msprop:Generator_UserColumnName="NumUdc" type="xs:int" />
<xs:element name="QtaCurr" msprop:Generator_ColumnPropNameInRow="QtaCurr" msprop:Generator_ColumnPropNameInTable="QtaCurrColumn" msprop:Generator_ColumnVarNameInTable="columnQtaCurr" msprop:Generator_UserColumnName="QtaCurr" type="xs:decimal" />
<xs:element name="DtMod" msprop:Generator_ColumnPropNameInRow="DtMod" msprop:Generator_ColumnPropNameInTable="DtModColumn" msprop:Generator_ColumnVarNameInTable="columnDtMod" msprop:Generator_UserColumnName="DtMod" type="xs:dateTime" />
<xs:element name="Attivo" msprop:Generator_ColumnPropNameInRow="Attivo" msprop:Generator_ColumnPropNameInTable="AttivoColumn" msprop:Generator_ColumnVarNameInTable="columnAttivo" msprop:Generator_UserColumnName="Attivo" type="xs:boolean" />
<xs:element name="DescrArt" msprop:Generator_ColumnPropNameInRow="DescrArt" msprop:Generator_ColumnPropNameInTable="DescrArtColumn" msprop:Generator_ColumnVarNameInTable="columnDescrArt" msprop:Generator_UserColumnName="DescrArt">
<xs:element name="QtaOrig" msprop:Generator_UserColumnName="QtaOrig" msprop:Generator_ColumnPropNameInTable="QtaOrigColumn" msprop:Generator_ColumnPropNameInRow="QtaOrig" msprop:Generator_ColumnVarNameInTable="columnQtaOrig" type="xs:decimal" />
<xs:element name="NumUdc" msprop:Generator_UserColumnName="NumUdc" msprop:Generator_ColumnPropNameInTable="NumUdcColumn" msprop:Generator_ColumnPropNameInRow="NumUdc" msprop:Generator_ColumnVarNameInTable="columnNumUdc" type="xs:int" />
<xs:element name="QtaCurr" msprop:Generator_UserColumnName="QtaCurr" msprop:Generator_ColumnPropNameInTable="QtaCurrColumn" msprop:Generator_ColumnPropNameInRow="QtaCurr" msprop:Generator_ColumnVarNameInTable="columnQtaCurr" type="xs:decimal" />
<xs:element name="DtMod" msprop:Generator_UserColumnName="DtMod" msprop:Generator_ColumnPropNameInTable="DtModColumn" msprop:Generator_ColumnPropNameInRow="DtMod" msprop:Generator_ColumnVarNameInTable="columnDtMod" type="xs:dateTime" />
<xs:element name="Attivo" msprop:Generator_UserColumnName="Attivo" msprop:Generator_ColumnPropNameInTable="AttivoColumn" msprop:Generator_ColumnPropNameInRow="Attivo" msprop:Generator_ColumnVarNameInTable="columnAttivo" type="xs:boolean" />
<xs:element name="DescrArt" msprop:Generator_UserColumnName="DescrArt" msprop:Generator_ColumnPropNameInTable="DescrArtColumn" msprop:Generator_ColumnPropNameInRow="DescrArt" msprop:Generator_ColumnVarNameInTable="columnDescrArt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodArtExt" msprop:Generator_ColumnPropNameInRow="CodArtExt" msprop:Generator_ColumnPropNameInTable="CodArtExtColumn" msprop:Generator_ColumnVarNameInTable="columnCodArtExt" msprop:Generator_UserColumnName="CodArtExt">
<xs:element name="CodArtExt" msprop:Generator_UserColumnName="CodArtExt" msprop:Generator_ColumnPropNameInTable="CodArtExtColumn" msprop:Generator_ColumnPropNameInRow="CodArtExt" msprop:Generator_ColumnVarNameInTable="columnCodArtExt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescStato" msprop:Generator_ColumnPropNameInRow="DescStato" msprop:Generator_ColumnPropNameInTable="DescStatoColumn" msprop:Generator_ColumnVarNameInTable="columnDescStato" msprop:Generator_UserColumnName="DescStato" minOccurs="0">
<xs:element name="DescStato" msprop:Generator_UserColumnName="DescStato" msprop:Generator_ColumnPropNameInTable="DescStatoColumn" msprop:Generator_ColumnPropNameInRow="DescStato" msprop:Generator_ColumnVarNameInTable="columnDescStato" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1012,152 +1061,152 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ElencoUdc" msprop:Generator_RowEvHandlerName="ElencoUdcRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoUdcRowDeleted" msprop:Generator_RowDeletingName="ElencoUdcRowDeleting" msprop:Generator_RowEvArgName="ElencoUdcRowChangeEvent" msprop:Generator_TablePropName="ElencoUdc" msprop:Generator_RowChangedName="ElencoUdcRowChanged" msprop:Generator_RowChangingName="ElencoUdcRowChanging" msprop:Generator_TableClassName="ElencoUdcDataTable" msprop:Generator_RowClassName="ElencoUdcRow" msprop:Generator_TableVarName="tableElencoUdc" msprop:Generator_UserTableName="ElencoUdc">
<xs:element name="ElencoUdc" msprop:Generator_RowClassName="ElencoUdcRow" msprop:Generator_RowEvHandlerName="ElencoUdcRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoUdcRowDeleted" msprop:Generator_RowDeletingName="ElencoUdcRowDeleting" msprop:Generator_RowEvArgName="ElencoUdcRowChangeEvent" msprop:Generator_TablePropName="ElencoUdc" msprop:Generator_RowChangedName="ElencoUdcRowChanged" msprop:Generator_UserTableName="ElencoUdc" msprop:Generator_RowChangingName="ElencoUdcRowChanging" msprop:Generator_TableClassName="ElencoUdcDataTable" msprop:Generator_TableVarName="tableElencoUdc">
<xs:complexType>
<xs:sequence>
<xs:element name="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_UserColumnName="UDC">
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Lotto" msprop:Generator_ColumnPropNameInRow="Lotto" msprop:Generator_ColumnPropNameInTable="LottoColumn" msprop:Generator_ColumnVarNameInTable="columnLotto" msprop:Generator_UserColumnName="Lotto">
<xs:element name="Lotto" msprop:Generator_UserColumnName="Lotto" msprop:Generator_ColumnPropNameInTable="LottoColumn" msprop:Generator_ColumnPropNameInRow="Lotto" msprop:Generator_ColumnVarNameInTable="columnLotto">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_UserColumnName="CodCliente" minOccurs="0">
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodPost" msprop:Generator_ColumnPropNameInRow="CodPost" msprop:Generator_ColumnPropNameInTable="CodPostColumn" msprop:Generator_ColumnVarNameInTable="columnCodPost" msprop:Generator_UserColumnName="CodPost" minOccurs="0">
<xs:element name="CodPost" msprop:Generator_UserColumnName="CodPost" msprop:Generator_ColumnPropNameInTable="CodPostColumn" msprop:Generator_ColumnPropNameInRow="CodPost" msprop:Generator_ColumnVarNameInTable="columnCodPost" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DtRec" msprop:Generator_ColumnPropNameInRow="DtRec" msprop:Generator_ColumnPropNameInTable="DtRecColumn" msprop:Generator_ColumnVarNameInTable="columnDtRec" msprop:Generator_UserColumnName="DtRec" type="xs:dateTime" minOccurs="0" />
<xs:element name="Qta" msprop:Generator_ColumnPropNameInRow="Qta" msprop:Generator_ColumnPropNameInTable="QtaColumn" msprop:Generator_ColumnVarNameInTable="columnQta" msprop:Generator_UserColumnName="Qta" type="xs:decimal" minOccurs="0" />
<xs:element name="NumCont" msprop:Generator_ColumnPropNameInRow="NumCont" msprop:Generator_ColumnPropNameInTable="NumContColumn" msprop:Generator_ColumnVarNameInTable="columnNumCont" msprop:Generator_UserColumnName="NumCont" type="xs:int" minOccurs="0" />
<xs:element name="CodSoggetto" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto" msprop:Generator_UserColumnName="CodSoggetto" minOccurs="0">
<xs:element name="DtRec" msprop:Generator_UserColumnName="DtRec" msprop:Generator_ColumnPropNameInTable="DtRecColumn" msprop:Generator_ColumnPropNameInRow="DtRec" msprop:Generator_ColumnVarNameInTable="columnDtRec" type="xs:dateTime" minOccurs="0" />
<xs:element name="Qta" msprop:Generator_UserColumnName="Qta" msprop:Generator_ColumnPropNameInTable="QtaColumn" msprop:Generator_ColumnPropNameInRow="Qta" msprop:Generator_ColumnVarNameInTable="columnQta" type="xs:decimal" minOccurs="0" />
<xs:element name="NumCont" msprop:Generator_UserColumnName="NumCont" msprop:Generator_ColumnPropNameInTable="NumContColumn" msprop:Generator_ColumnPropNameInRow="NumCont" msprop:Generator_ColumnVarNameInTable="columnNumCont" type="xs:int" minOccurs="0" />
<xs:element name="CodSoggetto" msprop:Generator_UserColumnName="CodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PesoTot" msprop:Generator_ColumnPropNameInRow="PesoTot" msprop:Generator_ColumnPropNameInTable="PesoTotColumn" msprop:Generator_ColumnVarNameInTable="columnPesoTot" msprop:Generator_UserColumnName="PesoTot" type="xs:decimal" minOccurs="0" />
<xs:element name="PesoCad" msprop:Generator_ColumnPropNameInRow="PesoCad" msprop:Generator_ColumnPropNameInTable="PesoCadColumn" msprop:Generator_ColumnVarNameInTable="columnPesoCad" msprop:Generator_UserColumnName="PesoCad" type="xs:decimal" minOccurs="0" />
<xs:element name="Tara" msprop:Generator_ColumnPropNameInRow="Tara" msprop:Generator_ColumnPropNameInTable="TaraColumn" msprop:Generator_ColumnVarNameInTable="columnTara" msprop:Generator_UserColumnName="Tara" type="xs:decimal" minOccurs="0" />
<xs:element name="CodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_UserColumnName="CodImballo" minOccurs="0">
<xs:element name="PesoTot" msprop:Generator_UserColumnName="PesoTot" msprop:Generator_ColumnPropNameInTable="PesoTotColumn" msprop:Generator_ColumnPropNameInRow="PesoTot" msprop:Generator_ColumnVarNameInTable="columnPesoTot" type="xs:decimal" minOccurs="0" />
<xs:element name="PesoCad" msprop:Generator_UserColumnName="PesoCad" msprop:Generator_ColumnPropNameInTable="PesoCadColumn" msprop:Generator_ColumnPropNameInRow="PesoCad" msprop:Generator_ColumnVarNameInTable="columnPesoCad" type="xs:decimal" minOccurs="0" />
<xs:element name="Tara" msprop:Generator_UserColumnName="Tara" msprop:Generator_ColumnPropNameInTable="TaraColumn" msprop:Generator_ColumnPropNameInRow="Tara" msprop:Generator_ColumnVarNameInTable="columnTara" type="xs:decimal" minOccurs="0" />
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" 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_ColumnPropNameInRow="IdxPosizione" msprop:Generator_ColumnPropNameInTable="IdxPosizioneColumn" msprop:Generator_ColumnVarNameInTable="columnIdxPosizione" msprop:Generator_UserColumnName="IdxPosizione" type="xs:int" minOccurs="0" />
<xs:element name="DtMod" msprop:Generator_ColumnPropNameInRow="DtMod" msprop:Generator_ColumnPropNameInTable="DtModColumn" msprop:Generator_ColumnVarNameInTable="columnDtMod" msprop:Generator_UserColumnName="DtMod" type="xs:dateTime" minOccurs="0" />
<xs:element name="Note" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" msprop:Generator_ColumnVarNameInTable="columnNote" msprop:Generator_UserColumnName="Note" minOccurs="0">
<xs:element name="IdxPosizione" msprop:Generator_UserColumnName="IdxPosizione" msprop:Generator_ColumnPropNameInTable="IdxPosizioneColumn" msprop:Generator_ColumnPropNameInRow="IdxPosizione" msprop:Generator_ColumnVarNameInTable="columnIdxPosizione" type="xs:int" minOccurs="0" />
<xs:element name="DtMod" msprop:Generator_UserColumnName="DtMod" msprop:Generator_ColumnPropNameInTable="DtModColumn" msprop:Generator_ColumnPropNameInRow="DtMod" msprop:Generator_ColumnVarNameInTable="columnDtMod" type="xs:dateTime" minOccurs="0" />
<xs:element name="Note" msprop:Generator_UserColumnName="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnVarNameInTable="columnNote" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TipoLotto" msprop:Generator_ColumnPropNameInRow="TipoLotto" msprop:Generator_ColumnPropNameInTable="TipoLottoColumn" msprop:Generator_ColumnVarNameInTable="columnTipoLotto" msprop:Generator_UserColumnName="TipoLotto">
<xs:element name="TipoLotto" msprop:Generator_UserColumnName="TipoLotto" msprop:Generator_ColumnPropNameInTable="TipoLottoColumn" msprop:Generator_ColumnPropNameInRow="TipoLotto" msprop:Generator_ColumnVarNameInTable="columnTipoLotto">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_UserColumnName="CodStato">
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Origine" msprop:Generator_ColumnPropNameInRow="Origine" msprop:Generator_ColumnPropNameInTable="OrigineColumn" msprop:Generator_ColumnVarNameInTable="columnOrigine" msprop:Generator_UserColumnName="Origine">
<xs:element name="Origine" msprop:Generator_UserColumnName="Origine" msprop:Generator_ColumnPropNameInTable="OrigineColumn" msprop:Generator_ColumnPropNameInRow="Origine" msprop:Generator_ColumnVarNameInTable="columnOrigine">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DtCrea" msprop:Generator_ColumnPropNameInRow="DtCrea" msprop:Generator_ColumnPropNameInTable="DtCreaColumn" msprop:Generator_ColumnVarNameInTable="columnDtCrea" msprop:Generator_UserColumnName="DtCrea" type="xs:dateTime" />
<xs:element name="NoteLotto" msprop:Generator_ColumnPropNameInRow="NoteLotto" msprop:Generator_ColumnPropNameInTable="NoteLottoColumn" msprop:Generator_ColumnVarNameInTable="columnNoteLotto" msprop:Generator_UserColumnName="NoteLotto">
<xs:element name="DtCrea" msprop:Generator_UserColumnName="DtCrea" msprop:Generator_ColumnPropNameInTable="DtCreaColumn" msprop:Generator_ColumnPropNameInRow="DtCrea" msprop:Generator_ColumnVarNameInTable="columnDtCrea" type="xs:dateTime" />
<xs:element name="NoteLotto" msprop:Generator_UserColumnName="NoteLotto" msprop:Generator_ColumnPropNameInTable="NoteLottoColumn" msprop:Generator_ColumnPropNameInRow="NoteLotto" msprop:Generator_ColumnVarNameInTable="columnNoteLotto">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="RagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_UserColumnName="RagSociale">
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Indirizzo" msprop:Generator_ColumnPropNameInRow="Indirizzo" msprop:Generator_ColumnPropNameInTable="IndirizzoColumn" msprop:Generator_ColumnVarNameInTable="columnIndirizzo" msprop:Generator_UserColumnName="Indirizzo">
<xs:element name="Indirizzo" msprop:Generator_UserColumnName="Indirizzo" msprop:Generator_ColumnPropNameInTable="IndirizzoColumn" msprop:Generator_ColumnPropNameInRow="Indirizzo" msprop:Generator_ColumnVarNameInTable="columnIndirizzo">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Localita" msprop:Generator_ColumnPropNameInRow="Localita" msprop:Generator_ColumnPropNameInTable="LocalitaColumn" msprop:Generator_ColumnVarNameInTable="columnLocalita" msprop:Generator_UserColumnName="Localita">
<xs:element name="Localita" msprop:Generator_UserColumnName="Localita" msprop:Generator_ColumnPropNameInTable="LocalitaColumn" msprop:Generator_ColumnPropNameInRow="Localita" msprop:Generator_ColumnVarNameInTable="columnLocalita">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Cap" msprop:Generator_ColumnPropNameInRow="Cap" msprop:Generator_ColumnPropNameInTable="CapColumn" msprop:Generator_ColumnVarNameInTable="columnCap" msprop:Generator_UserColumnName="Cap">
<xs:element name="Cap" msprop:Generator_UserColumnName="Cap" msprop:Generator_ColumnPropNameInTable="CapColumn" msprop:Generator_ColumnPropNameInRow="Cap" msprop:Generator_ColumnVarNameInTable="columnCap">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="10" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Provincia" msprop:Generator_ColumnPropNameInRow="Provincia" msprop:Generator_ColumnPropNameInTable="ProvinciaColumn" msprop:Generator_ColumnVarNameInTable="columnProvincia" msprop:Generator_UserColumnName="Provincia">
<xs:element name="Provincia" msprop:Generator_UserColumnName="Provincia" msprop:Generator_ColumnPropNameInTable="ProvinciaColumn" msprop:Generator_ColumnPropNameInRow="Provincia" msprop:Generator_ColumnVarNameInTable="columnProvincia">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Nazione" msprop:Generator_ColumnPropNameInRow="Nazione" msprop:Generator_ColumnPropNameInTable="NazioneColumn" msprop:Generator_ColumnVarNameInTable="columnNazione" msprop:Generator_UserColumnName="Nazione">
<xs:element name="Nazione" msprop:Generator_UserColumnName="Nazione" msprop:Generator_ColumnPropNameInTable="NazioneColumn" msprop:Generator_ColumnPropNameInRow="Nazione" msprop:Generator_ColumnVarNameInTable="columnNazione">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodArt" msprop:Generator_ColumnPropNameInRow="CodArt" msprop:Generator_ColumnPropNameInTable="CodArtColumn" msprop:Generator_ColumnVarNameInTable="columnCodArt" msprop:Generator_UserColumnName="CodArt">
<xs:element name="CodArt" msprop:Generator_UserColumnName="CodArt" msprop:Generator_ColumnPropNameInTable="CodArtColumn" msprop:Generator_ColumnPropNameInRow="CodArt" msprop:Generator_ColumnVarNameInTable="columnCodArt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescrArt" msprop:Generator_ColumnPropNameInRow="DescrArt" msprop:Generator_ColumnPropNameInTable="DescrArtColumn" msprop:Generator_ColumnVarNameInTable="columnDescrArt" msprop:Generator_UserColumnName="DescrArt">
<xs:element name="DescrArt" msprop:Generator_UserColumnName="DescrArt" msprop:Generator_ColumnPropNameInTable="DescrArtColumn" msprop:Generator_ColumnPropNameInRow="DescrArt" msprop:Generator_ColumnVarNameInTable="columnDescrArt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodArtExt" msprop:Generator_ColumnPropNameInRow="CodArtExt" msprop:Generator_ColumnPropNameInTable="CodArtExtColumn" msprop:Generator_ColumnVarNameInTable="columnCodArtExt" msprop:Generator_UserColumnName="CodArtExt">
<xs:element name="CodArtExt" msprop:Generator_UserColumnName="CodArtExt" msprop:Generator_ColumnPropNameInTable="CodArtExtColumn" msprop:Generator_ColumnPropNameInRow="CodArtExt" msprop:Generator_ColumnVarNameInTable="columnCodArtExt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1167,31 +1216,31 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagArt" msprop:Generator_RowClassName="AnagArtRow" msprop:Generator_RowEvHandlerName="AnagArtRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagArtRowDeleted" msprop:Generator_RowDeletingName="AnagArtRowDeleting" msprop:Generator_RowEvArgName="AnagArtRowChangeEvent" msprop:Generator_TablePropName="AnagArt" msprop:Generator_RowChangedName="AnagArtRowChanged" msprop:Generator_RowChangingName="AnagArtRowChanging" msprop:Generator_TableClassName="AnagArtDataTable" msprop:Generator_UserTableName="AnagArt" msprop:Generator_TableVarName="tableAnagArt">
<xs:element name="AnagArt" msprop:Generator_RowEvHandlerName="AnagArtRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagArtRowDeleted" msprop:Generator_RowDeletingName="AnagArtRowDeleting" msprop:Generator_RowEvArgName="AnagArtRowChangeEvent" msprop:Generator_TablePropName="AnagArt" msprop:Generator_RowChangedName="AnagArtRowChanged" msprop:Generator_UserTableName="AnagArt" msprop:Generator_RowChangingName="AnagArtRowChanging" msprop:Generator_RowClassName="AnagArtRow" msprop:Generator_TableClassName="AnagArtDataTable" msprop:Generator_TableVarName="tableAnagArt">
<xs:complexType>
<xs:sequence>
<xs:element name="CodArt" msprop:Generator_ColumnPropNameInRow="CodArt" msprop:Generator_ColumnPropNameInTable="CodArtColumn" msprop:Generator_ColumnVarNameInTable="columnCodArt" msprop:Generator_UserColumnName="CodArt">
<xs:element name="CodArt" msprop:Generator_UserColumnName="CodArt" msprop:Generator_ColumnPropNameInTable="CodArtColumn" msprop:Generator_ColumnPropNameInRow="CodArt" msprop:Generator_ColumnVarNameInTable="columnCodArt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescrArt" msprop:Generator_ColumnPropNameInRow="DescrArt" msprop:Generator_ColumnPropNameInTable="DescrArtColumn" msprop:Generator_ColumnVarNameInTable="columnDescrArt" msprop:Generator_UserColumnName="DescrArt">
<xs:element name="DescrArt" msprop:Generator_UserColumnName="DescrArt" msprop:Generator_ColumnPropNameInTable="DescrArtColumn" msprop:Generator_ColumnPropNameInRow="DescrArt" msprop:Generator_ColumnVarNameInTable="columnDescrArt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodArtExt" msprop:Generator_ColumnPropNameInRow="CodArtExt" msprop:Generator_ColumnPropNameInTable="CodArtExtColumn" msprop:Generator_ColumnVarNameInTable="columnCodArtExt" msprop:Generator_UserColumnName="CodArtExt">
<xs:element name="CodArtExt" msprop:Generator_UserColumnName="CodArtExt" msprop:Generator_ColumnPropNameInTable="CodArtExtColumn" msprop:Generator_ColumnPropNameInRow="CodArtExt" msprop:Generator_ColumnVarNameInTable="columnCodArtExt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_UserColumnName="CodStato">
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1201,64 +1250,64 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ODL" msprop:Generator_RowEvHandlerName="ODLRowChangeEventHandler" msprop:Generator_RowDeletedName="ODLRowDeleted" msprop:Generator_RowDeletingName="ODLRowDeleting" msprop:Generator_RowEvArgName="ODLRowChangeEvent" msprop:Generator_TablePropName="ODL" msprop:Generator_RowChangedName="ODLRowChanged" msprop:Generator_RowChangingName="ODLRowChanging" msprop:Generator_TableClassName="ODLDataTable" msprop:Generator_RowClassName="ODLRow" msprop:Generator_TableVarName="tableODL" msprop:Generator_UserTableName="ODL">
<xs:element name="ODL" msprop:Generator_RowClassName="ODLRow" msprop:Generator_RowEvHandlerName="ODLRowChangeEventHandler" msprop:Generator_RowDeletedName="ODLRowDeleted" msprop:Generator_RowDeletingName="ODLRowDeleting" msprop:Generator_RowEvArgName="ODLRowChangeEvent" msprop:Generator_TablePropName="ODL" msprop:Generator_RowChangedName="ODLRowChanged" msprop:Generator_UserTableName="ODL" msprop:Generator_RowChangingName="ODLRowChanging" msprop:Generator_TableClassName="ODLDataTable" msprop:Generator_TableVarName="tableODL">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxODL" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnPropNameInRow="IdxODL" msprop:Generator_ColumnPropNameInTable="IdxODLColumn" msprop:Generator_ColumnVarNameInTable="columnIdxODL" msprop:Generator_UserColumnName="IdxODL" type="xs:int" />
<xs:element name="CodArticolo" msprop:Generator_ColumnPropNameInRow="CodArticolo" msprop:Generator_ColumnPropNameInTable="CodArticoloColumn" msprop:Generator_ColumnVarNameInTable="columnCodArticolo" msprop:Generator_UserColumnName="CodArticolo">
<xs:element name="IdxODL" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_UserColumnName="IdxODL" msprop:Generator_ColumnPropNameInTable="IdxODLColumn" msprop:Generator_ColumnPropNameInRow="IdxODL" msprop:Generator_ColumnVarNameInTable="columnIdxODL" type="xs:int" />
<xs:element name="CodArticolo" msprop:Generator_UserColumnName="CodArticolo" msprop:Generator_ColumnPropNameInTable="CodArticoloColumn" msprop:Generator_ColumnPropNameInRow="CodArticolo" msprop:Generator_ColumnVarNameInTable="columnCodArticolo">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IdxMacchina" msprop:Generator_ColumnPropNameInRow="IdxMacchina" msprop:Generator_ColumnPropNameInTable="IdxMacchinaColumn" msprop:Generator_ColumnVarNameInTable="columnIdxMacchina" msprop:Generator_UserColumnName="IdxMacchina" minOccurs="0">
<xs:element name="IdxMacchina" msprop:Generator_UserColumnName="IdxMacchina" msprop:Generator_ColumnPropNameInTable="IdxMacchinaColumn" msprop:Generator_ColumnPropNameInRow="IdxMacchina" msprop:Generator_ColumnVarNameInTable="columnIdxMacchina" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="NumPezzi" msprop:Generator_ColumnPropNameInRow="NumPezzi" msprop:Generator_ColumnPropNameInTable="NumPezziColumn" msprop:Generator_ColumnVarNameInTable="columnNumPezzi" msprop:Generator_UserColumnName="NumPezzi" type="xs:int" />
<xs:element name="TCAssegnato" msprop:Generator_ColumnPropNameInRow="TCAssegnato" msprop:Generator_ColumnPropNameInTable="TCAssegnatoColumn" msprop:Generator_ColumnVarNameInTable="columnTCAssegnato" msprop:Generator_UserColumnName="TCAssegnato" type="xs:decimal" />
<xs:element name="DataInizio" msprop:Generator_ColumnPropNameInRow="DataInizio" msprop:Generator_ColumnPropNameInTable="DataInizioColumn" msprop:Generator_ColumnVarNameInTable="columnDataInizio" msprop:Generator_UserColumnName="DataInizio" type="xs:dateTime" minOccurs="0" />
<xs:element name="DataFine" msprop:Generator_ColumnPropNameInRow="DataFine" msprop:Generator_ColumnPropNameInTable="DataFineColumn" msprop:Generator_ColumnVarNameInTable="columnDataFine" msprop:Generator_UserColumnName="DataFine" type="xs:dateTime" minOccurs="0" />
<xs:element name="Note" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" msprop:Generator_ColumnVarNameInTable="columnNote" msprop:Generator_UserColumnName="Note" minOccurs="0">
<xs:element name="NumPezzi" msprop:Generator_UserColumnName="NumPezzi" msprop:Generator_ColumnPropNameInTable="NumPezziColumn" msprop:Generator_ColumnPropNameInRow="NumPezzi" msprop:Generator_ColumnVarNameInTable="columnNumPezzi" type="xs:int" />
<xs:element name="TCAssegnato" msprop:Generator_UserColumnName="TCAssegnato" msprop:Generator_ColumnPropNameInTable="TCAssegnatoColumn" msprop:Generator_ColumnPropNameInRow="TCAssegnato" msprop:Generator_ColumnVarNameInTable="columnTCAssegnato" type="xs:decimal" />
<xs:element name="DataInizio" msprop:Generator_UserColumnName="DataInizio" msprop:Generator_ColumnPropNameInTable="DataInizioColumn" msprop:Generator_ColumnPropNameInRow="DataInizio" msprop:Generator_ColumnVarNameInTable="columnDataInizio" type="xs:dateTime" minOccurs="0" />
<xs:element name="DataFine" msprop:Generator_UserColumnName="DataFine" msprop:Generator_ColumnPropNameInTable="DataFineColumn" msprop:Generator_ColumnPropNameInRow="DataFine" msprop:Generator_ColumnVarNameInTable="columnDataFine" type="xs:dateTime" minOccurs="0" />
<xs:element name="Note" msprop:Generator_UserColumnName="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnVarNameInTable="columnNote" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="NeedAppr" msprop:Generator_ColumnPropNameInRow="NeedAppr" msprop:Generator_ColumnPropNameInTable="NeedApprColumn" msprop:Generator_ColumnVarNameInTable="columnNeedAppr" msprop:Generator_UserColumnName="NeedAppr" type="xs:boolean" />
<xs:element name="UserAppr" msprop:Generator_ColumnPropNameInRow="UserAppr" msprop:Generator_ColumnPropNameInTable="UserApprColumn" msprop:Generator_ColumnVarNameInTable="columnUserAppr" msprop:Generator_UserColumnName="UserAppr" minOccurs="0">
<xs:element name="NeedAppr" msprop:Generator_UserColumnName="NeedAppr" msprop:Generator_ColumnPropNameInTable="NeedApprColumn" msprop:Generator_ColumnPropNameInRow="NeedAppr" msprop:Generator_ColumnVarNameInTable="columnNeedAppr" type="xs:boolean" />
<xs:element name="UserAppr" msprop:Generator_UserColumnName="UserAppr" msprop:Generator_ColumnPropNameInTable="UserApprColumn" msprop:Generator_ColumnPropNameInRow="UserAppr" msprop:Generator_ColumnVarNameInTable="columnUserAppr" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DataAppr" msprop:Generator_ColumnPropNameInRow="DataAppr" msprop:Generator_ColumnPropNameInTable="DataApprColumn" msprop:Generator_ColumnVarNameInTable="columnDataAppr" msprop:Generator_UserColumnName="DataAppr" type="xs:dateTime" minOccurs="0" />
<xs:element name="TCRichAttr" msprop:Generator_ColumnPropNameInRow="TCRichAttr" msprop:Generator_ColumnPropNameInTable="TCRichAttrColumn" msprop:Generator_ColumnVarNameInTable="columnTCRichAttr" msprop:Generator_UserColumnName="TCRichAttr" type="xs:decimal" minOccurs="0" />
<xs:element name="KeyRichiesta" msprop:Generator_ColumnPropNameInRow="KeyRichiesta" msprop:Generator_ColumnPropNameInTable="KeyRichiestaColumn" msprop:Generator_ColumnVarNameInTable="columnKeyRichiesta" msprop:Generator_UserColumnName="KeyRichiesta">
<xs:element name="DataAppr" msprop:Generator_UserColumnName="DataAppr" msprop:Generator_ColumnPropNameInTable="DataApprColumn" msprop:Generator_ColumnPropNameInRow="DataAppr" msprop:Generator_ColumnVarNameInTable="columnDataAppr" type="xs:dateTime" minOccurs="0" />
<xs:element name="TCRichAttr" msprop:Generator_UserColumnName="TCRichAttr" msprop:Generator_ColumnPropNameInTable="TCRichAttrColumn" msprop:Generator_ColumnPropNameInRow="TCRichAttr" msprop:Generator_ColumnVarNameInTable="columnTCRichAttr" type="xs:decimal" minOccurs="0" />
<xs:element name="KeyRichiesta" msprop:Generator_UserColumnName="KeyRichiesta" msprop:Generator_ColumnPropNameInTable="KeyRichiestaColumn" msprop:Generator_ColumnPropNameInRow="KeyRichiesta" msprop:Generator_ColumnVarNameInTable="columnKeyRichiesta">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PzPallet" msprop:Generator_ColumnPropNameInRow="PzPallet" msprop:Generator_ColumnPropNameInTable="PzPalletColumn" msprop:Generator_ColumnVarNameInTable="columnPzPallet" msprop:Generator_UserColumnName="PzPallet" type="xs:int" />
<xs:element name="provvisorio" msprop:Generator_ColumnPropNameInRow="provvisorio" msprop:Generator_ColumnPropNameInTable="provvisorioColumn" msprop:Generator_ColumnVarNameInTable="columnprovvisorio" msprop:Generator_UserColumnName="provvisorio" type="xs:boolean" />
<xs:element name="MatrOpr" msprop:Generator_ColumnPropNameInRow="MatrOpr" msprop:Generator_ColumnPropNameInTable="MatrOprColumn" msprop:Generator_ColumnVarNameInTable="columnMatrOpr" msprop:Generator_UserColumnName="MatrOpr" type="xs:int" />
<xs:element name="CommessaAs400" msdata:ReadOnly="true" msprop:Generator_ColumnPropNameInRow="CommessaAs400" msprop:Generator_ColumnPropNameInTable="CommessaAs400Column" msprop:Generator_ColumnVarNameInTable="columnCommessaAs400" msprop:Generator_UserColumnName="CommessaAs400" minOccurs="0">
<xs:element name="PzPallet" msprop:Generator_UserColumnName="PzPallet" msprop:Generator_ColumnPropNameInTable="PzPalletColumn" msprop:Generator_ColumnPropNameInRow="PzPallet" msprop:Generator_ColumnVarNameInTable="columnPzPallet" type="xs:int" />
<xs:element name="provvisorio" msprop:Generator_UserColumnName="provvisorio" msprop:Generator_ColumnPropNameInTable="provvisorioColumn" msprop:Generator_ColumnPropNameInRow="provvisorio" msprop:Generator_ColumnVarNameInTable="columnprovvisorio" type="xs:boolean" />
<xs:element name="MatrOpr" msprop:Generator_UserColumnName="MatrOpr" msprop:Generator_ColumnPropNameInTable="MatrOprColumn" msprop:Generator_ColumnPropNameInRow="MatrOpr" msprop:Generator_ColumnVarNameInTable="columnMatrOpr" type="xs:int" />
<xs:element name="CommessaAs400" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CommessaAs400" msprop:Generator_ColumnPropNameInTable="CommessaAs400Column" msprop:Generator_ColumnPropNameInRow="CommessaAs400" msprop:Generator_ColumnVarNameInTable="columnCommessaAs400" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ToAs400" msdata:ReadOnly="true" msprop:Generator_ColumnPropNameInRow="ToAs400" msprop:Generator_ColumnPropNameInTable="ToAs400Column" msprop:Generator_ColumnVarNameInTable="columnToAs400" msprop:Generator_UserColumnName="ToAs400" type="xs:int" minOccurs="0" />
<xs:element name="CodCli" msprop:Generator_ColumnPropNameInRow="CodCli" msprop:Generator_ColumnPropNameInTable="CodCliColumn" msprop:Generator_ColumnVarNameInTable="columnCodCli" msprop:Generator_UserColumnName="CodCli">
<xs:element name="ToAs400" msdata:ReadOnly="true" msprop:Generator_UserColumnName="ToAs400" msprop:Generator_ColumnPropNameInTable="ToAs400Column" msprop:Generator_ColumnPropNameInRow="ToAs400" msprop:Generator_ColumnVarNameInTable="columnToAs400" type="xs:int" minOccurs="0" />
<xs:element name="CodCli" msprop:Generator_UserColumnName="CodCli" msprop:Generator_ColumnPropNameInTable="CodCliColumn" msprop:Generator_ColumnPropNameInRow="CodCli" msprop:Generator_ColumnVarNameInTable="columnCodCli">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1268,17 +1317,17 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Elencopost2Queue" msprop:Generator_RowEvHandlerName="Elencopost2QueueRowChangeEventHandler" msprop:Generator_RowDeletedName="Elencopost2QueueRowDeleted" msprop:Generator_RowDeletingName="Elencopost2QueueRowDeleting" msprop:Generator_RowEvArgName="Elencopost2QueueRowChangeEvent" msprop:Generator_TablePropName="Elencopost2Queue" msprop:Generator_RowChangedName="Elencopost2QueueRowChanged" msprop:Generator_RowChangingName="Elencopost2QueueRowChanging" msprop:Generator_TableClassName="Elencopost2QueueDataTable" msprop:Generator_RowClassName="Elencopost2QueueRow" msprop:Generator_TableVarName="tableElencopost2Queue" msprop:Generator_UserTableName="Elencopost2Queue">
<xs:element name="Elencopost2Queue" msprop:Generator_RowClassName="Elencopost2QueueRow" msprop:Generator_RowEvHandlerName="Elencopost2QueueRowChangeEventHandler" msprop:Generator_RowDeletedName="Elencopost2QueueRowDeleted" msprop:Generator_RowDeletingName="Elencopost2QueueRowDeleting" msprop:Generator_RowEvArgName="Elencopost2QueueRowChangeEvent" msprop:Generator_TablePropName="Elencopost2Queue" msprop:Generator_RowChangedName="Elencopost2QueueRowChanged" msprop:Generator_UserTableName="Elencopost2Queue" msprop:Generator_RowChangingName="Elencopost2QueueRowChanging" msprop:Generator_TableClassName="Elencopost2QueueDataTable" msprop:Generator_TableVarName="tableElencopost2Queue">
<xs:complexType>
<xs:sequence>
<xs:element name="CodPost" msprop:Generator_ColumnPropNameInRow="CodPost" msprop:Generator_ColumnPropNameInTable="CodPostColumn" msprop:Generator_ColumnVarNameInTable="columnCodPost" msprop:Generator_UserColumnName="CodPost">
<xs:element name="CodPost" msprop:Generator_UserColumnName="CodPost" msprop:Generator_ColumnPropNameInTable="CodPostColumn" msprop:Generator_ColumnPropNameInRow="CodPost" msprop:Generator_ColumnVarNameInTable="columnCodPost">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PrintQueue" msprop:Generator_ColumnPropNameInRow="PrintQueue" msprop:Generator_ColumnPropNameInTable="PrintQueueColumn" msprop:Generator_ColumnVarNameInTable="columnPrintQueue" msprop:Generator_UserColumnName="PrintQueue">
<xs:element name="PrintQueue" msprop:Generator_UserColumnName="PrintQueue" msprop:Generator_ColumnPropNameInTable="PrintQueueColumn" msprop:Generator_ColumnPropNameInRow="PrintQueue" msprop:Generator_ColumnVarNameInTable="columnPrintQueue">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
@@ -1288,40 +1337,40 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ElencoAL" msprop:Generator_RowEvHandlerName="ElencoALRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoALRowDeleted" msprop:Generator_RowDeletingName="ElencoALRowDeleting" msprop:Generator_RowEvArgName="ElencoALRowChangeEvent" msprop:Generator_TablePropName="ElencoAL" msprop:Generator_RowChangedName="ElencoALRowChanged" msprop:Generator_RowChangingName="ElencoALRowChanging" msprop:Generator_TableClassName="ElencoALDataTable" msprop:Generator_RowClassName="ElencoALRow" msprop:Generator_TableVarName="tableElencoAL" msprop:Generator_UserTableName="ElencoAL">
<xs:element name="ElencoAL" msprop:Generator_RowClassName="ElencoALRow" msprop:Generator_RowEvHandlerName="ElencoALRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoALRowDeleted" msprop:Generator_RowDeletingName="ElencoALRowDeleting" msprop:Generator_RowEvArgName="ElencoALRowChangeEvent" msprop:Generator_TablePropName="ElencoAL" msprop:Generator_RowChangedName="ElencoALRowChanged" msprop:Generator_UserTableName="ElencoAL" msprop:Generator_RowChangingName="ElencoALRowChanging" msprop:Generator_TableClassName="ElencoALDataTable" msprop:Generator_TableVarName="tableElencoAL">
<xs:complexType>
<xs:sequence>
<xs:element name="AL" msprop:Generator_ColumnPropNameInRow="AL" msprop:Generator_ColumnPropNameInTable="ALColumn" msprop:Generator_ColumnVarNameInTable="columnAL" msprop:Generator_UserColumnName="AL">
<xs:element name="AL" msprop:Generator_UserColumnName="AL" msprop:Generator_ColumnPropNameInTable="ALColumn" msprop:Generator_ColumnPropNameInRow="AL" msprop:Generator_ColumnVarNameInTable="columnAL">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Descr" msprop:Generator_ColumnPropNameInRow="Descr" msprop:Generator_ColumnPropNameInTable="DescrColumn" msprop:Generator_ColumnVarNameInTable="columnDescr" msprop:Generator_UserColumnName="Descr">
<xs:element name="Descr" msprop:Generator_UserColumnName="Descr" msprop:Generator_ColumnPropNameInTable="DescrColumn" msprop:Generator_ColumnPropNameInRow="Descr" msprop:Generator_ColumnVarNameInTable="columnDescr">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="PackListID" msprop:Generator_ColumnPropNameInRow="PackListID" msprop:Generator_ColumnPropNameInTable="PackListIDColumn" msprop:Generator_ColumnVarNameInTable="columnPackListID" msprop:Generator_UserColumnName="PackListID" type="xs:int" />
<xs:element name="Status" msprop:Generator_ColumnPropNameInRow="Status" msprop:Generator_ColumnPropNameInTable="StatusColumn" msprop:Generator_ColumnVarNameInTable="columnStatus" msprop:Generator_UserColumnName="Status" type="xs:int" />
<xs:element name="DtRec" msprop:Generator_ColumnPropNameInRow="DtRec" msprop:Generator_ColumnPropNameInTable="DtRecColumn" msprop:Generator_ColumnVarNameInTable="columnDtRec" msprop:Generator_UserColumnName="DtRec" type="xs:dateTime" />
<xs:element name="Peso" msprop:Generator_ColumnPropNameInRow="Peso" msprop:Generator_ColumnPropNameInTable="PesoColumn" msprop:Generator_ColumnVarNameInTable="columnPeso" msprop:Generator_UserColumnName="Peso" type="xs:decimal" />
<xs:element name="Tara" msprop:Generator_ColumnPropNameInRow="Tara" msprop:Generator_ColumnPropNameInTable="TaraColumn" msprop:Generator_ColumnVarNameInTable="columnTara" msprop:Generator_UserColumnName="Tara" type="xs:decimal" />
<xs:element name="CodSoggetto" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto" msprop:Generator_UserColumnName="CodSoggetto">
<xs:element name="PackListID" msprop:Generator_UserColumnName="PackListID" msprop:Generator_ColumnPropNameInTable="PackListIDColumn" msprop:Generator_ColumnPropNameInRow="PackListID" msprop:Generator_ColumnVarNameInTable="columnPackListID" type="xs:int" />
<xs:element name="Status" msprop:Generator_UserColumnName="Status" msprop:Generator_ColumnPropNameInTable="StatusColumn" msprop:Generator_ColumnPropNameInRow="Status" msprop:Generator_ColumnVarNameInTable="columnStatus" type="xs:int" />
<xs:element name="DtRec" msprop:Generator_UserColumnName="DtRec" msprop:Generator_ColumnPropNameInTable="DtRecColumn" msprop:Generator_ColumnPropNameInRow="DtRec" msprop:Generator_ColumnVarNameInTable="columnDtRec" type="xs:dateTime" />
<xs:element name="Peso" msprop:Generator_UserColumnName="Peso" msprop:Generator_ColumnPropNameInTable="PesoColumn" msprop:Generator_ColumnPropNameInRow="Peso" msprop:Generator_ColumnVarNameInTable="columnPeso" type="xs:decimal" />
<xs:element name="Tara" msprop:Generator_UserColumnName="Tara" msprop:Generator_ColumnPropNameInTable="TaraColumn" msprop:Generator_ColumnPropNameInRow="Tara" msprop:Generator_ColumnVarNameInTable="columnTara" type="xs:decimal" />
<xs:element name="CodSoggetto" msprop:Generator_UserColumnName="CodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="QtaUdc" msdata:ReadOnly="true" msprop:Generator_ColumnPropNameInRow="QtaUdc" msprop:Generator_ColumnPropNameInTable="QtaUdcColumn" msprop:Generator_ColumnVarNameInTable="columnQtaUdc" msprop:Generator_UserColumnName="QtaUdc" type="xs:decimal" minOccurs="0" />
<xs:element name="NumUdc" msdata:ReadOnly="true" msprop:Generator_ColumnPropNameInRow="NumUdc" msprop:Generator_ColumnPropNameInTable="NumUdcColumn" msprop:Generator_ColumnVarNameInTable="columnNumUdc" msprop:Generator_UserColumnName="NumUdc" type="xs:int" minOccurs="0" />
<xs:element name="PesoUdc" msdata:ReadOnly="true" msprop:Generator_ColumnPropNameInRow="PesoUdc" msprop:Generator_ColumnPropNameInTable="PesoUdcColumn" msprop:Generator_ColumnVarNameInTable="columnPesoUdc" msprop:Generator_UserColumnName="PesoUdc" type="xs:decimal" minOccurs="0" />
<xs:element name="TaraUdc" msdata:ReadOnly="true" msprop:Generator_ColumnPropNameInRow="TaraUdc" msprop:Generator_ColumnPropNameInTable="TaraUdcColumn" msprop:Generator_ColumnVarNameInTable="columnTaraUdc" msprop:Generator_UserColumnName="TaraUdc" type="xs:decimal" minOccurs="0" />
<xs:element name="CurrState" msprop:Generator_ColumnPropNameInRow="CurrState" msprop:Generator_ColumnPropNameInTable="CurrStateColumn" msprop:Generator_ColumnVarNameInTable="columnCurrState" msprop:Generator_UserColumnName="CurrState" minOccurs="0">
<xs:element name="QtaUdc" msdata:ReadOnly="true" msprop:Generator_UserColumnName="QtaUdc" msprop:Generator_ColumnPropNameInTable="QtaUdcColumn" msprop:Generator_ColumnPropNameInRow="QtaUdc" msprop:Generator_ColumnVarNameInTable="columnQtaUdc" type="xs:decimal" minOccurs="0" />
<xs:element name="NumUdc" msdata:ReadOnly="true" msprop:Generator_UserColumnName="NumUdc" msprop:Generator_ColumnPropNameInTable="NumUdcColumn" msprop:Generator_ColumnPropNameInRow="NumUdc" msprop:Generator_ColumnVarNameInTable="columnNumUdc" type="xs:int" minOccurs="0" />
<xs:element name="PesoUdc" msdata:ReadOnly="true" msprop:Generator_UserColumnName="PesoUdc" msprop:Generator_ColumnPropNameInTable="PesoUdcColumn" msprop:Generator_ColumnPropNameInRow="PesoUdc" msprop:Generator_ColumnVarNameInTable="columnPesoUdc" type="xs:decimal" minOccurs="0" />
<xs:element name="TaraUdc" msdata:ReadOnly="true" msprop:Generator_UserColumnName="TaraUdc" msprop:Generator_ColumnPropNameInTable="TaraUdcColumn" msprop:Generator_ColumnPropNameInRow="TaraUdc" msprop:Generator_ColumnVarNameInTable="columnTaraUdc" type="xs:decimal" minOccurs="0" />
<xs:element name="CurrState" msprop:Generator_UserColumnName="CurrState" msprop:Generator_ColumnPropNameInTable="CurrStateColumn" msprop:Generator_ColumnPropNameInRow="CurrState" msprop:Generator_ColumnVarNameInTable="columnCurrState" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
@@ -1331,109 +1380,109 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagClienti" msprop:Generator_RowClassName="AnagClientiRow" msprop:Generator_RowEvHandlerName="AnagClientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagClientiRowDeleted" msprop:Generator_RowDeletingName="AnagClientiRowDeleting" msprop:Generator_RowEvArgName="AnagClientiRowChangeEvent" msprop:Generator_TablePropName="AnagClienti" msprop:Generator_RowChangedName="AnagClientiRowChanged" msprop:Generator_RowChangingName="AnagClientiRowChanging" msprop:Generator_TableClassName="AnagClientiDataTable" msprop:Generator_UserTableName="AnagClienti" msprop:Generator_TableVarName="tableAnagClienti">
<xs:element name="AnagClienti" msprop:Generator_RowEvHandlerName="AnagClientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagClientiRowDeleted" msprop:Generator_RowDeletingName="AnagClientiRowDeleting" msprop:Generator_RowEvArgName="AnagClientiRowChangeEvent" msprop:Generator_TablePropName="AnagClienti" msprop:Generator_RowChangedName="AnagClientiRowChanged" msprop:Generator_UserTableName="AnagClienti" msprop:Generator_RowChangingName="AnagClientiRowChanging" msprop:Generator_RowClassName="AnagClientiRow" msprop:Generator_TableClassName="AnagClientiDataTable" msprop:Generator_TableVarName="tableAnagClienti">
<xs:complexType>
<xs:sequence>
<xs:element name="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_UserColumnName="CodCliente">
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="RagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_UserColumnName="RagSociale">
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Indirizzo" msprop:Generator_ColumnPropNameInRow="Indirizzo" msprop:Generator_ColumnPropNameInTable="IndirizzoColumn" msprop:Generator_ColumnVarNameInTable="columnIndirizzo" msprop:Generator_UserColumnName="Indirizzo">
<xs:element name="Indirizzo" msprop:Generator_UserColumnName="Indirizzo" msprop:Generator_ColumnPropNameInTable="IndirizzoColumn" msprop:Generator_ColumnPropNameInRow="Indirizzo" msprop:Generator_ColumnVarNameInTable="columnIndirizzo">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Localita" msprop:Generator_ColumnPropNameInRow="Localita" msprop:Generator_ColumnPropNameInTable="LocalitaColumn" msprop:Generator_ColumnVarNameInTable="columnLocalita" msprop:Generator_UserColumnName="Localita">
<xs:element name="Localita" msprop:Generator_UserColumnName="Localita" msprop:Generator_ColumnPropNameInTable="LocalitaColumn" msprop:Generator_ColumnPropNameInRow="Localita" msprop:Generator_ColumnVarNameInTable="columnLocalita">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Cap" msprop:Generator_ColumnPropNameInRow="Cap" msprop:Generator_ColumnPropNameInTable="CapColumn" msprop:Generator_ColumnVarNameInTable="columnCap" msprop:Generator_UserColumnName="Cap">
<xs:element name="Cap" msprop:Generator_UserColumnName="Cap" msprop:Generator_ColumnPropNameInTable="CapColumn" msprop:Generator_ColumnPropNameInRow="Cap" msprop:Generator_ColumnVarNameInTable="columnCap">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="10" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Provincia" msprop:Generator_ColumnPropNameInRow="Provincia" msprop:Generator_ColumnPropNameInTable="ProvinciaColumn" msprop:Generator_ColumnVarNameInTable="columnProvincia" msprop:Generator_UserColumnName="Provincia">
<xs:element name="Provincia" msprop:Generator_UserColumnName="Provincia" msprop:Generator_ColumnPropNameInTable="ProvinciaColumn" msprop:Generator_ColumnPropNameInRow="Provincia" msprop:Generator_ColumnVarNameInTable="columnProvincia">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Nazione" msprop:Generator_ColumnPropNameInRow="Nazione" msprop:Generator_ColumnPropNameInTable="NazioneColumn" msprop:Generator_ColumnVarNameInTable="columnNazione" msprop:Generator_UserColumnName="Nazione">
<xs:element name="Nazione" msprop:Generator_UserColumnName="Nazione" msprop:Generator_ColumnPropNameInTable="NazioneColumn" msprop:Generator_ColumnPropNameInRow="Nazione" msprop:Generator_ColumnVarNameInTable="columnNazione">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IsCli" msprop:Generator_ColumnPropNameInRow="IsCli" msprop:Generator_ColumnPropNameInTable="IsCliColumn" msprop:Generator_ColumnVarNameInTable="columnIsCli" msprop:Generator_UserColumnName="IsCli" type="xs:boolean" />
<xs:element name="IsFor" msprop:Generator_ColumnPropNameInRow="IsFor" msprop:Generator_ColumnPropNameInTable="IsForColumn" msprop:Generator_ColumnVarNameInTable="columnIsFor" msprop:Generator_UserColumnName="IsFor" type="xs:boolean" />
<xs:element name="IsCli" msprop:Generator_UserColumnName="IsCli" msprop:Generator_ColumnPropNameInTable="IsCliColumn" msprop:Generator_ColumnPropNameInRow="IsCli" msprop:Generator_ColumnVarNameInTable="columnIsCli" type="xs:boolean" />
<xs:element name="IsFor" msprop:Generator_UserColumnName="IsFor" msprop:Generator_ColumnPropNameInTable="IsForColumn" msprop:Generator_ColumnPropNameInRow="IsFor" msprop:Generator_ColumnVarNameInTable="columnIsFor" type="xs:boolean" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ElencoAL2UDC" msprop:Generator_RowClassName="ElencoAL2UDCRow" msprop:Generator_RowEvHandlerName="ElencoAL2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoAL2UDCRowDeleted" msprop:Generator_RowDeletingName="ElencoAL2UDCRowDeleting" msprop:Generator_RowEvArgName="ElencoAL2UDCRowChangeEvent" msprop:Generator_TablePropName="ElencoAL2UDC" msprop:Generator_RowChangedName="ElencoAL2UDCRowChanged" msprop:Generator_RowChangingName="ElencoAL2UDCRowChanging" msprop:Generator_TableClassName="ElencoAL2UDCDataTable" msprop:Generator_UserTableName="ElencoAL2UDC" msprop:Generator_TableVarName="tableElencoAL2UDC">
<xs:element name="ElencoAL2UDC" msprop:Generator_RowEvHandlerName="ElencoAL2UDCRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoAL2UDCRowDeleted" msprop:Generator_RowDeletingName="ElencoAL2UDCRowDeleting" msprop:Generator_RowEvArgName="ElencoAL2UDCRowChangeEvent" msprop:Generator_TablePropName="ElencoAL2UDC" msprop:Generator_RowChangedName="ElencoAL2UDCRowChanged" msprop:Generator_UserTableName="ElencoAL2UDC" msprop:Generator_RowChangingName="ElencoAL2UDCRowChanging" msprop:Generator_RowClassName="ElencoAL2UDCRow" msprop:Generator_TableClassName="ElencoAL2UDCDataTable" msprop:Generator_TableVarName="tableElencoAL2UDC">
<xs:complexType>
<xs:sequence>
<xs:element name="AL" msprop:Generator_ColumnPropNameInRow="AL" msprop:Generator_ColumnPropNameInTable="ALColumn" msprop:Generator_ColumnVarNameInTable="columnAL" msprop:Generator_UserColumnName="AL">
<xs:element name="AL" msprop:Generator_UserColumnName="AL" msprop:Generator_ColumnPropNameInTable="ALColumn" msprop:Generator_ColumnPropNameInRow="AL" msprop:Generator_ColumnVarNameInTable="columnAL">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_UserColumnName="UDC">
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="OrderListID" msprop:Generator_ColumnPropNameInRow="OrderListID" msprop:Generator_ColumnPropNameInTable="OrderListIDColumn" msprop:Generator_ColumnVarNameInTable="columnOrderListID" msprop:Generator_UserColumnName="OrderListID" type="xs:int" />
<xs:element name="OrderListID" msprop:Generator_UserColumnName="OrderListID" msprop:Generator_ColumnPropNameInTable="OrderListIDColumn" msprop:Generator_ColumnPropNameInRow="OrderListID" msprop:Generator_ColumnVarNameInTable="columnOrderListID" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagArticoli2Clienti" msprop:Generator_RowClassName="AnagArticoli2ClientiRow" msprop:Generator_RowEvHandlerName="AnagArticoli2ClientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagArticoli2ClientiRowDeleted" msprop:Generator_RowDeletingName="AnagArticoli2ClientiRowDeleting" msprop:Generator_RowEvArgName="AnagArticoli2ClientiRowChangeEvent" msprop:Generator_TablePropName="AnagArticoli2Clienti" msprop:Generator_RowChangedName="AnagArticoli2ClientiRowChanged" msprop:Generator_RowChangingName="AnagArticoli2ClientiRowChanging" msprop:Generator_TableClassName="AnagArticoli2ClientiDataTable" msprop:Generator_UserTableName="AnagArticoli2Clienti" msprop:Generator_TableVarName="tableAnagArticoli2Clienti">
<xs:element name="AnagArticoli2Clienti" msprop:Generator_RowEvHandlerName="AnagArticoli2ClientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagArticoli2ClientiRowDeleted" msprop:Generator_RowDeletingName="AnagArticoli2ClientiRowDeleting" msprop:Generator_RowEvArgName="AnagArticoli2ClientiRowChangeEvent" msprop:Generator_TablePropName="AnagArticoli2Clienti" msprop:Generator_RowChangedName="AnagArticoli2ClientiRowChanged" msprop:Generator_UserTableName="AnagArticoli2Clienti" msprop:Generator_RowChangingName="AnagArticoli2ClientiRowChanging" msprop:Generator_RowClassName="AnagArticoli2ClientiRow" msprop:Generator_TableClassName="AnagArticoli2ClientiDataTable" msprop:Generator_TableVarName="tableAnagArticoli2Clienti">
<xs:complexType>
<xs:sequence>
<xs:element name="CodArt" msprop:Generator_ColumnPropNameInRow="CodArt" msprop:Generator_ColumnPropNameInTable="CodArtColumn" msprop:Generator_ColumnVarNameInTable="columnCodArt" msprop:Generator_UserColumnName="CodArt">
<xs:element name="CodArt" msprop:Generator_UserColumnName="CodArt" msprop:Generator_ColumnPropNameInTable="CodArtColumn" msprop:Generator_ColumnPropNameInRow="CodArt" msprop:Generator_ColumnVarNameInTable="columnCodArt">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_UserColumnName="CodCliente">
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodArtCliente" msprop:Generator_ColumnPropNameInRow="CodArtCliente" msprop:Generator_ColumnPropNameInTable="CodArtClienteColumn" msprop:Generator_ColumnVarNameInTable="columnCodArtCliente" msprop:Generator_UserColumnName="CodArtCliente">
<xs:element name="CodArtCliente" msprop:Generator_UserColumnName="CodArtCliente" msprop:Generator_ColumnPropNameInTable="CodArtClienteColumn" msprop:Generator_ColumnPropNameInRow="CodArtCliente" msprop:Generator_ColumnVarNameInTable="columnCodArtCliente">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescrArtCliente" msprop:Generator_ColumnPropNameInRow="DescrArtCliente" msprop:Generator_ColumnPropNameInTable="DescrArtClienteColumn" msprop:Generator_ColumnVarNameInTable="columnDescrArtCliente" msprop:Generator_UserColumnName="DescrArtCliente" minOccurs="0">
<xs:element name="DescrArtCliente" msprop:Generator_UserColumnName="DescrArtCliente" msprop:Generator_ColumnPropNameInTable="DescrArtClienteColumn" msprop:Generator_ColumnPropNameInRow="DescrArtCliente" msprop:Generator_ColumnVarNameInTable="columnDescrArtCliente" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
@@ -1443,123 +1492,123 @@ SELECT CodCliente, CodDestinazione, DescDestinazione, Indirizzo, Cap, Localita,
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Macchine" msprop:Generator_RowEvHandlerName="MacchineRowChangeEventHandler" msprop:Generator_RowDeletedName="MacchineRowDeleted" msprop:Generator_RowDeletingName="MacchineRowDeleting" msprop:Generator_RowEvArgName="MacchineRowChangeEvent" msprop:Generator_TablePropName="Macchine" msprop:Generator_RowChangedName="MacchineRowChanged" msprop:Generator_RowChangingName="MacchineRowChanging" msprop:Generator_TableClassName="MacchineDataTable" msprop:Generator_RowClassName="MacchineRow" msprop:Generator_TableVarName="tableMacchine" msprop:Generator_UserTableName="Macchine">
<xs:element name="Macchine" msprop:Generator_RowClassName="MacchineRow" msprop:Generator_RowEvHandlerName="MacchineRowChangeEventHandler" msprop:Generator_RowDeletedName="MacchineRowDeleted" msprop:Generator_RowDeletingName="MacchineRowDeleting" msprop:Generator_RowEvArgName="MacchineRowChangeEvent" msprop:Generator_TablePropName="Macchine" msprop:Generator_RowChangedName="MacchineRowChanged" msprop:Generator_UserTableName="Macchine" msprop:Generator_RowChangingName="MacchineRowChanging" msprop:Generator_TableClassName="MacchineDataTable" msprop:Generator_TableVarName="tableMacchine">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxMacchina" msprop:Generator_ColumnPropNameInRow="IdxMacchina" msprop:Generator_ColumnPropNameInTable="IdxMacchinaColumn" msprop:Generator_ColumnVarNameInTable="columnIdxMacchina" msprop:Generator_UserColumnName="IdxMacchina">
<xs:element name="IdxMacchina" msprop:Generator_UserColumnName="IdxMacchina" msprop:Generator_ColumnPropNameInTable="IdxMacchinaColumn" msprop:Generator_ColumnPropNameInRow="IdxMacchina" msprop:Generator_ColumnVarNameInTable="columnIdxMacchina">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodMacchina" msprop:Generator_ColumnPropNameInRow="CodMacchina" msprop:Generator_ColumnPropNameInTable="CodMacchinaColumn" msprop:Generator_ColumnVarNameInTable="columnCodMacchina" msprop:Generator_UserColumnName="CodMacchina" minOccurs="0">
<xs:element name="CodMacchina" msprop:Generator_UserColumnName="CodMacchina" msprop:Generator_ColumnPropNameInTable="CodMacchinaColumn" msprop:Generator_ColumnPropNameInRow="CodMacchina" msprop:Generator_ColumnVarNameInTable="columnCodMacchina" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Nome" msprop:Generator_ColumnPropNameInRow="Nome" msprop:Generator_ColumnPropNameInTable="NomeColumn" msprop:Generator_ColumnVarNameInTable="columnNome" msprop:Generator_UserColumnName="Nome" minOccurs="0">
<xs:element name="Nome" msprop:Generator_UserColumnName="Nome" msprop:Generator_ColumnPropNameInTable="NomeColumn" msprop:Generator_ColumnPropNameInRow="Nome" msprop:Generator_ColumnVarNameInTable="columnNome" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Descrizione" msprop:Generator_ColumnPropNameInRow="Descrizione" msprop:Generator_ColumnPropNameInTable="DescrizioneColumn" msprop:Generator_ColumnVarNameInTable="columnDescrizione" msprop:Generator_UserColumnName="Descrizione" minOccurs="0">
<xs:element name="Descrizione" msprop:Generator_UserColumnName="Descrizione" msprop:Generator_ColumnPropNameInTable="DescrizioneColumn" msprop:Generator_ColumnPropNameInRow="Descrizione" msprop:Generator_ColumnVarNameInTable="columnDescrizione" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Note" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" msprop:Generator_ColumnVarNameInTable="columnNote" msprop:Generator_UserColumnName="Note" minOccurs="0">
<xs:element name="Note" msprop:Generator_UserColumnName="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnVarNameInTable="columnNote" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="url" msprop:Generator_ColumnPropNameInRow="url" msprop:Generator_ColumnPropNameInTable="urlColumn" msprop:Generator_ColumnVarNameInTable="columnurl" msprop:Generator_UserColumnName="url" minOccurs="0">
<xs:element name="url" msprop:Generator_UserColumnName="url" msprop:Generator_ColumnPropNameInTable="urlColumn" msprop:Generator_ColumnPropNameInRow="url" msprop:Generator_ColumnVarNameInTable="columnurl" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="locazione" msprop:Generator_ColumnPropNameInRow="locazione" msprop:Generator_ColumnPropNameInTable="locazioneColumn" msprop:Generator_ColumnVarNameInTable="columnlocazione" msprop:Generator_UserColumnName="locazione" minOccurs="0">
<xs:element name="locazione" msprop:Generator_UserColumnName="locazione" msprop:Generator_ColumnPropNameInTable="locazioneColumn" msprop:Generator_ColumnPropNameInRow="locazione" msprop:Generator_ColumnVarNameInTable="columnlocazione" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="css" msprop:Generator_ColumnPropNameInRow="css" msprop:Generator_ColumnPropNameInTable="cssColumn" msprop:Generator_ColumnVarNameInTable="columncss" msprop:Generator_UserColumnName="css">
<xs:element name="css" msprop:Generator_UserColumnName="css" msprop:Generator_ColumnPropNameInTable="cssColumn" msprop:Generator_ColumnPropNameInRow="css" msprop:Generator_ColumnVarNameInTable="columncss">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="RowNum" msprop:Generator_ColumnPropNameInRow="RowNum" msprop:Generator_ColumnPropNameInTable="RowNumColumn" msprop:Generator_ColumnVarNameInTable="columnRowNum" msprop:Generator_UserColumnName="RowNum" type="xs:int" />
<xs:element name="ColNum" msprop:Generator_ColumnPropNameInRow="ColNum" msprop:Generator_ColumnPropNameInTable="ColNumColumn" msprop:Generator_ColumnVarNameInTable="columnColNum" msprop:Generator_UserColumnName="ColNum" type="xs:int" />
<xs:element name="RowNum" msprop:Generator_UserColumnName="RowNum" msprop:Generator_ColumnPropNameInTable="RowNumColumn" msprop:Generator_ColumnPropNameInRow="RowNum" msprop:Generator_ColumnVarNameInTable="columnRowNum" type="xs:int" />
<xs:element name="ColNum" msprop:Generator_UserColumnName="ColNum" msprop:Generator_ColumnPropNameInTable="ColNumColumn" msprop:Generator_ColumnPropNameInRow="ColNum" msprop:Generator_ColumnVarNameInTable="columnColNum" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="AnagDestinClienti" msprop:Generator_RowEvHandlerName="AnagDestinClientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagDestinClientiRowDeleted" msprop:Generator_RowDeletingName="AnagDestinClientiRowDeleting" msprop:Generator_RowEvArgName="AnagDestinClientiRowChangeEvent" msprop:Generator_TablePropName="AnagDestinClienti" msprop:Generator_RowChangedName="AnagDestinClientiRowChanged" msprop:Generator_RowChangingName="AnagDestinClientiRowChanging" msprop:Generator_TableClassName="AnagDestinClientiDataTable" msprop:Generator_RowClassName="AnagDestinClientiRow" msprop:Generator_TableVarName="tableAnagDestinClienti" msprop:Generator_UserTableName="AnagDestinClienti">
<xs:element name="AnagDestinClienti" msprop:Generator_RowClassName="AnagDestinClientiRow" msprop:Generator_RowEvHandlerName="AnagDestinClientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagDestinClientiRowDeleted" msprop:Generator_RowDeletingName="AnagDestinClientiRowDeleting" msprop:Generator_RowEvArgName="AnagDestinClientiRowChangeEvent" msprop:Generator_TablePropName="AnagDestinClienti" msprop:Generator_RowChangedName="AnagDestinClientiRowChanged" msprop:Generator_UserTableName="AnagDestinClienti" msprop:Generator_RowChangingName="AnagDestinClientiRowChanging" msprop:Generator_TableClassName="AnagDestinClientiDataTable" msprop:Generator_TableVarName="tableAnagDestinClienti">
<xs:complexType>
<xs:sequence>
<xs:element name="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_UserColumnName="CodCliente">
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CodDestinazione" msprop:Generator_ColumnPropNameInRow="CodDestinazione" msprop:Generator_ColumnPropNameInTable="CodDestinazioneColumn" msprop:Generator_ColumnVarNameInTable="columnCodDestinazione" msprop:Generator_UserColumnName="CodDestinazione">
<xs:element name="CodDestinazione" msprop:Generator_UserColumnName="CodDestinazione" msprop:Generator_ColumnPropNameInTable="CodDestinazioneColumn" msprop:Generator_ColumnPropNameInRow="CodDestinazione" msprop:Generator_ColumnVarNameInTable="columnCodDestinazione">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DescDestinazione" msprop:Generator_ColumnPropNameInRow="DescDestinazione" msprop:Generator_ColumnPropNameInTable="DescDestinazioneColumn" msprop:Generator_ColumnVarNameInTable="columnDescDestinazione" msprop:Generator_UserColumnName="DescDestinazione">
<xs:element name="DescDestinazione" msprop:Generator_UserColumnName="DescDestinazione" msprop:Generator_ColumnPropNameInTable="DescDestinazioneColumn" msprop:Generator_ColumnPropNameInRow="DescDestinazione" msprop:Generator_ColumnVarNameInTable="columnDescDestinazione">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Indirizzo" msprop:Generator_ColumnPropNameInRow="Indirizzo" msprop:Generator_ColumnPropNameInTable="IndirizzoColumn" msprop:Generator_ColumnVarNameInTable="columnIndirizzo" msprop:Generator_UserColumnName="Indirizzo" minOccurs="0">
<xs:element name="Indirizzo" msprop:Generator_UserColumnName="Indirizzo" msprop:Generator_ColumnPropNameInTable="IndirizzoColumn" msprop:Generator_ColumnPropNameInRow="Indirizzo" msprop:Generator_ColumnVarNameInTable="columnIndirizzo" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Cap" msprop:Generator_ColumnPropNameInRow="Cap" msprop:Generator_ColumnPropNameInTable="CapColumn" msprop:Generator_ColumnVarNameInTable="columnCap" msprop:Generator_UserColumnName="Cap" minOccurs="0">
<xs:element name="Cap" msprop:Generator_UserColumnName="Cap" msprop:Generator_ColumnPropNameInTable="CapColumn" msprop:Generator_ColumnPropNameInRow="Cap" msprop:Generator_ColumnVarNameInTable="columnCap" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="10" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Localita" msprop:Generator_ColumnPropNameInRow="Localita" msprop:Generator_ColumnPropNameInTable="LocalitaColumn" msprop:Generator_ColumnVarNameInTable="columnLocalita" msprop:Generator_UserColumnName="Localita" minOccurs="0">
<xs:element name="Localita" msprop:Generator_UserColumnName="Localita" msprop:Generator_ColumnPropNameInTable="LocalitaColumn" msprop:Generator_ColumnPropNameInRow="Localita" msprop:Generator_ColumnVarNameInTable="columnLocalita" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Provincia" msprop:Generator_ColumnPropNameInRow="Provincia" msprop:Generator_ColumnPropNameInTable="ProvinciaColumn" msprop:Generator_ColumnVarNameInTable="columnProvincia" msprop:Generator_UserColumnName="Provincia" minOccurs="0">
<xs:element name="Provincia" msprop:Generator_UserColumnName="Provincia" msprop:Generator_ColumnPropNameInTable="ProvinciaColumn" msprop:Generator_ColumnPropNameInRow="Provincia" msprop:Generator_ColumnVarNameInTable="columnProvincia" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Nazione" msprop:Generator_ColumnPropNameInRow="Nazione" msprop:Generator_ColumnPropNameInTable="NazioneColumn" msprop:Generator_ColumnVarNameInTable="columnNazione" msprop:Generator_UserColumnName="Nazione" minOccurs="0">
<xs:element name="Nazione" msprop:Generator_UserColumnName="Nazione" msprop:Generator_ColumnPropNameInTable="NazioneColumn" msprop:Generator_ColumnPropNameInRow="Nazione" msprop:Generator_ColumnVarNameInTable="columnNazione" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
+11 -10
View File
@@ -6,16 +6,17 @@
</autogenerated>-->
<DiagramLayout xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-10" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:ElencoLotti" ZOrder="10" X="241" Y="15" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:ElencoUdc" ZOrder="9" X="561" Y="17" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagArt" ZOrder="5" X="279" Y="548" Height="191" Width="193" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:ODL" ZOrder="1" X="930" Y="30" Height="343" Width="198" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:Elencopost2Queue" ZOrder="4" X="30" Y="753" Height="134" Width="252" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:ElencoAL" ZOrder="8" X="882" Y="491" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagClienti" ZOrder="2" X="320" Y="783" Height="324" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
<Shape ID="DesignTable:ElencoAL2UDC" ZOrder="7" X="16" Y="357" Height="172" Width="246" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:AnagArticoli2Clienti" ZOrder="6" X="8" Y="549" Height="172" Width="262" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:Macchine" ZOrder="3" X="621" Y="553" Height="267" Width="200" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
<Shape ID="DesignTable:ElencoLotti" ZOrder="11" X="241" Y="15" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:ElencoUdc" ZOrder="10" X="561" Y="17" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagArt" ZOrder="6" X="279" Y="548" Height="191" Width="193" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:ODL" ZOrder="2" X="930" Y="30" Height="343" Width="198" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:Elencopost2Queue" ZOrder="5" X="30" Y="753" Height="134" Width="252" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:ElencoAL" ZOrder="9" X="882" Y="491" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagClienti" ZOrder="3" X="320" Y="783" Height="324" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
<Shape ID="DesignTable:ElencoAL2UDC" ZOrder="8" X="16" Y="357" Height="172" Width="246" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:AnagArticoli2Clienti" ZOrder="7" X="8" Y="549" Height="172" Width="262" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:Macchine" ZOrder="4" X="621" Y="553" Height="267" Width="200" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
<Shape ID="DesignTable:AnagDestinClienti" ZOrder="1" X="671" Y="892" Height="305" Width="266" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
</Shapes>
<Connectors />
</DiagramLayout>
+6 -3
View File
@@ -38,8 +38,9 @@ namespace MagData
public static string redReportConf = "MP-CTRACK:MAG:reportConf";
public DS_MagTableAdapters.AnagArtTableAdapter taAA;
public DS_MagTableAdapters.AnagClientiTableAdapter taACF;
public DS_MagTableAdapters.AnagArticoli2ClientiTableAdapter taAA2C;
public DS_MagTableAdapters.AnagClientiTableAdapter taACF;
public DS_MagTableAdapters.AnagDestinClientiTableAdapter taADC;
public DS_ReportTableAdapters.stp_prt_CartellinoFinitiOdetteTableAdapter taCFOdette;
public DS_ReportTableAdapters.stp_prt_CartellinoPedaneTableAdapter taCPed;
public DS_ReportTableAdapters.stp_prt_CartellinoSemilavoratiTableAdapter taCSemil;
@@ -326,8 +327,9 @@ namespace MagData
taRepPLFull = new DS_ReportTableAdapters.stp_prt_ReportPackListFullTableAdapter();
taAA = new DS_MagTableAdapters.AnagArtTableAdapter();
taACF = new DS_MagTableAdapters.AnagClientiTableAdapter();
taAA2C = new DS_MagTableAdapters.AnagArticoli2ClientiTableAdapter();
taACF = new DS_MagTableAdapters.AnagClientiTableAdapter();
taADC= new DS_MagTableAdapters.AnagDestinClientiTableAdapter();
taEA2U = new DS_MagTableAdapters.ElencoAL2UDCTableAdapter();
taEAL = new DS_MagTableAdapters.ElencoALTableAdapter();
taEL = new DS_MagTableAdapters.ElencoLottiTableAdapter();
@@ -352,8 +354,9 @@ namespace MagData
taRepPLFull.Connection.ConnectionString = connString;
taAA.Connection.ConnectionString = connString;
taACF.Connection.ConnectionString = connString;
taAA2C.Connection.ConnectionString = connString;
taACF.Connection.ConnectionString = connString;
taADC.Connection.ConnectionString = connString;
taEA2U.Connection.ConnectionString = connString;
taEAL.Connection.ConnectionString = connString;
taEL.Connection.ConnectionString = connString;