COntinuato x odette...
git-svn-id: https://keyhammer.ath.cx/svn/GMW/trunk@353 365432ac-a1b5-4ffd-bb28-6d3099d32164
This commit is contained in:
@@ -934,6 +934,9 @@
|
||||
<Content Include="images\lista_03-TerWip_l.png" />
|
||||
<Content Include="images\lista_03-TerWip_m.png" />
|
||||
<Content Include="images\lista_03-TerWip_s.png" />
|
||||
<Content Include="images\lista_04-OdetSP_l.png" />
|
||||
<Content Include="images\lista_04-OdetSP_m.png" />
|
||||
<Content Include="images\lista_04-OdetSP_s.png" />
|
||||
<Content Include="images\recycle_green_l.png" />
|
||||
<Content Include="images\recycle_green_m.png" />
|
||||
<Content Include="images\recycle_green_s.png" />
|
||||
|
||||
@@ -471,9 +471,13 @@ namespace GMW.WebUserControls
|
||||
bool prelievoOk = false;
|
||||
bool cambioUdcOk = false;
|
||||
int codStato = 0;
|
||||
string codTipoLista = "";
|
||||
DS_magazzino.ElencoListePrelievoDataTable tabElencoListe = new DS_magazzino.ElencoListePrelievoDataTable();
|
||||
try
|
||||
{
|
||||
codStato = GMW_data.MagClass.magazzino.taElencoListePrelievo.getByCodLista(grView.SelectedValue.ToString())[0].CodStatoLista;
|
||||
tabElencoListe = GMW_data.MagClass.magazzino.taElencoListePrelievo.getByCodLista(grView.SelectedValue.ToString());
|
||||
codStato = tabElencoListe[0].CodStatoLista;
|
||||
codTipoLista = tabElencoListe[0].CodTipoLista;
|
||||
cambioUdcOk = (codStato == (int)statoLista.bozza);
|
||||
prelievoOk = (codStato == (int)statoLista.iniziata);
|
||||
}
|
||||
@@ -482,6 +486,7 @@ namespace GMW.WebUserControls
|
||||
mod_viewRigheListaPrelievo1.prelievoEnabled = prelievoOk; // abilito il prelievo SOLO se la lista è già iniziata...
|
||||
mod_viewRigheListaPrelievo1.editRigheEnabled = cambioUdcOk; // abilito il prelievo SOLO se la lista è in BOZZA...
|
||||
mod_viewRigheListaPrelievo1.intStatoLista = codStato; // salvo il cod (INT) stato della lista
|
||||
mod_viewRigheListaPrelievo1.codTipoLista = codTipoLista; // salvo il tipo lista
|
||||
// mostra con dettagli
|
||||
mod_viewRigheListaPrelievo1.Visible = true;
|
||||
mod_viewRigheListaPrelievo1.resetSelezione();
|
||||
|
||||
@@ -88,6 +88,10 @@ namespace GMW.WebUserControls
|
||||
txtQta.Visible = true;
|
||||
ddlDestinatario.Visible = true;
|
||||
ddlImballo.Visible = true;
|
||||
// setto ddl a "*"
|
||||
ddlEsponente.SelectedValue = "*";
|
||||
ddlFigura.SelectedValue = "*";
|
||||
ddlImballo.SelectedValue = "*";
|
||||
// verifico
|
||||
if (numPezziDisp > 0)
|
||||
{
|
||||
|
||||
@@ -180,6 +180,19 @@
|
||||
<HeaderStyle HorizontalAlign="Center"></HeaderStyle>
|
||||
<ItemStyle HorizontalAlign="Center"></ItemStyle>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Center">
|
||||
<HeaderTemplate>
|
||||
<asp:Label runat="server" ID="lblCreaOdette" Text="Odette" ToolTip='<%# traduci("lblCreaOdette") %>' />
|
||||
</HeaderTemplate>
|
||||
<ItemTemplate>
|
||||
<asp:ImageButton ID="imgCreaOdette" runat="server" CausesValidation="False"
|
||||
CommandName="Update" CommandArgument="CreaEtichetteOdette" ToolTip='<%# traduci("CreaEtichetteOdette") %>'
|
||||
Visible='<%# CreaOdetteEnabled(Eval("CodStatoLista"),Eval("CodTipoLista")) %>' ImageUrl="~/images/wizard.png"
|
||||
OnClick="img_Click" />
|
||||
</ItemTemplate>
|
||||
<HeaderStyle HorizontalAlign="Center"></HeaderStyle>
|
||||
<ItemStyle HorizontalAlign="Center"></ItemStyle>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField>
|
||||
<ItemTemplate>
|
||||
<asp:HyperLink runat="server" ID="lnkShow" ImageUrl="~/images/print_s.png" NavigateUrl='<%# formattaUrlReport(Eval("CodLista")) %>'
|
||||
|
||||
@@ -451,7 +451,25 @@ namespace GMW.WebUserControls
|
||||
{ }
|
||||
return answ;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// determina se sia abilitato il pulsante x creare le etichette odette
|
||||
/// </summary>
|
||||
/// <param name="codStato"></param>
|
||||
/// <param name="codTipoLista"></param>
|
||||
/// <returns></returns>
|
||||
public bool CreaOdetteEnabled(object codStato, object codTipoLista)
|
||||
{
|
||||
bool answ = false;
|
||||
try
|
||||
{
|
||||
// !!!FARE!!! controllare che non ci siano già, in tal caso non deve ricreare...
|
||||
answ = (((int)codStato == (int)statoLista.completata)&& (codTipoLista.ToString() == "04-OdetSP"));
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
return answ;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// gestione cambio selezione valore
|
||||
/// </summary>
|
||||
@@ -472,9 +490,13 @@ namespace GMW.WebUserControls
|
||||
bool prelievoOk = false;
|
||||
bool cambioUdcOk = false;
|
||||
int codStato = 0;
|
||||
string codTipoLista = "";
|
||||
DS_magazzino.ElencoListePrelievoDataTable tabElencoListe = new DS_magazzino.ElencoListePrelievoDataTable();
|
||||
try
|
||||
{
|
||||
codStato = GMW_data.MagClass.magazzino.taElencoListePrelievo.getByCodLista(grView.SelectedValue.ToString())[0].CodStatoLista;
|
||||
tabElencoListe = GMW_data.MagClass.magazzino.taElencoListePrelievo.getByCodLista(grView.SelectedValue.ToString());
|
||||
codStato = tabElencoListe[0].CodStatoLista;
|
||||
codTipoLista = tabElencoListe[0].CodTipoLista;
|
||||
cambioUdcOk = (codStato == (int)statoLista.bozza);
|
||||
prelievoOk = (codStato == (int)statoLista.iniziata);
|
||||
}
|
||||
@@ -483,6 +505,7 @@ namespace GMW.WebUserControls
|
||||
mod_viewRigheListaPrelievo1.prelievoEnabled = prelievoOk; // abilito il prelievo SOLO se la lista è già iniziata...
|
||||
mod_viewRigheListaPrelievo1.editRigheEnabled = cambioUdcOk; // abilito il prelievo SOLO se la lista è in BOZZA...
|
||||
mod_viewRigheListaPrelievo1.intStatoLista = codStato; // salvo il cod (INT) stato della lista
|
||||
mod_viewRigheListaPrelievo1.codTipoLista = codTipoLista; // salvo il tipo lista
|
||||
// mostra con dettagli
|
||||
mod_viewRigheListaPrelievo1.Visible = true;
|
||||
mod_viewRigheListaPrelievo1.resetSelezione();
|
||||
@@ -537,6 +560,15 @@ namespace GMW.WebUserControls
|
||||
SteamWare.memLayer.ML.setSessionVal("nextObjCommand", "scaricaListaPrelievo");
|
||||
}
|
||||
/// <summary>
|
||||
/// salvo in session il prox comando
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void img_Click(object sender, ImageClickEventArgs e)
|
||||
{
|
||||
SteamWare.memLayer.ML.setSessionVal("nextObjCommand", ((ImageButton)sender).CommandArgument);
|
||||
}
|
||||
/// <summary>
|
||||
/// in caso di aggiornamento verifico se sia salvato un comando inizia o completa lista prelievo...
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
@@ -545,6 +577,17 @@ namespace GMW.WebUserControls
|
||||
{
|
||||
// carico l'idx dell'oggetto
|
||||
string codLista = e.Keys["CodLista"].ToString();
|
||||
// recupero il tipo lista
|
||||
string codTipoLista = "";
|
||||
DS_magazzino.ElencoListePrelievoDataTable tabElencoListe = new DS_magazzino.ElencoListePrelievoDataTable();
|
||||
try
|
||||
{
|
||||
codTipoLista = tabElencoListe[0].CodTipoLista;
|
||||
}
|
||||
catch
|
||||
{
|
||||
logger.lg.scriviLog(string.Format("Non ho trovato tipo lista per la lista di prelievo seguente: {0}", codLista), tipoLog.ERROR);
|
||||
}
|
||||
// quale comando?
|
||||
string _comando = "";
|
||||
if (SteamWare.memLayer.ML.isInSessionObject("nextObjCommand"))
|
||||
@@ -611,6 +654,13 @@ namespace GMW.WebUserControls
|
||||
// blocco update!
|
||||
e.Cancel = true;
|
||||
break;
|
||||
case "CreaEtichetteOdette":
|
||||
// mostro modulo per associazione etichette odette / bolla
|
||||
// !!!FARE!!!
|
||||
mod_nuovaListaPrelievo1.Visible = true;
|
||||
// blocco update!
|
||||
e.Cancel = true;
|
||||
break;
|
||||
default:
|
||||
// faccio update!
|
||||
break;
|
||||
|
||||
@@ -139,7 +139,7 @@ public partial class mod_periodoAnalisi : System.Web.UI.UserControl
|
||||
{
|
||||
_intervallo = new intervalloDate();
|
||||
_intervallo.inizio = DateTime.Now.AddDays(-7);
|
||||
_intervallo.fine = DateTime.Now;
|
||||
_intervallo.fine = DateTime.Now.AddDays(1);
|
||||
Session["_intervallo"] = _intervallo;
|
||||
Session["_inizio"] = _intervallo.inizio;
|
||||
Session["_fine"] = _intervallo.fine;
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
Inherits="GMW.WebUserControls.mod_viewRigheListaPrelievo" %>
|
||||
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
|
||||
<%@ Register Src="mod_selettore_ajax.ascx" TagName="mod_selettore_ajax" TagPrefix="uc1" %>
|
||||
<asp:Button runat="server" ID="btnRistampaOdette" Text="PrintAll" />
|
||||
<asp:GridView ID="grView" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
|
||||
OnSelectedIndexChanged="grView_SelectedIndexChanged" OnDataBound="grView_DataBound"
|
||||
DataKeyNames="CodLista,UDC" DataSourceID="ods" OnPageIndexChanged="grView_PageIndexChanged"
|
||||
OnSorted="grView_Sorted" OnRowUpdating="grView_RowUpdating"
|
||||
OnRowEditing="grView_RowEditing"
|
||||
OnRowCancelingEdit="grView_RowCancelingEdit" onrowdeleted="grView_RowDeleted">
|
||||
OnSorted="grView_Sorted" OnRowUpdating="grView_RowUpdating" OnRowEditing="grView_RowEditing"
|
||||
OnRowCancelingEdit="grView_RowCancelingEdit" OnRowDeleted="grView_RowDeleted">
|
||||
<RowStyle CssClass="ctrRowStyle" />
|
||||
<AlternatingRowStyle CssClass="ctrAltRowStyle" />
|
||||
<EditRowStyle CssClass="ctrEditRowStyle" />
|
||||
@@ -91,12 +91,21 @@
|
||||
ToolTip='<%# traduci("Cancel") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.annulla , SteamWare.dimImg.small) %>' />
|
||||
</EditItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField>
|
||||
<HeaderTemplate>
|
||||
<asp:label ID="lblOdette" runat="server" Text='<%# traduci("Odette") %>'
|
||||
Visible='<%# odetteVisible %>' />
|
||||
</HeaderTemplate>
|
||||
<ItemTemplate>
|
||||
<asp:HyperLink runat="server" ID="lnkShow" ImageUrl="~/images/print_s.png" NavigateUrl='<%# formattaUrlOdette(Eval("UDC")) %>'
|
||||
Target="_blank" ToolTip="Stampa" Visible='<%# odetteVisible %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
</Columns>
|
||||
</asp:GridView>
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}"
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}"
|
||||
SelectMethod="getByCodLista" TypeName="GMW_data.DS_magazzinoTableAdapters.v_righeListePrelievoPosizioneTableAdapter"
|
||||
UpdateMethod="updateUDC" DeleteMethod="DeleteQuery"
|
||||
OnUpdated="ods_Updated">
|
||||
UpdateMethod="updateUDC" DeleteMethod="DeleteQuery" OnUpdated="ods_Updated">
|
||||
<UpdateParameters>
|
||||
<asp:Parameter Name="Original_CodLista" Type="String" />
|
||||
<asp:Parameter Name="Original_UDC" Type="String" />
|
||||
|
||||
@@ -126,6 +126,10 @@ namespace GMW.WebUserControls
|
||||
/// <param name="e"></param>
|
||||
protected override void OnInit(EventArgs e)
|
||||
{
|
||||
if (!Page.IsPostBack)
|
||||
{
|
||||
btnRistampaOdette.Text = traduci("RistampaOdette");
|
||||
}
|
||||
base.OnInit(e);
|
||||
}
|
||||
|
||||
@@ -182,6 +186,15 @@ namespace GMW.WebUserControls
|
||||
/// </summary>
|
||||
public void resetSelezione()
|
||||
{
|
||||
// controlla stato lista e tipo lista x decidere se mostrare pulsante ristampa odette
|
||||
if (odetteVisible)
|
||||
{
|
||||
btnRistampaOdette.Visible = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
btnRistampaOdette.Visible = false;
|
||||
}
|
||||
grView.SelectedIndex = -1;
|
||||
grView.DataBind();
|
||||
lblWarning.Visible = false;
|
||||
@@ -479,6 +492,10 @@ namespace GMW.WebUserControls
|
||||
/// </summary>
|
||||
public int intStatoLista { get; set; }
|
||||
/// <summary>
|
||||
/// registra il tipo della lista di prelievo (x controllo visibilità valori)
|
||||
/// </summary>
|
||||
public string codTipoLista { get; set; }
|
||||
/// <summary>
|
||||
/// salvo parametri x selettore ajax
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
@@ -529,6 +546,26 @@ namespace GMW.WebUserControls
|
||||
eh_nuovoValore(this, new EventArgs());
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// determina se siano visibili i pulsanti x ristampa odette
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public bool odetteVisible
|
||||
{
|
||||
get
|
||||
{
|
||||
return (intStatoLista == ((int)statoLista.scaricata) && codTipoLista == "04-OdetSP"); // !!! HARD-CODED tipo lista;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// restituisce URL x chiamata stampa report odette
|
||||
/// </summary>
|
||||
/// <param name="_udc"></param>
|
||||
/// <returns></returns>
|
||||
public string formattaUrlOdette(object _udc)
|
||||
{
|
||||
return _udc.ToString();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:2.0.50727.4927
|
||||
// Runtime Version:2.0.50727.4952
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
@@ -13,6 +13,15 @@ namespace GMW.WebUserControls {
|
||||
|
||||
public partial class mod_viewRigheListaPrelievo {
|
||||
|
||||
/// <summary>
|
||||
/// btnRistampaOdette control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Button btnRistampaOdette;
|
||||
|
||||
/// <summary>
|
||||
/// grView control.
|
||||
/// </summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Generated
+92
-17
@@ -1,7 +1,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:2.0.50727.4927
|
||||
// Runtime Version:2.0.50727.4952
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
@@ -4381,6 +4381,8 @@ namespace GMW_data {
|
||||
|
||||
private global::System.Data.DataColumn columnRagSociale;
|
||||
|
||||
private global::System.Data.DataColumn columnLingua;
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public AnagClientiDataTable() {
|
||||
this.TableName = "AnagClienti";
|
||||
@@ -4425,6 +4427,13 @@ namespace GMW_data {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public global::System.Data.DataColumn LinguaColumn {
|
||||
get {
|
||||
return this.columnLingua;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
public int Count {
|
||||
@@ -4454,11 +4463,12 @@ namespace GMW_data {
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public AnagClientiRow AddAnagClientiRow(string CodCliente, string RagSociale) {
|
||||
public AnagClientiRow AddAnagClientiRow(string CodCliente, string RagSociale, string Lingua) {
|
||||
AnagClientiRow rowAnagClientiRow = ((AnagClientiRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
CodCliente,
|
||||
RagSociale};
|
||||
RagSociale,
|
||||
Lingua};
|
||||
rowAnagClientiRow.ItemArray = columnValuesArray;
|
||||
this.Rows.Add(rowAnagClientiRow);
|
||||
return rowAnagClientiRow;
|
||||
@@ -4486,6 +4496,7 @@ namespace GMW_data {
|
||||
internal void InitVars() {
|
||||
this.columnCodCliente = base.Columns["CodCliente"];
|
||||
this.columnRagSociale = base.Columns["RagSociale"];
|
||||
this.columnLingua = base.Columns["Lingua"];
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -4494,6 +4505,8 @@ namespace GMW_data {
|
||||
base.Columns.Add(this.columnCodCliente);
|
||||
this.columnRagSociale = new global::System.Data.DataColumn("RagSociale", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnRagSociale);
|
||||
this.columnLingua = new global::System.Data.DataColumn("Lingua", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnLingua);
|
||||
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
|
||||
this.columnCodCliente}, true));
|
||||
this.columnCodCliente.AllowDBNull = false;
|
||||
@@ -4501,6 +4514,7 @@ namespace GMW_data {
|
||||
this.columnCodCliente.MaxLength = 6;
|
||||
this.columnRagSociale.AllowDBNull = false;
|
||||
this.columnRagSociale.MaxLength = 35;
|
||||
this.columnLingua.MaxLength = 2;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -8816,6 +8830,31 @@ namespace GMW_data {
|
||||
this[this.tableAnagClienti.RagSocialeColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public string Lingua {
|
||||
get {
|
||||
try {
|
||||
return ((string)(this[this.tableAnagClienti.LinguaColumn]));
|
||||
}
|
||||
catch (global::System.InvalidCastException e) {
|
||||
throw new global::System.Data.StrongTypingException("The value for column \'Lingua\' in table \'AnagClienti\' is DBNull.", e);
|
||||
}
|
||||
}
|
||||
set {
|
||||
this[this.tableAnagClienti.LinguaColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public bool IsLinguaNull() {
|
||||
return this.IsNull(this.tableAnagClienti.LinguaColumn);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public void SetLinguaNull() {
|
||||
this[this.tableAnagClienti.LinguaColumn] = global::System.Convert.DBNull;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -16941,31 +16980,39 @@ SELECT CodSoggetto, CodCS, CodDipendente, CodAziendaOp, DescAziendaOp, CodFilial
|
||||
tableMapping.DataSetTable = "AnagClienti";
|
||||
tableMapping.ColumnMappings.Add("CodCliente", "CodCliente");
|
||||
tableMapping.ColumnMappings.Add("RagSociale", "RagSociale");
|
||||
tableMapping.ColumnMappings.Add("Lingua", "Lingua");
|
||||
this._adapter.TableMappings.Add(tableMapping);
|
||||
this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.DeleteCommand.Connection = this.Connection;
|
||||
this._adapter.DeleteCommand.CommandText = "DELETE FROM [RilPro].[AnagClienti] WHERE (([CodCliente] = @Original_CodCliente) A" +
|
||||
"ND ([RagSociale] = @Original_RagSociale))";
|
||||
"ND ([RagSociale] = @Original_RagSociale) AND ((@IsNull_Lingua = 1 AND [Lingua] I" +
|
||||
"S NULL) OR ([Lingua] = @Original_Lingua)))";
|
||||
this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodCliente", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodCliente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_RagSociale", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RagSociale", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Lingua", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Lingua", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Lingua", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Lingua", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.InsertCommand.Connection = this.Connection;
|
||||
this._adapter.InsertCommand.CommandText = "INSERT INTO [RilPro].[AnagClienti] ([CodCliente], [RagSociale]) VALUES (@CodClien" +
|
||||
"te, @RagSociale);\r\nSELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (" +
|
||||
"CodCliente = @CodCliente)";
|
||||
this._adapter.InsertCommand.CommandText = "INSERT INTO [RilPro].[AnagClienti] ([CodCliente], [RagSociale], [Lingua]) VALUES " +
|
||||
"(@CodCliente, @RagSociale, @Lingua);\r\nSELECT CodCliente, RagSociale, Lingua FROM" +
|
||||
" RilPro.AnagClienti WHERE (CodCliente = @CodCliente)";
|
||||
this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodCliente", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodCliente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RagSociale", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RagSociale", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Lingua", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Lingua", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.UpdateCommand.Connection = this.Connection;
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [RilPro].[AnagClienti] SET [CodCliente] = @CodCliente, [RagSociale] = @RagSociale WHERE (([CodCliente] = @Original_CodCliente) AND ([RagSociale] = @Original_RagSociale));
|
||||
SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCliente)";
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [RilPro].[AnagClienti] SET [CodCliente] = @CodCliente, [RagSociale] = @RagSociale, [Lingua] = @Lingua WHERE (([CodCliente] = @Original_CodCliente) AND ([RagSociale] = @Original_RagSociale) AND ((@IsNull_Lingua = 1 AND [Lingua] IS NULL) OR ([Lingua] = @Original_Lingua)));
|
||||
SELECT CodCliente, RagSociale, Lingua FROM RilPro.AnagClienti WHERE (CodCliente = @CodCliente)";
|
||||
this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodCliente", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodCliente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RagSociale", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RagSociale", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Lingua", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Lingua", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodCliente", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodCliente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_RagSociale", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RagSociale", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Lingua", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Lingua", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Lingua", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Lingua", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -16979,7 +17026,7 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[2];
|
||||
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[0].Connection = this.Connection;
|
||||
this._commandCollection[0].CommandText = "SELECT CodCliente, RagSociale FROM RilPro.AnagClienti";
|
||||
this._commandCollection[0].CommandText = "SELECT * FROM RilPro.AnagClienti";
|
||||
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[1].Connection = this.Connection;
|
||||
@@ -17055,7 +17102,7 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
|
||||
public virtual int Delete(string Original_CodCliente, string Original_RagSociale) {
|
||||
public virtual int Delete(string Original_CodCliente, string Original_RagSociale, string Original_Lingua) {
|
||||
if ((Original_CodCliente == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_CodCliente");
|
||||
}
|
||||
@@ -17068,6 +17115,14 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[1].Value = ((string)(Original_RagSociale));
|
||||
}
|
||||
if ((Original_Lingua == null)) {
|
||||
this.Adapter.DeleteCommand.Parameters[2].Value = ((object)(1));
|
||||
this.Adapter.DeleteCommand.Parameters[3].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[2].Value = ((object)(0));
|
||||
this.Adapter.DeleteCommand.Parameters[3].Value = ((string)(Original_Lingua));
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
|
||||
if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
@@ -17087,7 +17142,7 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
|
||||
public virtual int Insert(string CodCliente, string RagSociale) {
|
||||
public virtual int Insert(string CodCliente, string RagSociale, string Lingua) {
|
||||
if ((CodCliente == null)) {
|
||||
throw new global::System.ArgumentNullException("CodCliente");
|
||||
}
|
||||
@@ -17100,6 +17155,12 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[1].Value = ((string)(RagSociale));
|
||||
}
|
||||
if ((Lingua == null)) {
|
||||
this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[2].Value = ((string)(Lingua));
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
|
||||
if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
@@ -17119,7 +17180,7 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
|
||||
public virtual int Update(string CodCliente, string RagSociale, string Original_CodCliente, string Original_RagSociale) {
|
||||
public virtual int Update(string CodCliente, string RagSociale, string Lingua, string Original_CodCliente, string Original_RagSociale, string Original_Lingua) {
|
||||
if ((CodCliente == null)) {
|
||||
throw new global::System.ArgumentNullException("CodCliente");
|
||||
}
|
||||
@@ -17132,17 +17193,31 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(RagSociale));
|
||||
}
|
||||
if ((Lingua == null)) {
|
||||
this.Adapter.UpdateCommand.Parameters[2].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(Lingua));
|
||||
}
|
||||
if ((Original_CodCliente == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_CodCliente");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(Original_CodCliente));
|
||||
this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(Original_CodCliente));
|
||||
}
|
||||
if ((Original_RagSociale == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_RagSociale");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(Original_RagSociale));
|
||||
this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Original_RagSociale));
|
||||
}
|
||||
if ((Original_Lingua == null)) {
|
||||
this.Adapter.UpdateCommand.Parameters[5].Value = ((object)(1));
|
||||
this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[5].Value = ((object)(0));
|
||||
this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(Original_Lingua));
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
|
||||
if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
@@ -17163,8 +17238,8 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
|
||||
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
|
||||
public virtual int Update(string RagSociale, string Original_CodCliente, string Original_RagSociale) {
|
||||
return this.Update(Original_CodCliente, RagSociale, Original_CodCliente, Original_RagSociale);
|
||||
public virtual int Update(string RagSociale, string Lingua, string Original_CodCliente, string Original_RagSociale, string Original_Lingua) {
|
||||
return this.Update(Original_CodCliente, RagSociale, Lingua, Original_CodCliente, Original_RagSociale, Original_Lingua);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+156
-142
@@ -1076,41 +1076,47 @@ SELECT CodSoggetto, CodCS, CodDipendente, CodAziendaOp, DescAziendaOp, CodFilial
|
||||
</TableAdapter>
|
||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="AnagClientiTableAdapter" GeneratorDataComponentClassName="AnagClientiTableAdapter" Name="AnagClienti" UserDataComponentName="AnagClientiTableAdapter">
|
||||
<MainSource>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.RilPro.AnagClienti" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="SP_GMW.RilPro.AnagClienti" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||
<DeleteCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>DELETE FROM [RilPro].[AnagClienti] WHERE (([CodCliente] = @Original_CodCliente) AND ([RagSociale] = @Original_RagSociale))</CommandText>
|
||||
<CommandText>DELETE FROM [RilPro].[AnagClienti] WHERE (([CodCliente] = @Original_CodCliente) AND ([RagSociale] = @Original_RagSociale) AND ((@IsNull_Lingua = 1 AND [Lingua] IS NULL) OR ([Lingua] = @Original_Lingua)))</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodCliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodCliente" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_RagSociale" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="RagSociale" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Lingua" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="StringFixedLength" Direction="Input" ParameterName="@Original_Lingua" Precision="0" ProviderType="NChar" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</DeleteCommand>
|
||||
<InsertCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>INSERT INTO [RilPro].[AnagClienti] ([CodCliente], [RagSociale]) VALUES (@CodCliente, @RagSociale);
|
||||
SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCliente)</CommandText>
|
||||
<CommandText>INSERT INTO [RilPro].[AnagClienti] ([CodCliente], [RagSociale], [Lingua]) VALUES (@CodCliente, @RagSociale, @Lingua);
|
||||
SELECT CodCliente, RagSociale, Lingua FROM RilPro.AnagClienti WHERE (CodCliente = @CodCliente)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodCliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodCliente" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@RagSociale" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="RagSociale" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="StringFixedLength" Direction="Input" ParameterName="@Lingua" Precision="0" ProviderType="NChar" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</InsertCommand>
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>SELECT CodCliente, RagSociale FROM RilPro.AnagClienti</CommandText>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>SELECT * FROM RilPro.AnagClienti</CommandText>
|
||||
<Parameters />
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
<UpdateCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>UPDATE [RilPro].[AnagClienti] SET [CodCliente] = @CodCliente, [RagSociale] = @RagSociale WHERE (([CodCliente] = @Original_CodCliente) AND ([RagSociale] = @Original_RagSociale));
|
||||
SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCliente)</CommandText>
|
||||
<CommandText>UPDATE [RilPro].[AnagClienti] SET [CodCliente] = @CodCliente, [RagSociale] = @RagSociale, [Lingua] = @Lingua WHERE (([CodCliente] = @Original_CodCliente) AND ([RagSociale] = @Original_RagSociale) AND ((@IsNull_Lingua = 1 AND [Lingua] IS NULL) OR ([Lingua] = @Original_Lingua)));
|
||||
SELECT CodCliente, RagSociale, Lingua FROM RilPro.AnagClienti WHERE (CodCliente = @CodCliente)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodCliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodCliente" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@RagSociale" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="RagSociale" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="StringFixedLength" Direction="Input" ParameterName="@Lingua" Precision="0" ProviderType="NChar" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodCliente" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodCliente" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_RagSociale" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="RagSociale" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Lingua" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="StringFixedLength" Direction="Input" ParameterName="@Original_Lingua" Precision="0" ProviderType="NChar" Scale="0" Size="0" SourceColumn="Lingua" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</UpdateCommand>
|
||||
@@ -1119,6 +1125,7 @@ SELECT CodCliente, RagSociale FROM RilPro.AnagClienti WHERE (CodCliente = @CodCl
|
||||
<Mappings>
|
||||
<Mapping SourceColumn="CodCliente" DataSetColumn="CodCliente" />
|
||||
<Mapping SourceColumn="RagSociale" DataSetColumn="RagSociale" />
|
||||
<Mapping SourceColumn="Lingua" DataSetColumn="Lingua" />
|
||||
</Mappings>
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="GMWConnectionString (Settings)" DbObjectName="GMW.dbo.stp_getRagioneSocialeByCodCliente" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getRagioneSocialeByCodCliente" GetMethodModifier="Public" GetMethodName="getRagioneSocialeByCodCliente" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getRagioneSocialeByCodCliente" UserSourceName="getRagioneSocialeByCodCliente">
|
||||
@@ -1501,8 +1508,8 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="AnagStati" msprop:Generator_UserTableName="AnagStati" msprop:Generator_RowDeletedName="AnagStatiRowDeleted" msprop:Generator_RowChangedName="AnagStatiRowChanged" msprop:Generator_RowClassName="AnagStatiRow" msprop:Generator_RowChangingName="AnagStatiRowChanging" msprop:Generator_RowEvArgName="AnagStatiRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagStatiRowChangeEventHandler" msprop:Generator_TableClassName="AnagStatiDataTable" msprop:Generator_TableVarName="tableAnagStati" msprop:Generator_RowDeletingName="AnagStatiRowDeleting" msprop:Generator_TablePropName="AnagStati">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxStato" msprop:Generator_UserColumnName="IdxStato" msprop:Generator_ColumnVarNameInTable="columnIdxStato" msprop:Generator_ColumnPropNameInRow="IdxStato" msprop:Generator_ColumnPropNameInTable="IdxStatoColumn" type="xs:int" />
|
||||
<xs:element name="DescrStato" msprop:Generator_UserColumnName="DescrStato" msprop:Generator_ColumnVarNameInTable="columnDescrStato" msprop:Generator_ColumnPropNameInRow="DescrStato" msprop:Generator_ColumnPropNameInTable="DescrStatoColumn" minOccurs="0">
|
||||
<xs:element name="IdxStato" msprop:Generator_UserColumnName="IdxStato" msprop:Generator_ColumnPropNameInRow="IdxStato" msprop:Generator_ColumnVarNameInTable="columnIdxStato" msprop:Generator_ColumnPropNameInTable="IdxStatoColumn" type="xs:int" />
|
||||
<xs:element name="DescrStato" msprop:Generator_UserColumnName="DescrStato" msprop:Generator_ColumnPropNameInRow="DescrStato" msprop:Generator_ColumnVarNameInTable="columnDescrStato" msprop:Generator_ColumnPropNameInTable="DescrStatoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
@@ -1515,14 +1522,14 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="AnagTipoDichiaraz" msprop:Generator_UserTableName="AnagTipoDichiaraz" msprop:Generator_RowDeletedName="AnagTipoDichiarazRowDeleted" msprop:Generator_RowChangedName="AnagTipoDichiarazRowChanged" msprop:Generator_RowClassName="AnagTipoDichiarazRow" msprop:Generator_RowChangingName="AnagTipoDichiarazRowChanging" msprop:Generator_RowEvArgName="AnagTipoDichiarazRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagTipoDichiarazRowChangeEventHandler" msprop:Generator_TableClassName="AnagTipoDichiarazDataTable" msprop:Generator_TableVarName="tableAnagTipoDichiaraz" msprop:Generator_RowDeletingName="AnagTipoDichiarazRowDeleting" msprop:Generator_TablePropName="AnagTipoDichiaraz">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodTipoDichiaraz" msprop:Generator_UserColumnName="CodTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnCodTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="CodTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="CodTipoDichiarazColumn">
|
||||
<xs:element name="CodTipoDichiaraz" msprop:Generator_UserColumnName="CodTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="CodTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnCodTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="CodTipoDichiarazColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="1" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescrTipoDichiaraz" msprop:Generator_UserColumnName="DescrTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnDescrTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="DescrTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="DescrTipoDichiarazColumn" minOccurs="0">
|
||||
<xs:element name="DescrTipoDichiaraz" msprop:Generator_UserColumnName="DescrTipoDichiaraz" msprop:Generator_ColumnPropNameInRow="DescrTipoDichiaraz" msprop:Generator_ColumnVarNameInTable="columnDescrTipoDichiaraz" msprop:Generator_ColumnPropNameInTable="DescrTipoDichiarazColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
@@ -1535,14 +1542,14 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="AnagStatiProdotto" msprop:Generator_UserTableName="AnagStatiProdotto" msprop:Generator_RowDeletedName="AnagStatiProdottoRowDeleted" msprop:Generator_RowChangedName="AnagStatiProdottoRowChanged" msprop:Generator_RowClassName="AnagStatiProdottoRow" msprop:Generator_RowChangingName="AnagStatiProdottoRowChanging" msprop:Generator_RowEvArgName="AnagStatiProdottoRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagStatiProdottoRowChangeEventHandler" msprop:Generator_TableClassName="AnagStatiProdottoDataTable" msprop:Generator_TableVarName="tableAnagStatiProdotto" msprop:Generator_RowDeletingName="AnagStatiProdottoRowDeleting" msprop:Generator_TablePropName="AnagStatiProdotto">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn">
|
||||
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescStato" msprop:Generator_UserColumnName="DescStato" msprop:Generator_ColumnVarNameInTable="columnDescStato" msprop:Generator_ColumnPropNameInRow="DescStato" msprop:Generator_ColumnPropNameInTable="DescStatoColumn" minOccurs="0">
|
||||
<xs:element name="DescStato" msprop:Generator_UserColumnName="DescStato" msprop:Generator_ColumnPropNameInRow="DescStato" msprop:Generator_ColumnVarNameInTable="columnDescStato" msprop:Generator_ColumnPropNameInTable="DescStatoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
@@ -1555,14 +1562,14 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="RelazUDC" msprop:Generator_UserTableName="RelazUDC" msprop:Generator_RowDeletedName="RelazUDCRowDeleted" msprop:Generator_RowChangedName="RelazUDCRowChanged" msprop:Generator_RowClassName="RelazUDCRow" msprop:Generator_RowChangingName="RelazUDCRowChanging" msprop:Generator_RowEvArgName="RelazUDCRowChangeEvent" msprop:Generator_RowEvHandlerName="RelazUDCRowChangeEventHandler" msprop:Generator_TableClassName="RelazUDCDataTable" msprop:Generator_TableVarName="tableRelazUDC" msprop:Generator_RowDeletingName="RelazUDCRowDeleting" msprop:Generator_TablePropName="RelazUDC">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC_parent" msprop:Generator_UserColumnName="UDC_parent" msprop:Generator_ColumnPropNameInRow="UDC_parent" msprop:Generator_ColumnVarNameInTable="columnUDC_parent" msprop:Generator_ColumnPropNameInTable="UDC_parentColumn">
|
||||
<xs:element name="UDC_parent" msprop:Generator_UserColumnName="UDC_parent" msprop:Generator_ColumnVarNameInTable="columnUDC_parent" msprop:Generator_ColumnPropNameInRow="UDC_parent" msprop:Generator_ColumnPropNameInTable="UDC_parentColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="UDC_child" msprop:Generator_UserColumnName="UDC_child" msprop:Generator_ColumnPropNameInRow="UDC_child" msprop:Generator_ColumnVarNameInTable="columnUDC_child" msprop:Generator_ColumnPropNameInTable="UDC_childColumn">
|
||||
<xs:element name="UDC_child" msprop:Generator_UserColumnName="UDC_child" msprop:Generator_ColumnVarNameInTable="columnUDC_child" msprop:Generator_ColumnPropNameInRow="UDC_child" msprop:Generator_ColumnPropNameInTable="UDC_childColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
@@ -1575,35 +1582,35 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="AnagImpianti" msprop:Generator_UserTableName="AnagImpianti" msprop:Generator_RowDeletedName="AnagImpiantiRowDeleted" msprop:Generator_RowChangedName="AnagImpiantiRowChanged" msprop:Generator_RowClassName="AnagImpiantiRow" msprop:Generator_RowChangingName="AnagImpiantiRowChanging" msprop:Generator_RowEvArgName="AnagImpiantiRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagImpiantiRowChangeEventHandler" msprop:Generator_TableClassName="AnagImpiantiDataTable" msprop:Generator_TableVarName="tableAnagImpianti" msprop:Generator_RowDeletingName="AnagImpiantiRowDeleting" msprop:Generator_TablePropName="AnagImpianti">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
|
||||
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescImpianto" msprop:Generator_UserColumnName="DescImpianto" msprop:Generator_ColumnPropNameInRow="DescImpianto" msprop:Generator_ColumnVarNameInTable="columnDescImpianto" msprop:Generator_ColumnPropNameInTable="DescImpiantoColumn" minOccurs="0">
|
||||
<xs:element name="DescImpianto" msprop:Generator_UserColumnName="DescImpianto" msprop:Generator_ColumnVarNameInTable="columnDescImpianto" msprop:Generator_ColumnPropNameInRow="DescImpianto" msprop:Generator_ColumnPropNameInTable="DescImpiantoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Campionatura" msprop:Generator_UserColumnName="Campionatura" msprop:Generator_ColumnPropNameInRow="Campionatura" msprop:Generator_ColumnVarNameInTable="columnCampionatura" msprop:Generator_ColumnPropNameInTable="CampionaturaColumn" minOccurs="0">
|
||||
<xs:element name="Campionatura" msprop:Generator_UserColumnName="Campionatura" msprop:Generator_ColumnVarNameInTable="columnCampionatura" msprop:Generator_ColumnPropNameInRow="Campionatura" msprop:Generator_ColumnPropNameInTable="CampionaturaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="1" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="TipoLinea" msprop:Generator_UserColumnName="TipoLinea" msprop:Generator_ColumnPropNameInRow="TipoLinea" msprop:Generator_ColumnVarNameInTable="columnTipoLinea" msprop:Generator_ColumnPropNameInTable="TipoLineaColumn" minOccurs="0">
|
||||
<xs:element name="TipoLinea" msprop:Generator_UserColumnName="TipoLinea" msprop:Generator_ColumnVarNameInTable="columnTipoLinea" msprop:Generator_ColumnPropNameInRow="TipoLinea" msprop:Generator_ColumnPropNameInTable="TipoLineaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
@@ -1616,35 +1623,35 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="AnagCompanySito" msprop:Generator_UserTableName="AnagCompanySito" msprop:Generator_RowDeletedName="AnagCompanySitoRowDeleted" msprop:Generator_RowChangedName="AnagCompanySitoRowChanged" msprop:Generator_RowClassName="AnagCompanySitoRow" msprop:Generator_RowChangingName="AnagCompanySitoRowChanging" msprop:Generator_RowEvArgName="AnagCompanySitoRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagCompanySitoRowChangeEventHandler" msprop:Generator_TableClassName="AnagCompanySitoDataTable" msprop:Generator_TableVarName="tableAnagCompanySito" msprop:Generator_RowDeletingName="AnagCompanySitoRowDeleting" msprop:Generator_TablePropName="AnagCompanySito">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCompany" msprop:Generator_UserColumnName="CodCompany" msprop:Generator_ColumnPropNameInRow="CodCompany" msprop:Generator_ColumnVarNameInTable="columnCodCompany" msprop:Generator_ColumnPropNameInTable="CodCompanyColumn" minOccurs="0">
|
||||
<xs:element name="CodCompany" msprop:Generator_UserColumnName="CodCompany" msprop:Generator_ColumnVarNameInTable="columnCodCompany" msprop:Generator_ColumnPropNameInRow="CodCompany" msprop:Generator_ColumnPropNameInTable="CodCompanyColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescCompany" msprop:Generator_UserColumnName="DescCompany" msprop:Generator_ColumnPropNameInRow="DescCompany" msprop:Generator_ColumnVarNameInTable="columnDescCompany" msprop:Generator_ColumnPropNameInTable="DescCompanyColumn" minOccurs="0">
|
||||
<xs:element name="DescCompany" msprop:Generator_UserColumnName="DescCompany" msprop:Generator_ColumnVarNameInTable="columnDescCompany" msprop:Generator_ColumnPropNameInRow="DescCompany" msprop:Generator_ColumnPropNameInTable="DescCompanyColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodSito" msprop:Generator_UserColumnName="CodSito" msprop:Generator_ColumnPropNameInRow="CodSito" msprop:Generator_ColumnVarNameInTable="columnCodSito" msprop:Generator_ColumnPropNameInTable="CodSitoColumn" minOccurs="0">
|
||||
<xs:element name="CodSito" msprop:Generator_UserColumnName="CodSito" msprop:Generator_ColumnVarNameInTable="columnCodSito" msprop:Generator_ColumnPropNameInRow="CodSito" msprop:Generator_ColumnPropNameInTable="CodSitoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescSito" msprop:Generator_UserColumnName="DescSito" msprop:Generator_ColumnPropNameInRow="DescSito" msprop:Generator_ColumnVarNameInTable="columnDescSito" msprop:Generator_ColumnPropNameInTable="DescSitoColumn" minOccurs="0">
|
||||
<xs:element name="DescSito" msprop:Generator_UserColumnName="DescSito" msprop:Generator_ColumnVarNameInTable="columnDescSito" msprop:Generator_ColumnPropNameInRow="DescSito" msprop:Generator_ColumnPropNameInTable="DescSitoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
@@ -1657,21 +1664,21 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="AnagBilance" msprop:Generator_UserTableName="AnagBilance" msprop:Generator_RowDeletedName="AnagBilanceRowDeleted" msprop:Generator_RowChangedName="AnagBilanceRowChanged" msprop:Generator_RowClassName="AnagBilanceRow" msprop:Generator_RowChangingName="AnagBilanceRowChanging" msprop:Generator_RowEvArgName="AnagBilanceRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagBilanceRowChangeEventHandler" msprop:Generator_TableClassName="AnagBilanceDataTable" msprop:Generator_TableVarName="tableAnagBilance" msprop:Generator_RowDeletingName="AnagBilanceRowDeleting" msprop:Generator_TablePropName="AnagBilance">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodBilancia" msprop:Generator_UserColumnName="CodBilancia" msprop:Generator_ColumnVarNameInTable="columnCodBilancia" msprop:Generator_ColumnPropNameInRow="CodBilancia" msprop:Generator_ColumnPropNameInTable="CodBilanciaColumn">
|
||||
<xs:element name="CodBilancia" msprop:Generator_UserColumnName="CodBilancia" msprop:Generator_ColumnPropNameInRow="CodBilancia" msprop:Generator_ColumnVarNameInTable="columnCodBilancia" msprop:Generator_ColumnPropNameInTable="CodBilanciaColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescrImpianto" msprop:Generator_UserColumnName="DescrImpianto" msprop:Generator_ColumnVarNameInTable="columnDescrImpianto" msprop:Generator_ColumnPropNameInRow="DescrImpianto" msprop:Generator_ColumnPropNameInTable="DescrImpiantoColumn" minOccurs="0">
|
||||
<xs:element name="DescrImpianto" msprop:Generator_UserColumnName="DescrImpianto" msprop:Generator_ColumnPropNameInRow="DescrImpianto" msprop:Generator_ColumnVarNameInTable="columnDescrImpianto" msprop:Generator_ColumnPropNameInTable="DescrImpiantoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
@@ -1684,93 +1691,93 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="ElencoCartellini" msprop:Generator_UserTableName="ElencoCartellini" msprop:Generator_RowDeletedName="ElencoCartelliniRowDeleted" msprop:Generator_RowChangedName="ElencoCartelliniRowChanged" msprop:Generator_RowClassName="ElencoCartelliniRow" msprop:Generator_RowChangingName="ElencoCartelliniRowChanging" msprop:Generator_RowEvArgName="ElencoCartelliniRowChangeEvent" msprop:Generator_RowEvHandlerName="ElencoCartelliniRowChangeEventHandler" msprop:Generator_TableClassName="ElencoCartelliniDataTable" msprop:Generator_TableVarName="tableElencoCartellini" msprop:Generator_RowDeletingName="ElencoCartelliniRowDeleting" msprop:Generator_TablePropName="ElencoCartellini">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" minOccurs="0">
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" minOccurs="0">
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="35" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" minOccurs="0">
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn" minOccurs="0">
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Esponente" msprop:Generator_UserColumnName="Esponente" msprop:Generator_ColumnVarNameInTable="columnEsponente" msprop:Generator_ColumnPropNameInRow="Esponente" msprop:Generator_ColumnPropNameInTable="EsponenteColumn" minOccurs="0">
|
||||
<xs:element name="Esponente" msprop:Generator_UserColumnName="Esponente" msprop:Generator_ColumnPropNameInRow="Esponente" msprop:Generator_ColumnVarNameInTable="columnEsponente" msprop:Generator_ColumnPropNameInTable="EsponenteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn" minOccurs="0">
|
||||
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescImpianto" msprop:Generator_UserColumnName="DescImpianto" msprop:Generator_ColumnVarNameInTable="columnDescImpianto" msprop:Generator_ColumnPropNameInRow="DescImpianto" msprop:Generator_ColumnPropNameInTable="DescImpiantoColumn" minOccurs="0">
|
||||
<xs:element name="DescImpianto" msprop:Generator_UserColumnName="DescImpianto" msprop:Generator_ColumnPropNameInRow="DescImpianto" msprop:Generator_ColumnVarNameInTable="columnDescImpianto" msprop:Generator_ColumnPropNameInTable="DescImpiantoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn" minOccurs="0">
|
||||
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="8" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
|
||||
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DataFus" msprop:Generator_UserColumnName="DataFus" msprop:Generator_ColumnVarNameInTable="columnDataFus" msprop:Generator_ColumnPropNameInRow="DataFus" msprop:Generator_ColumnPropNameInTable="DataFusColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="TurnoFus" msprop:Generator_UserColumnName="TurnoFus" msprop:Generator_ColumnVarNameInTable="columnTurnoFus" msprop:Generator_ColumnPropNameInRow="TurnoFus" msprop:Generator_ColumnPropNameInTable="TurnoFusColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn" minOccurs="0">
|
||||
<xs:element name="DataFus" msprop:Generator_UserColumnName="DataFus" msprop:Generator_ColumnPropNameInRow="DataFus" msprop:Generator_ColumnVarNameInTable="columnDataFus" msprop:Generator_ColumnPropNameInTable="DataFusColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="TurnoFus" msprop:Generator_UserColumnName="TurnoFus" msprop:Generator_ColumnPropNameInRow="TurnoFus" msprop:Generator_ColumnVarNameInTable="columnTurnoFus" msprop:Generator_ColumnPropNameInTable="TurnoFusColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
@@ -1784,28 +1791,28 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="NumCont" msprop:Generator_UserColumnName="NumCont" msprop:Generator_ColumnVarNameInTable="columnNumCont" msprop:Generator_ColumnPropNameInRow="NumCont" msprop:Generator_ColumnPropNameInTable="NumContColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Tara" msprop:Generator_UserColumnName="Tara" msprop:Generator_ColumnVarNameInTable="columnTara" msprop:Generator_ColumnPropNameInRow="Tara" msprop:Generator_ColumnPropNameInTable="TaraColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Qta" msprop:Generator_UserColumnName="Qta" msprop:Generator_ColumnVarNameInTable="columnQta" msprop:Generator_ColumnPropNameInRow="Qta" msprop:Generator_ColumnPropNameInTable="QtaColumn" type="xs:decimal" minOccurs="0" />
|
||||
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" minOccurs="0">
|
||||
<xs:element name="NumCont" msprop:Generator_UserColumnName="NumCont" msprop:Generator_ColumnPropNameInRow="NumCont" msprop:Generator_ColumnVarNameInTable="columnNumCont" msprop:Generator_ColumnPropNameInTable="NumContColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="Tara" msprop:Generator_UserColumnName="Tara" msprop:Generator_ColumnPropNameInRow="Tara" msprop:Generator_ColumnVarNameInTable="columnTara" msprop:Generator_ColumnPropNameInTable="TaraColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="Qta" msprop:Generator_UserColumnName="Qta" msprop:Generator_ColumnPropNameInRow="Qta" msprop:Generator_ColumnVarNameInTable="columnQta" msprop:Generator_ColumnPropNameInTable="QtaColumn" type="xs:decimal" minOccurs="0" />
|
||||
<xs:element name="CodStato" msprop:Generator_UserColumnName="CodStato" msprop:Generator_ColumnPropNameInRow="CodStato" msprop:Generator_ColumnVarNameInTable="columnCodStato" msprop:Generator_ColumnPropNameInTable="CodStatoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="IdxPosizione" msprop:Generator_UserColumnName="IdxPosizione" msprop:Generator_ColumnVarNameInTable="columnIdxPosizione" msprop:Generator_ColumnPropNameInRow="IdxPosizione" msprop:Generator_ColumnPropNameInTable="IdxPosizioneColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="PesoTot" msprop:Generator_UserColumnName="PesoTot" msprop:Generator_ColumnVarNameInTable="columnPesoTot" msprop:Generator_ColumnPropNameInRow="PesoTot" msprop:Generator_ColumnPropNameInTable="PesoTotColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="PesoCad" msprop:Generator_UserColumnName="PesoCad" msprop:Generator_ColumnVarNameInTable="columnPesoCad" msprop:Generator_ColumnPropNameInRow="PesoCad" msprop:Generator_ColumnPropNameInTable="PesoCadColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="CreateDate" msprop:Generator_UserColumnName="CreateDate" msprop:Generator_ColumnVarNameInTable="columnCreateDate" msprop:Generator_ColumnPropNameInRow="CreateDate" msprop:Generator_ColumnPropNameInTable="CreateDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="ModDate" msprop:Generator_UserColumnName="ModDate" msprop:Generator_ColumnVarNameInTable="columnModDate" msprop:Generator_ColumnPropNameInRow="ModDate" msprop:Generator_ColumnPropNameInTable="ModDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="IdxPosizione" msprop:Generator_UserColumnName="IdxPosizione" msprop:Generator_ColumnPropNameInRow="IdxPosizione" msprop:Generator_ColumnVarNameInTable="columnIdxPosizione" msprop:Generator_ColumnPropNameInTable="IdxPosizioneColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="PesoTot" msprop:Generator_UserColumnName="PesoTot" msprop:Generator_ColumnPropNameInRow="PesoTot" msprop:Generator_ColumnVarNameInTable="columnPesoTot" msprop:Generator_ColumnPropNameInTable="PesoTotColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="PesoCad" msprop:Generator_UserColumnName="PesoCad" msprop:Generator_ColumnPropNameInRow="PesoCad" msprop:Generator_ColumnVarNameInTable="columnPesoCad" msprop:Generator_ColumnPropNameInTable="PesoCadColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="CreateDate" msprop:Generator_UserColumnName="CreateDate" msprop:Generator_ColumnPropNameInRow="CreateDate" msprop:Generator_ColumnVarNameInTable="columnCreateDate" msprop:Generator_ColumnPropNameInTable="CreateDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="ModDate" msprop:Generator_UserColumnName="ModDate" msprop:Generator_ColumnPropNameInRow="ModDate" msprop:Generator_ColumnVarNameInTable="columnModDate" msprop:Generator_ColumnPropNameInTable="ModDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="AnagImballi" msprop:Generator_UserTableName="AnagImballi" msprop:Generator_RowDeletedName="AnagImballiRowDeleted" msprop:Generator_RowChangedName="AnagImballiRowChanged" msprop:Generator_RowClassName="AnagImballiRow" msprop:Generator_RowChangingName="AnagImballiRowChanging" msprop:Generator_RowEvArgName="AnagImballiRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagImballiRowChangeEventHandler" msprop:Generator_TableClassName="AnagImballiDataTable" msprop:Generator_TableVarName="tableAnagImballi" msprop:Generator_RowDeletingName="AnagImballiRowDeleting" msprop:Generator_TablePropName="AnagImballi">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn">
|
||||
<xs:element name="CodImballo" msprop:Generator_UserColumnName="CodImballo" msprop:Generator_ColumnPropNameInRow="CodImballo" msprop:Generator_ColumnVarNameInTable="columnCodImballo" msprop:Generator_ColumnPropNameInTable="CodImballoColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
@@ -1832,96 +1839,96 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="v_ArtInProd" msprop:Generator_UserTableName="v_ArtInProd" msprop:Generator_RowDeletedName="v_ArtInProdRowDeleted" msprop:Generator_RowChangedName="v_ArtInProdRowChanged" msprop:Generator_RowClassName="v_ArtInProdRow" msprop:Generator_RowChangingName="v_ArtInProdRowChanging" msprop:Generator_RowEvArgName="v_ArtInProdRowChangeEvent" msprop:Generator_RowEvHandlerName="v_ArtInProdRowChangeEventHandler" msprop:Generator_TableClassName="v_ArtInProdDataTable" msprop:Generator_TableVarName="tablev_ArtInProd" msprop:Generator_RowDeletingName="v_ArtInProdRowDeleting" msprop:Generator_TablePropName="v_ArtInProd">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
|
||||
<xs:element name="CodImpianto" msprop:Generator_UserColumnName="CodImpianto" msprop:Generator_ColumnPropNameInRow="CodImpianto" msprop:Generator_ColumnVarNameInTable="columnCodImpianto" msprop:Generator_ColumnPropNameInTable="CodImpiantoColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn">
|
||||
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="8" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="NumStampate" msprop:Generator_UserColumnName="NumStampate" msprop:Generator_ColumnVarNameInTable="columnNumStampate" msprop:Generator_ColumnPropNameInRow="NumStampate" msprop:Generator_ColumnPropNameInTable="NumStampateColumn" type="xs:decimal" />
|
||||
<xs:element name="DataInizio" msprop:Generator_UserColumnName="DataInizio" msprop:Generator_ColumnVarNameInTable="columnDataInizio" msprop:Generator_ColumnPropNameInRow="DataInizio" msprop:Generator_ColumnPropNameInTable="DataInizioColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="TurnoInizio" msprop:Generator_UserColumnName="TurnoInizio" msprop:Generator_ColumnVarNameInTable="columnTurnoInizio" msprop:Generator_ColumnPropNameInRow="TurnoInizio" msprop:Generator_ColumnPropNameInTable="TurnoInizioColumn">
|
||||
<xs:element name="NumStampate" msprop:Generator_UserColumnName="NumStampate" msprop:Generator_ColumnPropNameInRow="NumStampate" msprop:Generator_ColumnVarNameInTable="columnNumStampate" msprop:Generator_ColumnPropNameInTable="NumStampateColumn" type="xs:decimal" />
|
||||
<xs:element name="DataInizio" msprop:Generator_UserColumnName="DataInizio" msprop:Generator_ColumnPropNameInRow="DataInizio" msprop:Generator_ColumnVarNameInTable="columnDataInizio" msprop:Generator_ColumnPropNameInTable="DataInizioColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="TurnoInizio" msprop:Generator_UserColumnName="TurnoInizio" msprop:Generator_ColumnPropNameInRow="TurnoInizio" msprop:Generator_ColumnVarNameInTable="columnTurnoInizio" msprop:Generator_ColumnPropNameInTable="TurnoInizioColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="InizioValidita" msprop:Generator_UserColumnName="InizioValidita" msprop:Generator_ColumnVarNameInTable="columnInizioValidita" msprop:Generator_ColumnPropNameInRow="InizioValidita" msprop:Generator_ColumnPropNameInTable="InizioValiditaColumn" type="xs:dateTime" />
|
||||
<xs:element name="FineValidita" msprop:Generator_UserColumnName="FineValidita" msprop:Generator_ColumnVarNameInTable="columnFineValidita" msprop:Generator_ColumnPropNameInRow="FineValidita" msprop:Generator_ColumnPropNameInTable="FineValiditaColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="NumFigure" msprop:Generator_UserColumnName="NumFigure" msprop:Generator_ColumnVarNameInTable="columnNumFigure" msprop:Generator_ColumnPropNameInRow="NumFigure" msprop:Generator_ColumnPropNameInTable="NumFigureColumn" type="xs:decimal" minOccurs="0" />
|
||||
<xs:element name="CodCliente" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" minOccurs="0">
|
||||
<xs:element name="InizioValidita" msprop:Generator_UserColumnName="InizioValidita" msprop:Generator_ColumnPropNameInRow="InizioValidita" msprop:Generator_ColumnVarNameInTable="columnInizioValidita" msprop:Generator_ColumnPropNameInTable="InizioValiditaColumn" type="xs:dateTime" />
|
||||
<xs:element name="FineValidita" msprop:Generator_UserColumnName="FineValidita" msprop:Generator_ColumnPropNameInRow="FineValidita" msprop:Generator_ColumnVarNameInTable="columnFineValidita" msprop:Generator_ColumnPropNameInTable="FineValiditaColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="NumFigure" msprop:Generator_UserColumnName="NumFigure" msprop:Generator_ColumnPropNameInRow="NumFigure" msprop:Generator_ColumnVarNameInTable="columnNumFigure" msprop:Generator_ColumnPropNameInTable="NumFigureColumn" type="xs:decimal" minOccurs="0" />
|
||||
<xs:element name="CodCliente" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" minOccurs="0">
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="35" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodArticolo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodArticolo" msprop:Generator_ColumnVarNameInTable="columnCodArticolo" msprop:Generator_ColumnPropNameInRow="CodArticolo" msprop:Generator_ColumnPropNameInTable="CodArticoloColumn" minOccurs="0">
|
||||
<xs:element name="CodArticolo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="CodArticolo" msprop:Generator_ColumnPropNameInRow="CodArticolo" msprop:Generator_ColumnVarNameInTable="columnCodArticolo" msprop:Generator_ColumnPropNameInTable="CodArticoloColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn">
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn" minOccurs="0">
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn" minOccurs="0">
|
||||
<xs:element name="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescFamiglia" msprop:Generator_UserColumnName="DescFamiglia" msprop:Generator_ColumnVarNameInTable="columnDescFamiglia" msprop:Generator_ColumnPropNameInRow="DescFamiglia" msprop:Generator_ColumnPropNameInTable="DescFamigliaColumn" minOccurs="0">
|
||||
<xs:element name="DescFamiglia" msprop:Generator_UserColumnName="DescFamiglia" msprop:Generator_ColumnPropNameInRow="DescFamiglia" msprop:Generator_ColumnVarNameInTable="columnDescFamiglia" msprop:Generator_ColumnPropNameInTable="DescFamigliaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="100" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
|
||||
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Esponente" msprop:Generator_UserColumnName="Esponente" msprop:Generator_ColumnVarNameInTable="columnEsponente" msprop:Generator_ColumnPropNameInRow="Esponente" msprop:Generator_ColumnPropNameInTable="EsponenteColumn" minOccurs="0">
|
||||
<xs:element name="Esponente" msprop:Generator_UserColumnName="Esponente" msprop:Generator_ColumnPropNameInRow="Esponente" msprop:Generator_ColumnVarNameInTable="columnEsponente" msprop:Generator_ColumnPropNameInTable="EsponenteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
@@ -2003,177 +2010,184 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="AnagClienti" msprop:Generator_UserTableName="AnagClienti" msprop:Generator_RowDeletedName="AnagClientiRowDeleted" msprop:Generator_RowChangedName="AnagClientiRowChanged" msprop:Generator_RowClassName="AnagClientiRow" msprop:Generator_RowChangingName="AnagClientiRowChanging" msprop:Generator_RowEvArgName="AnagClientiRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagClientiRowChangeEventHandler" msprop:Generator_TableClassName="AnagClientiDataTable" msprop:Generator_TableVarName="tableAnagClienti" msprop:Generator_RowDeletingName="AnagClientiRowDeleting" msprop:Generator_TablePropName="AnagClienti">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn">
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn">
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="35" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Lingua" msprop:Generator_UserColumnName="Lingua" msprop:Generator_ColumnPropNameInRow="Lingua" msprop:Generator_ColumnVarNameInTable="columnLingua" msprop:Generator_ColumnPropNameInTable="LinguaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="stp_prtCartByUDC" msprop:Generator_UserTableName="stp_prtCartByUDC" msprop:Generator_RowDeletedName="stp_prtCartByUDCRowDeleted" msprop:Generator_RowChangedName="stp_prtCartByUDCRowChanged" msprop:Generator_RowClassName="stp_prtCartByUDCRow" msprop:Generator_RowChangingName="stp_prtCartByUDCRowChanging" msprop:Generator_RowEvArgName="stp_prtCartByUDCRowChangeEvent" msprop:Generator_RowEvHandlerName="stp_prtCartByUDCRowChangeEventHandler" msprop:Generator_TableClassName="stp_prtCartByUDCDataTable" msprop:Generator_TableVarName="tablestp_prtCartByUDC" msprop:Generator_RowDeletingName="stp_prtCartByUDCRowDeleting" msprop:Generator_TablePropName="stp_prtCartByUDC">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="codcliente" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codcliente" msprop:Generator_ColumnPropNameInRow="codcliente" msprop:Generator_ColumnVarNameInTable="columncodcliente" msprop:Generator_ColumnPropNameInTable="codclienteColumn" minOccurs="0">
|
||||
<xs:element name="codcliente" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codcliente" msprop:Generator_ColumnVarNameInTable="columncodcliente" msprop:Generator_ColumnPropNameInRow="codcliente" msprop:Generator_ColumnPropNameInTable="codclienteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="ragsociale" msdata:ReadOnly="true" msprop:Generator_UserColumnName="ragsociale" msprop:Generator_ColumnPropNameInRow="ragsociale" msprop:Generator_ColumnVarNameInTable="columnragsociale" msprop:Generator_ColumnPropNameInTable="ragsocialeColumn" minOccurs="0">
|
||||
<xs:element name="ragsociale" msdata:ReadOnly="true" msprop:Generator_UserColumnName="ragsociale" msprop:Generator_ColumnVarNameInTable="columnragsociale" msprop:Generator_ColumnPropNameInRow="ragsociale" msprop:Generator_ColumnPropNameInTable="ragsocialeColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="35" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="particolare" msdata:ReadOnly="true" msprop:Generator_UserColumnName="particolare" msprop:Generator_ColumnPropNameInRow="particolare" msprop:Generator_ColumnVarNameInTable="columnparticolare" msprop:Generator_ColumnPropNameInTable="particolareColumn" minOccurs="0">
|
||||
<xs:element name="particolare" msdata:ReadOnly="true" msprop:Generator_UserColumnName="particolare" msprop:Generator_ColumnVarNameInTable="columnparticolare" msprop:Generator_ColumnPropNameInRow="particolare" msprop:Generator_ColumnPropNameInTable="particolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="descparticolare" msdata:ReadOnly="true" msprop:Generator_UserColumnName="descparticolare" msprop:Generator_ColumnPropNameInRow="descparticolare" msprop:Generator_ColumnVarNameInTable="columndescparticolare" msprop:Generator_ColumnPropNameInTable="descparticolareColumn" minOccurs="0">
|
||||
<xs:element name="descparticolare" msdata:ReadOnly="true" msprop:Generator_UserColumnName="descparticolare" msprop:Generator_ColumnVarNameInTable="columndescparticolare" msprop:Generator_ColumnPropNameInRow="descparticolare" msprop:Generator_ColumnPropNameInTable="descparticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="disegnogrezzo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="disegnogrezzo" msprop:Generator_ColumnPropNameInRow="disegnogrezzo" msprop:Generator_ColumnVarNameInTable="columndisegnogrezzo" msprop:Generator_ColumnPropNameInTable="disegnogrezzoColumn" minOccurs="0">
|
||||
<xs:element name="disegnogrezzo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="disegnogrezzo" msprop:Generator_ColumnVarNameInTable="columndisegnogrezzo" msprop:Generator_ColumnPropNameInRow="disegnogrezzo" msprop:Generator_ColumnPropNameInTable="disegnogrezzoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="esponente" msdata:ReadOnly="true" msprop:Generator_UserColumnName="esponente" msprop:Generator_ColumnPropNameInRow="esponente" msprop:Generator_ColumnVarNameInTable="columnesponente" msprop:Generator_ColumnPropNameInTable="esponenteColumn" minOccurs="0">
|
||||
<xs:element name="esponente" msdata:ReadOnly="true" msprop:Generator_UserColumnName="esponente" msprop:Generator_ColumnVarNameInTable="columnesponente" msprop:Generator_ColumnPropNameInRow="esponente" msprop:Generator_ColumnPropNameInTable="esponenteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="codimpianto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codimpianto" msprop:Generator_ColumnPropNameInRow="codimpianto" msprop:Generator_ColumnVarNameInTable="columncodimpianto" msprop:Generator_ColumnPropNameInTable="codimpiantoColumn" minOccurs="0">
|
||||
<xs:element name="codimpianto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codimpianto" msprop:Generator_ColumnVarNameInTable="columncodimpianto" msprop:Generator_ColumnPropNameInRow="codimpianto" msprop:Generator_ColumnPropNameInTable="codimpiantoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="descimpianto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="descimpianto" msprop:Generator_ColumnPropNameInRow="descimpianto" msprop:Generator_ColumnVarNameInTable="columndescimpianto" msprop:Generator_ColumnPropNameInTable="descimpiantoColumn" minOccurs="0">
|
||||
<xs:element name="descimpianto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="descimpianto" msprop:Generator_ColumnVarNameInTable="columndescimpianto" msprop:Generator_ColumnPropNameInRow="descimpianto" msprop:Generator_ColumnPropNameInTable="descimpiantoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="codstampo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codstampo" msprop:Generator_ColumnPropNameInRow="codstampo" msprop:Generator_ColumnVarNameInTable="columncodstampo" msprop:Generator_ColumnPropNameInTable="codstampoColumn" minOccurs="0">
|
||||
<xs:element name="codstampo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codstampo" msprop:Generator_ColumnVarNameInTable="columncodstampo" msprop:Generator_ColumnPropNameInRow="codstampo" msprop:Generator_ColumnPropNameInTable="codstampoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="8" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="figura" msdata:ReadOnly="true" msprop:Generator_UserColumnName="figura" msprop:Generator_ColumnPropNameInRow="figura" msprop:Generator_ColumnVarNameInTable="columnfigura" msprop:Generator_ColumnPropNameInTable="figuraColumn" minOccurs="0">
|
||||
<xs:element name="figura" msdata:ReadOnly="true" msprop:Generator_UserColumnName="figura" msprop:Generator_ColumnVarNameInTable="columnfigura" msprop:Generator_ColumnPropNameInRow="figura" msprop:Generator_ColumnPropNameInTable="figuraColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="datafus" msdata:ReadOnly="true" msprop:Generator_UserColumnName="datafus" msprop:Generator_ColumnPropNameInRow="datafus" msprop:Generator_ColumnVarNameInTable="columndatafus" msprop:Generator_ColumnPropNameInTable="datafusColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="turnofus" msdata:ReadOnly="true" msprop:Generator_UserColumnName="turnofus" msprop:Generator_ColumnPropNameInRow="turnofus" msprop:Generator_ColumnVarNameInTable="columnturnofus" msprop:Generator_ColumnPropNameInTable="turnofusColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="codimballo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codimballo" msprop:Generator_ColumnPropNameInRow="codimballo" msprop:Generator_ColumnVarNameInTable="columncodimballo" msprop:Generator_ColumnPropNameInTable="codimballoColumn" minOccurs="0">
|
||||
<xs:element name="datafus" msdata:ReadOnly="true" msprop:Generator_UserColumnName="datafus" msprop:Generator_ColumnVarNameInTable="columndatafus" msprop:Generator_ColumnPropNameInRow="datafus" msprop:Generator_ColumnPropNameInTable="datafusColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="turnofus" msdata:ReadOnly="true" msprop:Generator_UserColumnName="turnofus" msprop:Generator_ColumnVarNameInTable="columnturnofus" msprop:Generator_ColumnPropNameInRow="turnofus" msprop:Generator_ColumnPropNameInTable="turnofusColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="codimballo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codimballo" msprop:Generator_ColumnVarNameInTable="columncodimballo" msprop:Generator_ColumnPropNameInRow="codimballo" msprop:Generator_ColumnPropNameInTable="codimballoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="codsoggetto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codsoggetto" msprop:Generator_ColumnPropNameInRow="codsoggetto" msprop:Generator_ColumnVarNameInTable="columncodsoggetto" msprop:Generator_ColumnPropNameInTable="codsoggettoColumn" minOccurs="0">
|
||||
<xs:element name="codsoggetto" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codsoggetto" msprop:Generator_ColumnVarNameInTable="columncodsoggetto" msprop:Generator_ColumnPropNameInRow="codsoggetto" msprop:Generator_ColumnPropNameInTable="codsoggettoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="17" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="numcont" msdata:ReadOnly="true" msprop:Generator_UserColumnName="numcont" msprop:Generator_ColumnPropNameInRow="numcont" msprop:Generator_ColumnVarNameInTable="columnnumcont" msprop:Generator_ColumnPropNameInTable="numcontColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="tara" msdata:ReadOnly="true" msprop:Generator_UserColumnName="tara" msprop:Generator_ColumnPropNameInRow="tara" msprop:Generator_ColumnVarNameInTable="columntara" msprop:Generator_ColumnPropNameInTable="taraColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="qta" msdata:ReadOnly="true" msprop:Generator_UserColumnName="qta" msprop:Generator_ColumnPropNameInRow="qta" msprop:Generator_ColumnVarNameInTable="columnqta" msprop:Generator_ColumnPropNameInTable="qtaColumn" type="xs:decimal" minOccurs="0" />
|
||||
<xs:element name="codstato" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codstato" msprop:Generator_ColumnPropNameInRow="codstato" msprop:Generator_ColumnVarNameInTable="columncodstato" msprop:Generator_ColumnPropNameInTable="codstatoColumn" minOccurs="0">
|
||||
<xs:element name="numcont" msdata:ReadOnly="true" msprop:Generator_UserColumnName="numcont" msprop:Generator_ColumnVarNameInTable="columnnumcont" msprop:Generator_ColumnPropNameInRow="numcont" msprop:Generator_ColumnPropNameInTable="numcontColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="tara" msdata:ReadOnly="true" msprop:Generator_UserColumnName="tara" msprop:Generator_ColumnVarNameInTable="columntara" msprop:Generator_ColumnPropNameInRow="tara" msprop:Generator_ColumnPropNameInTable="taraColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="qta" msdata:ReadOnly="true" msprop:Generator_UserColumnName="qta" msprop:Generator_ColumnVarNameInTable="columnqta" msprop:Generator_ColumnPropNameInRow="qta" msprop:Generator_ColumnPropNameInTable="qtaColumn" type="xs:decimal" minOccurs="0" />
|
||||
<xs:element name="codstato" msdata:ReadOnly="true" msprop:Generator_UserColumnName="codstato" msprop:Generator_ColumnVarNameInTable="columncodstato" msprop:Generator_ColumnPropNameInRow="codstato" msprop:Generator_ColumnPropNameInTable="codstatoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="idxposizione" msdata:ReadOnly="true" msprop:Generator_UserColumnName="idxposizione" msprop:Generator_ColumnPropNameInRow="idxposizione" msprop:Generator_ColumnVarNameInTable="columnidxposizione" msprop:Generator_ColumnPropNameInTable="idxposizioneColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="pesotot" msdata:ReadOnly="true" msprop:Generator_UserColumnName="pesotot" msprop:Generator_ColumnPropNameInRow="pesotot" msprop:Generator_ColumnVarNameInTable="columnpesotot" msprop:Generator_ColumnPropNameInTable="pesototColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="pesocad" msdata:ReadOnly="true" msprop:Generator_UserColumnName="pesocad" msprop:Generator_ColumnPropNameInRow="pesocad" msprop:Generator_ColumnVarNameInTable="columnpesocad" msprop:Generator_ColumnPropNameInTable="pesocadColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="CreateDate" msprop:Generator_UserColumnName="CreateDate" msprop:Generator_ColumnPropNameInRow="CreateDate" msprop:Generator_ColumnVarNameInTable="columnCreateDate" msprop:Generator_ColumnPropNameInTable="CreateDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="ModDate" msprop:Generator_UserColumnName="ModDate" msprop:Generator_ColumnPropNameInRow="ModDate" msprop:Generator_ColumnVarNameInTable="columnModDate" msprop:Generator_ColumnPropNameInTable="ModDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="cognome" msdata:ReadOnly="true" msprop:Generator_UserColumnName="cognome" msprop:Generator_ColumnPropNameInRow="cognome" msprop:Generator_ColumnVarNameInTable="columncognome" msprop:Generator_ColumnPropNameInTable="cognomeColumn" minOccurs="0">
|
||||
<xs:element name="idxposizione" msdata:ReadOnly="true" msprop:Generator_UserColumnName="idxposizione" msprop:Generator_ColumnVarNameInTable="columnidxposizione" msprop:Generator_ColumnPropNameInRow="idxposizione" msprop:Generator_ColumnPropNameInTable="idxposizioneColumn" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="pesotot" msdata:ReadOnly="true" msprop:Generator_UserColumnName="pesotot" msprop:Generator_ColumnVarNameInTable="columnpesotot" msprop:Generator_ColumnPropNameInRow="pesotot" msprop:Generator_ColumnPropNameInTable="pesototColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="pesocad" msdata:ReadOnly="true" msprop:Generator_UserColumnName="pesocad" msprop:Generator_ColumnVarNameInTable="columnpesocad" msprop:Generator_ColumnPropNameInRow="pesocad" msprop:Generator_ColumnPropNameInTable="pesocadColumn" type="xs:double" minOccurs="0" />
|
||||
<xs:element name="CreateDate" msprop:Generator_UserColumnName="CreateDate" msprop:Generator_ColumnVarNameInTable="columnCreateDate" msprop:Generator_ColumnPropNameInRow="CreateDate" msprop:Generator_ColumnPropNameInTable="CreateDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="ModDate" msprop:Generator_UserColumnName="ModDate" msprop:Generator_ColumnVarNameInTable="columnModDate" msprop:Generator_ColumnPropNameInRow="ModDate" msprop:Generator_ColumnPropNameInTable="ModDateColumn" type="xs:dateTime" minOccurs="0" />
|
||||
<xs:element name="cognome" msdata:ReadOnly="true" msprop:Generator_UserColumnName="cognome" msprop:Generator_ColumnVarNameInTable="columncognome" msprop:Generator_ColumnPropNameInRow="cognome" msprop:Generator_ColumnPropNameInTable="cognomeColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="40" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="nome" msdata:ReadOnly="true" msprop:Generator_UserColumnName="nome" msprop:Generator_ColumnPropNameInRow="nome" msprop:Generator_ColumnVarNameInTable="columnnome" msprop:Generator_ColumnPropNameInTable="nomeColumn" minOccurs="0">
|
||||
<xs:element name="nome" msdata:ReadOnly="true" msprop:Generator_UserColumnName="nome" msprop:Generator_ColumnVarNameInTable="columnnome" msprop:Generator_ColumnPropNameInRow="nome" msprop:Generator_ColumnPropNameInTable="nomeColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="40" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="descstato" msdata:ReadOnly="true" msprop:Generator_UserColumnName="descstato" msprop:Generator_ColumnPropNameInRow="descstato" msprop:Generator_ColumnVarNameInTable="columndescstato" msprop:Generator_ColumnPropNameInTable="descstatoColumn" minOccurs="0">
|
||||
<xs:element name="descstato" msdata:ReadOnly="true" msprop:Generator_UserColumnName="descstato" msprop:Generator_ColumnVarNameInTable="columndescstato" msprop:Generator_ColumnPropNameInRow="descstato" msprop:Generator_ColumnPropNameInTable="descstatoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="descimballo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="descimballo" msprop:Generator_ColumnPropNameInRow="descimballo" msprop:Generator_ColumnVarNameInTable="columndescimballo" msprop:Generator_ColumnPropNameInTable="descimballoColumn" minOccurs="0">
|
||||
<xs:element name="descimballo" msdata:ReadOnly="true" msprop:Generator_UserColumnName="descimballo" msprop:Generator_ColumnVarNameInTable="columndescimballo" msprop:Generator_ColumnPropNameInRow="descimballo" msprop:Generator_ColumnPropNameInTable="descimballoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn" minOccurs="0">
|
||||
<xs:element name="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescFamiglia" msprop:Generator_UserColumnName="DescFamiglia" msprop:Generator_ColumnPropNameInRow="DescFamiglia" msprop:Generator_ColumnVarNameInTable="columnDescFamiglia" msprop:Generator_ColumnPropNameInTable="DescFamigliaColumn" minOccurs="0">
|
||||
<xs:element name="DescFamiglia" msprop:Generator_UserColumnName="DescFamiglia" msprop:Generator_ColumnVarNameInTable="columnDescFamiglia" msprop:Generator_ColumnPropNameInRow="DescFamiglia" msprop:Generator_ColumnPropNameInTable="DescFamigliaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="100" />
|
||||
@@ -2186,42 +2200,42 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="AnagParticolari" msprop:Generator_UserTableName="AnagParticolari" msprop:Generator_RowDeletedName="AnagParticolariRowDeleted" msprop:Generator_RowChangedName="AnagParticolariRowChanged" msprop:Generator_RowClassName="AnagParticolariRow" msprop:Generator_RowChangingName="AnagParticolariRowChanging" msprop:Generator_RowEvArgName="AnagParticolariRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagParticolariRowChangeEventHandler" msprop:Generator_TableClassName="AnagParticolariDataTable" msprop:Generator_TableVarName="tableAnagParticolari" msprop:Generator_RowDeletingName="AnagParticolariRowDeleting" msprop:Generator_TablePropName="AnagParticolari">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn">
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:element name="CodCS" msprop:Generator_UserColumnName="CodCS" msprop:Generator_ColumnVarNameInTable="columnCodCS" msprop:Generator_ColumnPropNameInRow="CodCS" msprop:Generator_ColumnPropNameInTable="CodCSColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="2" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn">
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn">
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn" minOccurs="0">
|
||||
<xs:element name="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
@@ -2234,14 +2248,14 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="AnagFamiglie" msprop:Generator_UserTableName="AnagFamiglie" msprop:Generator_RowDeletedName="AnagFamiglieRowDeleted" msprop:Generator_RowChangedName="AnagFamiglieRowChanged" msprop:Generator_RowClassName="AnagFamiglieRow" msprop:Generator_RowChangingName="AnagFamiglieRowChanging" msprop:Generator_RowEvArgName="AnagFamiglieRowChangeEvent" msprop:Generator_RowEvHandlerName="AnagFamiglieRowChangeEventHandler" msprop:Generator_TableClassName="AnagFamiglieDataTable" msprop:Generator_TableVarName="tableAnagFamiglie" msprop:Generator_RowDeletingName="AnagFamiglieRowDeleting" msprop:Generator_TablePropName="AnagFamiglie">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn">
|
||||
<xs:element name="CodFamiglia" msprop:Generator_UserColumnName="CodFamiglia" msprop:Generator_ColumnVarNameInTable="columnCodFamiglia" msprop:Generator_ColumnPropNameInRow="CodFamiglia" msprop:Generator_ColumnPropNameInTable="CodFamigliaColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescFamiglia" msprop:Generator_UserColumnName="DescFamiglia" msprop:Generator_ColumnPropNameInRow="DescFamiglia" msprop:Generator_ColumnVarNameInTable="columnDescFamiglia" msprop:Generator_ColumnPropNameInTable="DescFamigliaColumn" minOccurs="0">
|
||||
<xs:element name="DescFamiglia" msprop:Generator_UserColumnName="DescFamiglia" msprop:Generator_ColumnVarNameInTable="columnDescFamiglia" msprop:Generator_ColumnPropNameInRow="DescFamiglia" msprop:Generator_ColumnPropNameInTable="DescFamigliaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="100" />
|
||||
@@ -2254,21 +2268,21 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="Soggetti2Utente" msprop:Generator_UserTableName="Soggetti2Utente" msprop:Generator_RowDeletedName="Soggetti2UtenteRowDeleted" msprop:Generator_RowChangedName="Soggetti2UtenteRowChanged" msprop:Generator_RowClassName="Soggetti2UtenteRow" msprop:Generator_RowChangingName="Soggetti2UtenteRowChanging" msprop:Generator_RowEvArgName="Soggetti2UtenteRowChangeEvent" msprop:Generator_RowEvHandlerName="Soggetti2UtenteRowChangeEventHandler" msprop:Generator_TableClassName="Soggetti2UtenteDataTable" msprop:Generator_TableVarName="tableSoggetti2Utente" msprop:Generator_RowDeletingName="Soggetti2UtenteRowDeleting" msprop:Generator_TablePropName="Soggetti2Utente">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodSoggetto" msprop:Generator_UserColumnName="CodSoggetto" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn">
|
||||
<xs:element name="CodSoggetto" msprop:Generator_UserColumnName="CodSoggetto" msprop:Generator_ColumnVarNameInTable="columnCodSoggetto" msprop:Generator_ColumnPropNameInRow="CodSoggetto" msprop:Generator_ColumnPropNameInTable="CodSoggettoColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="17" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="USER_NAME" msprop:Generator_UserColumnName="USER_NAME" msprop:Generator_ColumnPropNameInRow="USER_NAME" msprop:Generator_ColumnVarNameInTable="columnUSER_NAME" msprop:Generator_ColumnPropNameInTable="USER_NAMEColumn">
|
||||
<xs:element name="USER_NAME" msprop:Generator_UserColumnName="USER_NAME" msprop:Generator_ColumnVarNameInTable="columnUSER_NAME" msprop:Generator_ColumnPropNameInRow="USER_NAME" msprop:Generator_ColumnPropNameInTable="USER_NAMEColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DOMINIO" msprop:Generator_UserColumnName="DOMINIO" msprop:Generator_ColumnPropNameInRow="DOMINIO" msprop:Generator_ColumnVarNameInTable="columnDOMINIO" msprop:Generator_ColumnPropNameInTable="DOMINIOColumn" minOccurs="0">
|
||||
<xs:element name="DOMINIO" msprop:Generator_UserColumnName="DOMINIO" msprop:Generator_ColumnVarNameInTable="columnDOMINIO" msprop:Generator_ColumnPropNameInRow="DOMINIO" msprop:Generator_ColumnPropNameInTable="DOMINIOColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
@@ -2281,102 +2295,102 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="stp_prtCartMatPrimaByUDC" msprop:Generator_UserTableName="stp_prtCartMatPrimaByUDC" msprop:Generator_RowDeletedName="stp_prtCartMatPrimaByUDCRowDeleted" msprop:Generator_RowChangedName="stp_prtCartMatPrimaByUDCRowChanged" msprop:Generator_RowClassName="stp_prtCartMatPrimaByUDCRow" msprop:Generator_RowChangingName="stp_prtCartMatPrimaByUDCRowChanging" msprop:Generator_RowEvArgName="stp_prtCartMatPrimaByUDCRowChangeEvent" msprop:Generator_RowEvHandlerName="stp_prtCartMatPrimaByUDCRowChangeEventHandler" msprop:Generator_TableClassName="stp_prtCartMatPrimaByUDCDataTable" msprop:Generator_TableVarName="tablestp_prtCartMatPrimaByUDC" msprop:Generator_RowDeletingName="stp_prtCartMatPrimaByUDCRowDeleting" msprop:Generator_TablePropName="stp_prtCartMatPrimaByUDC">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="nRapQual" msprop:Generator_UserColumnName="nRapQual" msprop:Generator_ColumnVarNameInTable="columnnRapQual" msprop:Generator_ColumnPropNameInRow="nRapQual" msprop:Generator_ColumnPropNameInTable="nRapQualColumn" type="xs:decimal" />
|
||||
<xs:element name="DataRapQual" msprop:Generator_UserColumnName="DataRapQual" msprop:Generator_ColumnVarNameInTable="columnDataRapQual" msprop:Generator_ColumnPropNameInRow="DataRapQual" msprop:Generator_ColumnPropNameInTable="DataRapQualColumn" type="xs:decimal" />
|
||||
<xs:element name="ProgUDC" msprop:Generator_UserColumnName="ProgUDC" msprop:Generator_ColumnVarNameInTable="columnProgUDC" msprop:Generator_ColumnPropNameInRow="ProgUDC" msprop:Generator_ColumnPropNameInTable="ProgUDCColumn">
|
||||
<xs:element name="nRapQual" msprop:Generator_UserColumnName="nRapQual" msprop:Generator_ColumnPropNameInRow="nRapQual" msprop:Generator_ColumnVarNameInTable="columnnRapQual" msprop:Generator_ColumnPropNameInTable="nRapQualColumn" type="xs:decimal" />
|
||||
<xs:element name="DataRapQual" msprop:Generator_UserColumnName="DataRapQual" msprop:Generator_ColumnPropNameInRow="DataRapQual" msprop:Generator_ColumnVarNameInTable="columnDataRapQual" msprop:Generator_ColumnPropNameInTable="DataRapQualColumn" type="xs:decimal" />
|
||||
<xs:element name="ProgUDC" msprop:Generator_UserColumnName="ProgUDC" msprop:Generator_ColumnPropNameInRow="ProgUDC" msprop:Generator_ColumnVarNameInTable="columnProgUDC" msprop:Generator_ColumnPropNameInTable="ProgUDCColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="10" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodFor" msprop:Generator_UserColumnName="CodFor" msprop:Generator_ColumnVarNameInTable="columnCodFor" msprop:Generator_ColumnPropNameInRow="CodFor" msprop:Generator_ColumnPropNameInTable="CodForColumn">
|
||||
<xs:element name="CodFor" msprop:Generator_UserColumnName="CodFor" msprop:Generator_ColumnPropNameInRow="CodFor" msprop:Generator_ColumnVarNameInTable="columnCodFor" msprop:Generator_ColumnPropNameInTable="CodForColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DestTerz" msprop:Generator_UserColumnName="DestTerz" msprop:Generator_ColumnVarNameInTable="columnDestTerz" msprop:Generator_ColumnPropNameInRow="DestTerz" msprop:Generator_ColumnPropNameInTable="DestTerzColumn">
|
||||
<xs:element name="DestTerz" msprop:Generator_UserColumnName="DestTerz" msprop:Generator_ColumnPropNameInRow="DestTerz" msprop:Generator_ColumnVarNameInTable="columnDestTerz" msprop:Generator_ColumnPropNameInTable="DestTerzColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodLega" msprop:Generator_UserColumnName="CodLega" msprop:Generator_ColumnVarNameInTable="columnCodLega" msprop:Generator_ColumnPropNameInRow="CodLega" msprop:Generator_ColumnPropNameInTable="CodLegaColumn">
|
||||
<xs:element name="CodLega" msprop:Generator_UserColumnName="CodLega" msprop:Generator_ColumnPropNameInRow="CodLega" msprop:Generator_ColumnVarNameInTable="columnCodLega" msprop:Generator_ColumnPropNameInTable="CodLegaColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DataPrelFus" msprop:Generator_UserColumnName="DataPrelFus" msprop:Generator_ColumnVarNameInTable="columnDataPrelFus" msprop:Generator_ColumnPropNameInRow="DataPrelFus" msprop:Generator_ColumnPropNameInTable="DataPrelFusColumn" type="xs:decimal" />
|
||||
<xs:element name="TurnoPrelFus" msprop:Generator_UserColumnName="TurnoPrelFus" msprop:Generator_ColumnVarNameInTable="columnTurnoPrelFus" msprop:Generator_ColumnPropNameInRow="TurnoPrelFus" msprop:Generator_ColumnPropNameInTable="TurnoPrelFusColumn">
|
||||
<xs:element name="DataPrelFus" msprop:Generator_UserColumnName="DataPrelFus" msprop:Generator_ColumnPropNameInRow="DataPrelFus" msprop:Generator_ColumnVarNameInTable="columnDataPrelFus" msprop:Generator_ColumnPropNameInTable="DataPrelFusColumn" type="xs:decimal" />
|
||||
<xs:element name="TurnoPrelFus" msprop:Generator_UserColumnName="TurnoPrelFus" msprop:Generator_ColumnPropNameInRow="TurnoPrelFus" msprop:Generator_ColumnVarNameInTable="columnTurnoPrelFus" msprop:Generator_ColumnPropNameInTable="TurnoPrelFusColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="5" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Qta" msprop:Generator_UserColumnName="Qta" msprop:Generator_ColumnVarNameInTable="columnQta" msprop:Generator_ColumnPropNameInRow="Qta" msprop:Generator_ColumnPropNameInTable="QtaColumn" type="xs:decimal" />
|
||||
<xs:element name="DestLega" msprop:Generator_UserColumnName="DestLega" msprop:Generator_ColumnVarNameInTable="columnDestLega" msprop:Generator_ColumnPropNameInRow="DestLega" msprop:Generator_ColumnPropNameInTable="DestLegaColumn">
|
||||
<xs:element name="Qta" msprop:Generator_UserColumnName="Qta" msprop:Generator_ColumnPropNameInRow="Qta" msprop:Generator_ColumnVarNameInTable="columnQta" msprop:Generator_ColumnPropNameInTable="QtaColumn" type="xs:decimal" />
|
||||
<xs:element name="DestLega" msprop:Generator_UserColumnName="DestLega" msprop:Generator_ColumnPropNameInRow="DestLega" msprop:Generator_ColumnVarNameInTable="columnDestLega" msprop:Generator_ColumnPropNameInTable="DestLegaColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="3" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="LegaScaric" msprop:Generator_UserColumnName="LegaScaric" msprop:Generator_ColumnVarNameInTable="columnLegaScaric" msprop:Generator_ColumnPropNameInRow="LegaScaric" msprop:Generator_ColumnPropNameInTable="LegaScaricColumn">
|
||||
<xs:element name="LegaScaric" msprop:Generator_UserColumnName="LegaScaric" msprop:Generator_ColumnPropNameInRow="LegaScaric" msprop:Generator_ColumnVarNameInTable="columnLegaScaric" msprop:Generator_ColumnPropNameInTable="LegaScaricColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="1" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="BenesQual" msprop:Generator_UserColumnName="BenesQual" msprop:Generator_ColumnVarNameInTable="columnBenesQual" msprop:Generator_ColumnPropNameInRow="BenesQual" msprop:Generator_ColumnPropNameInTable="BenesQualColumn">
|
||||
<xs:element name="BenesQual" msprop:Generator_UserColumnName="BenesQual" msprop:Generator_ColumnPropNameInRow="BenesQual" msprop:Generator_ColumnVarNameInTable="columnBenesQual" msprop:Generator_ColumnPropNameInTable="BenesQualColumn">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="1" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnPropNameInTable="UDCColumn" minOccurs="0">
|
||||
<xs:element name="UDC" msprop:Generator_UserColumnName="UDC" msprop:Generator_ColumnPropNameInRow="UDC" msprop:Generator_ColumnVarNameInTable="columnUDC" msprop:Generator_ColumnPropNameInTable="UDCColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescFornitore" msprop:Generator_UserColumnName="DescFornitore" msprop:Generator_ColumnVarNameInTable="columnDescFornitore" msprop:Generator_ColumnPropNameInRow="DescFornitore" msprop:Generator_ColumnPropNameInTable="DescFornitoreColumn" minOccurs="0">
|
||||
<xs:element name="DescFornitore" msprop:Generator_UserColumnName="DescFornitore" msprop:Generator_ColumnPropNameInRow="DescFornitore" msprop:Generator_ColumnVarNameInTable="columnDescFornitore" msprop:Generator_ColumnPropNameInTable="DescFornitoreColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="35" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescFornitore2" msprop:Generator_UserColumnName="DescFornitore2" msprop:Generator_ColumnVarNameInTable="columnDescFornitore2" msprop:Generator_ColumnPropNameInRow="DescFornitore2" msprop:Generator_ColumnPropNameInTable="DescFornitore2Column" minOccurs="0">
|
||||
<xs:element name="DescFornitore2" msprop:Generator_UserColumnName="DescFornitore2" msprop:Generator_ColumnPropNameInRow="DescFornitore2" msprop:Generator_ColumnVarNameInTable="columnDescFornitore2" msprop:Generator_ColumnPropNameInTable="DescFornitore2Column" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="35" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodLega2" msprop:Generator_UserColumnName="CodLega2" msprop:Generator_ColumnVarNameInTable="columnCodLega2" msprop:Generator_ColumnPropNameInRow="CodLega2" msprop:Generator_ColumnPropNameInTable="CodLega2Column" minOccurs="0">
|
||||
<xs:element name="CodLega2" msprop:Generator_UserColumnName="CodLega2" msprop:Generator_ColumnPropNameInRow="CodLega2" msprop:Generator_ColumnVarNameInTable="columnCodLega2" msprop:Generator_ColumnPropNameInTable="CodLega2Column" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="12" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescLega" msprop:Generator_UserColumnName="DescLega" msprop:Generator_ColumnVarNameInTable="columnDescLega" msprop:Generator_ColumnPropNameInRow="DescLega" msprop:Generator_ColumnPropNameInTable="DescLegaColumn" minOccurs="0">
|
||||
<xs:element name="DescLega" msprop:Generator_UserColumnName="DescLega" msprop:Generator_ColumnPropNameInRow="DescLega" msprop:Generator_ColumnVarNameInTable="columnDescLega" msprop:Generator_ColumnPropNameInTable="DescLegaColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="25" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescLega2" msprop:Generator_UserColumnName="DescLega2" msprop:Generator_ColumnVarNameInTable="columnDescLega2" msprop:Generator_ColumnPropNameInRow="DescLega2" msprop:Generator_ColumnPropNameInTable="DescLega2Column" minOccurs="0">
|
||||
<xs:element name="DescLega2" msprop:Generator_UserColumnName="DescLega2" msprop:Generator_ColumnPropNameInRow="DescLega2" msprop:Generator_ColumnVarNameInTable="columnDescLega2" msprop:Generator_ColumnPropNameInTable="DescLega2Column" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="25" />
|
||||
@@ -2389,56 +2403,56 @@ SELECT CodSoggetto, USER_NAME, DOMINIO FROM Soggetti2Utente WHERE (CodSoggetto =
|
||||
<xs:element name="v_specParticolari" msprop:Generator_UserTableName="v_specParticolari" msprop:Generator_RowDeletedName="v_specParticolariRowDeleted" msprop:Generator_RowChangedName="v_specParticolariRowChanged" msprop:Generator_RowClassName="v_specParticolariRow" msprop:Generator_RowChangingName="v_specParticolariRowChanging" msprop:Generator_RowEvArgName="v_specParticolariRowChangeEvent" msprop:Generator_RowEvHandlerName="v_specParticolariRowChangeEventHandler" msprop:Generator_TableClassName="v_specParticolariDataTable" msprop:Generator_TableVarName="tablev_specParticolari" msprop:Generator_RowDeletingName="v_specParticolariRowDeleting" msprop:Generator_TablePropName="v_specParticolari">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" minOccurs="0">
|
||||
<xs:element name="CodCliente" msprop:Generator_UserColumnName="CodCliente" msprop:Generator_ColumnPropNameInRow="CodCliente" msprop:Generator_ColumnVarNameInTable="columnCodCliente" msprop:Generator_ColumnPropNameInTable="CodClienteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" minOccurs="0">
|
||||
<xs:element name="RagSociale" msprop:Generator_UserColumnName="RagSociale" msprop:Generator_ColumnPropNameInRow="RagSociale" msprop:Generator_ColumnVarNameInTable="columnRagSociale" msprop:Generator_ColumnPropNameInTable="RagSocialeColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="35" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" minOccurs="0">
|
||||
<xs:element name="Particolare" msprop:Generator_UserColumnName="Particolare" msprop:Generator_ColumnPropNameInRow="Particolare" msprop:Generator_ColumnVarNameInTable="columnParticolare" msprop:Generator_ColumnPropNameInTable="ParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="15" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:element name="DescParticolare" msprop:Generator_UserColumnName="DescParticolare" msprop:Generator_ColumnPropNameInRow="DescParticolare" msprop:Generator_ColumnVarNameInTable="columnDescParticolare" msprop:Generator_ColumnPropNameInTable="DescParticolareColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn" minOccurs="0">
|
||||
<xs:element name="DisegnoGrezzo" msprop:Generator_UserColumnName="DisegnoGrezzo" msprop:Generator_ColumnPropNameInRow="DisegnoGrezzo" msprop:Generator_ColumnVarNameInTable="columnDisegnoGrezzo" msprop:Generator_ColumnPropNameInTable="DisegnoGrezzoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="30" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Esponente" msprop:Generator_UserColumnName="Esponente" msprop:Generator_ColumnVarNameInTable="columnEsponente" msprop:Generator_ColumnPropNameInRow="Esponente" msprop:Generator_ColumnPropNameInTable="EsponenteColumn" minOccurs="0">
|
||||
<xs:element name="Esponente" msprop:Generator_UserColumnName="Esponente" msprop:Generator_ColumnPropNameInRow="Esponente" msprop:Generator_ColumnVarNameInTable="columnEsponente" msprop:Generator_ColumnPropNameInTable="EsponenteColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="6" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn" minOccurs="0">
|
||||
<xs:element name="CodStampo" msprop:Generator_UserColumnName="CodStampo" msprop:Generator_ColumnPropNameInRow="CodStampo" msprop:Generator_ColumnVarNameInTable="columnCodStampo" msprop:Generator_ColumnPropNameInTable="CodStampoColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="8" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
|
||||
<xs:element name="Figura" msprop:Generator_UserColumnName="Figura" msprop:Generator_ColumnPropNameInRow="Figura" msprop:Generator_ColumnVarNameInTable="columnFigura" msprop:Generator_ColumnPropNameInTable="FiguraColumn" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="4" />
|
||||
|
||||
@@ -1065,7 +1065,8 @@ namespace GMW_data
|
||||
catch
|
||||
{ }
|
||||
return answ;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Conferma che un dato UDC è stato prelevato per soddisfare la lista di prelievo ed aggiorna o aggiunge riga in RigheListePrelievo
|
||||
/// </summary>
|
||||
|
||||
Binary file not shown.
@@ -6,5 +6,8 @@
|
||||
<add name="GMW_data.Properties.Settings.GMWConnectionString"
|
||||
connectionString="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=SP_GMW;Persist Security Info=True;User ID=sa;Password=keyhammer"
|
||||
providerName="System.Data.SqlClient" />
|
||||
<add name="GMW_data.Properties.Settings.SP_produzioneConnectionString"
|
||||
connectionString="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=SP_produzione;Persist Security Info=True;User ID=sa;Password=keyhammer"
|
||||
providerName="System.Data.SqlClient" />
|
||||
</connectionStrings>
|
||||
</configuration>
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user