diff --git a/GMW/GMW/Type/ArtInProd.cs b/GMW/GMW/Type/ArtInProd.cs
index 5017de07..cac525e9 100644
--- a/GMW/GMW/Type/ArtInProd.cs
+++ b/GMW/GMW/Type/ArtInProd.cs
@@ -13,24 +13,24 @@ namespace GMW.Type
}
public ArtInProd(DS_Applicazione.v_ArtInProdRow riga)
{
- //RIFARE!!!!
CodImpianto = riga.CodImpianto;
- Particolare = riga.Particolare;
- DescrParticolare = riga.Particolare;
- Cliente = riga.Cliente;
- Articolo= riga.Particolare;
CodStampo = riga.CodStampo;
- Disegno = "ND";
- Esponente= "ND";
- Famiglia = riga.Famiglia;
- InizioProd = riga.InizioProd;
- FineProd = riga.FineProd;
+ NumStampate = riga.NumStampate;
+ DataInizio = riga.DataInizio;
+ TurnoInizio = riga.TurnoInizio;
+ InizioValid = riga.InizioValidita;
+ FineValid = riga.FineValidita;
+ NumFigure = riga.NumFigure;
+ CodCliente = riga.CodCliente;
+ RagSociale = riga.RagSociale;
+ CodArticolo = riga.CodArticolo;
+ Particolare = riga.Particolare;
+ DescParticolare = riga.DescParticolare;
+ DisegnoGrezzo = riga.DisegnoGrezzo;
+ CodFamiglia = riga.CodFamiglia;
+ DescFamiglia = riga.DescFamiglia;
Figura = riga.Figura;
- Fig1 = riga.FiguraIncisa;
- Fig2 = riga.FiguraIncisa;
- Fig3 = riga.FiguraIncisa;
- Fig4 = riga.FiguraIncisa;
- Lotto= "ND";
+ Esponente = riga.Esponente;
}
///
@@ -38,93 +38,97 @@ namespace GMW.Type
///
public string CodImpianto { get; set; }
///
+ /// Codice Stampo
+ ///
+ public string CodStampo { get; set; }
+ ///
+ /// Numero di stampate
+ ///
+ public decimal NumStampate { get; set; }
+ ///
+ /// Data Inizio produzione
+ ///
+ public DateTime DataInizio { get; set; }
+ ///
+ /// Turno Inizio produzione
+ ///
+ public string TurnoInizio { get; set; }
+ ///
+ /// Inizio validità stampo
+ ///
+ public DateTime InizioValid { get; set; }
+ ///
+ /// Fine validità stampo
+ ///
+ public DateTime? FineValid { get; set; }
+ ///
+ /// Numero di figure
+ ///
+ public decimal NumFigure { get; set; }
+ ///
+ /// Codice Cliente
+ ///
+ public string CodCliente { get; set; }
+ ///
+ /// Ragione Sociale Cliente
+ ///
+ public string RagSociale { get; set; }
+ ///
+ /// Codice Articolo
+ ///
+ public string CodArticolo { get; set; }
+ ///
/// Codice Articolo + cliente (=particolare)
///
public string Particolare { get; set; }
///
/// Descrizione particolare
///
- public string DescrParticolare { get; set; }
- ///
- /// Cliente
- ///
- public string Cliente { get; set; }
- ///
- /// Codice Articolo
- ///
- public string Articolo { get; set; }
- ///
- /// Codice Stampo
- ///
- public string CodStampo { get; set; }
+ public string DescParticolare { get; set; }
///
/// Codice Disegno
///
- public string Disegno { get; set; }
+ public string DisegnoGrezzo { get; set; }
///
- /// Codice Esponente
+ /// Codice Famiglia
///
- public string Esponente { get; set; }
+ public string CodFamiglia { get; set; }
///
- /// Famiglia
+ /// Ddescr Famiglia
///
- public string Famiglia { get; set; }
- ///
- /// Inizio produzione
- ///
- public DateTime InizioProd { get; set; }
- ///
- /// Fine produzione
- ///
- public DateTime? FineProd { get; set; }
+ public string DescFamiglia { get; set; }
///
/// Figura
///
public string Figura { get; set; }
///
- /// Figura Incisa 1
+ /// Codice Esponente
///
- public string Fig1 { get; set; }
- ///
- /// Figura Incisa 2
- ///
- public string Fig2 { get; set; }
- ///
- /// Figura Incisa 3
- ///
- public string Fig3 { get; set; }
- ///
- /// Figura Incisa 4
- ///
- public string Fig4 { get; set; }
- ///
- /// Lotto
- ///
- public string Lotto { get; set; }
+ public string Esponente { get; set; }
///
/// inizializza a partire da una riga impianti2articoli
///
///
public void setFromTabRow(DS_Applicazione.v_ArtInProdRow riga)
{
- //RIFARE!!!!
CodImpianto = riga.CodImpianto;
- Particolare = riga.Particolare;
- DescrParticolare = riga.Particolare;
- Cliente = riga.Cliente;
- Articolo = riga.Particolare;
CodStampo = riga.CodStampo;
- Disegno = "ND";
- Esponente = "ND";
- Famiglia = riga.Famiglia;
- InizioProd = riga.InizioProd;
- FineProd = riga.FineProd;
+ NumStampate = riga.NumStampate;
+ DataInizio = riga.DataInizio;
+ TurnoInizio = riga.TurnoInizio;
+ InizioValid = riga.InizioValidita;
+ FineValid = riga.FineValidita;
+ NumFigure = riga.NumFigure;
+ CodCliente = riga.CodCliente;
+ RagSociale = riga.RagSociale;
+ CodArticolo = riga.CodArticolo;
+ Particolare = riga.Particolare;
+ DescParticolare = riga.DescParticolare;
+ DisegnoGrezzo = riga.DisegnoGrezzo;
+ CodFamiglia = riga.CodFamiglia;
+ DescFamiglia = riga.DescFamiglia;
Figura = riga.Figura;
- Fig1 = riga.FiguraIncisa;
- Fig2 = riga.FiguraIncisa;
- Fig3 = riga.FiguraIncisa;
- Fig4 = riga.FiguraIncisa;
- Lotto = "ND";
+ Esponente = riga.Esponente;
}
}
}
diff --git a/GMW/GMW/WS/bilance.asmx.cs b/GMW/GMW/WS/bilance.asmx.cs
index fe7ebd5e..73c48fc4 100644
--- a/GMW/GMW/WS/bilance.asmx.cs
+++ b/GMW/GMW/WS/bilance.asmx.cs
@@ -221,16 +221,14 @@ namespace GMW.WS
{ }
return answ;
}
-#if false
-
///
- /// Fornisce l'elenco degli articoli attualmente in produzione per impianto, data e turno
+ /// Fornisce l'elenco degli articoli in produzione per impianto, data e turno
///
/// Codice impianto (da anagrafica)
/// data di riferimento
/// turno di riferimento (1-2-3)
///
- [WebMethod(Description = "Elenco impianti ed articoli attualmente in produzione (per codice anagrafico)")]
+ [WebMethod(Description = "Elenco impianti ed articoli in produzione (per codice anagrafico)")]
public GMW.Type.ArtInProd[] UdcInfo_ArtInProd4ImpDataTurno(string CodImpianto, DateTime dataRic, int turnoRic)
{
// calcolo quante ore sono il turno di riferimento...
@@ -239,8 +237,7 @@ namespace GMW.WS
DateTime dataRif = dataRic.Date.AddHours(oreTurno);
gestEl.caricaArtInProd(DataProxy.obj.taArtInProd.stp_byImpData(CodImpianto, dataRif));
return gestEl.elencoArtInProd;
- }
-#endif
+ }
#endregion
@@ -377,7 +374,6 @@ namespace GMW.WS
#endregion
-#if false
#region area stampe
///
@@ -407,6 +403,5 @@ namespace GMW.WS
}
#endregion
-#endif
}
}
diff --git a/GMW/GMW/bin/GMW.dll b/GMW/GMW/bin/GMW.dll
index 75d0464e..147d8bd8 100644
Binary files a/GMW/GMW/bin/GMW.dll and b/GMW/GMW/bin/GMW.dll differ
diff --git a/GMW/GMW/bin/GMW_data.dll b/GMW/GMW/bin/GMW_data.dll
index 54dc0a4f..c88dbea2 100644
Binary files a/GMW/GMW/bin/GMW_data.dll and b/GMW/GMW/bin/GMW_data.dll differ
diff --git a/GMW/GMW/obj/Debug/GMW.dll b/GMW/GMW/obj/Debug/GMW.dll
index 402f4411..0356dddd 100644
Binary files a/GMW/GMW/obj/Debug/GMW.dll and b/GMW/GMW/obj/Debug/GMW.dll differ
diff --git a/GMW/GMW/obj/Debug/ResolveAssemblyReference.cache b/GMW/GMW/obj/Debug/ResolveAssemblyReference.cache
index e0759345..6214e8bd 100644
Binary files a/GMW/GMW/obj/Debug/ResolveAssemblyReference.cache and b/GMW/GMW/obj/Debug/ResolveAssemblyReference.cache differ
diff --git a/GMW/GMW/obj/Release/GMW.dll b/GMW/GMW/obj/Release/GMW.dll
index 75d0464e..147d8bd8 100644
Binary files a/GMW/GMW/obj/Release/GMW.dll and b/GMW/GMW/obj/Release/GMW.dll differ
diff --git a/GMW/GMW/obj/Release/ResolveAssemblyReference.cache b/GMW/GMW/obj/Release/ResolveAssemblyReference.cache
index 079a38a7..7f8e5731 100644
Binary files a/GMW/GMW/obj/Release/ResolveAssemblyReference.cache and b/GMW/GMW/obj/Release/ResolveAssemblyReference.cache differ
diff --git a/GMW/GMW_data/DS_Applicazione.Designer.cs b/GMW/GMW_data/DS_Applicazione.Designer.cs
index 7f7ed588..94c237d5 100644
--- a/GMW/GMW_data/DS_Applicazione.Designer.cs
+++ b/GMW/GMW_data/DS_Applicazione.Designer.cs
@@ -35,8 +35,6 @@ namespace GMW_data {
private Impianti2ArticoliDataTable tableImpianti2Articoli;
- private v_ArtInProdDataTable tablev_ArtInProd;
-
private StoricoEventiDataTable tableStoricoEventi;
private RelazUDCDataTable tableRelazUDC;
@@ -51,6 +49,8 @@ namespace GMW_data {
private AnagImballiDataTable tableAnagImballi;
+ private v_ArtInProdDataTable tablev_ArtInProd;
+
private global::System.Data.DataRelation relationFK_Impianti2Articoli_AnagArticoli1;
private global::System.Data.DataRelation relationFK_StoricoEventi_AnagTipoDichiaraz;
@@ -104,9 +104,6 @@ namespace GMW_data {
if ((ds.Tables["Impianti2Articoli"] != null)) {
base.Tables.Add(new Impianti2ArticoliDataTable(ds.Tables["Impianti2Articoli"]));
}
- if ((ds.Tables["v_ArtInProd"] != null)) {
- base.Tables.Add(new v_ArtInProdDataTable(ds.Tables["v_ArtInProd"]));
- }
if ((ds.Tables["StoricoEventi"] != null)) {
base.Tables.Add(new StoricoEventiDataTable(ds.Tables["StoricoEventi"]));
}
@@ -128,6 +125,9 @@ namespace GMW_data {
if ((ds.Tables["AnagImballi"] != null)) {
base.Tables.Add(new AnagImballiDataTable(ds.Tables["AnagImballi"]));
}
+ if ((ds.Tables["v_ArtInProd"] != null)) {
+ base.Tables.Add(new v_ArtInProdDataTable(ds.Tables["v_ArtInProd"]));
+ }
this.DataSetName = ds.DataSetName;
this.Prefix = ds.Prefix;
this.Namespace = ds.Namespace;
@@ -191,15 +191,6 @@ namespace GMW_data {
}
}
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.ComponentModel.Browsable(false)]
- [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
- public v_ArtInProdDataTable v_ArtInProd {
- get {
- return this.tablev_ArtInProd;
- }
- }
-
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.ComponentModel.Browsable(false)]
[global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
@@ -263,6 +254,15 @@ namespace GMW_data {
}
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public v_ArtInProdDataTable v_ArtInProd {
+ get {
+ return this.tablev_ArtInProd;
+ }
+ }
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.ComponentModel.BrowsableAttribute(true)]
[global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
@@ -337,9 +337,6 @@ namespace GMW_data {
if ((ds.Tables["Impianti2Articoli"] != null)) {
base.Tables.Add(new Impianti2ArticoliDataTable(ds.Tables["Impianti2Articoli"]));
}
- if ((ds.Tables["v_ArtInProd"] != null)) {
- base.Tables.Add(new v_ArtInProdDataTable(ds.Tables["v_ArtInProd"]));
- }
if ((ds.Tables["StoricoEventi"] != null)) {
base.Tables.Add(new StoricoEventiDataTable(ds.Tables["StoricoEventi"]));
}
@@ -361,6 +358,9 @@ namespace GMW_data {
if ((ds.Tables["AnagImballi"] != null)) {
base.Tables.Add(new AnagImballiDataTable(ds.Tables["AnagImballi"]));
}
+ if ((ds.Tables["v_ArtInProd"] != null)) {
+ base.Tables.Add(new v_ArtInProdDataTable(ds.Tables["v_ArtInProd"]));
+ }
this.DataSetName = ds.DataSetName;
this.Prefix = ds.Prefix;
this.Namespace = ds.Namespace;
@@ -421,12 +421,6 @@ namespace GMW_data {
this.tableImpianti2Articoli.InitVars();
}
}
- this.tablev_ArtInProd = ((v_ArtInProdDataTable)(base.Tables["v_ArtInProd"]));
- if ((initTable == true)) {
- if ((this.tablev_ArtInProd != null)) {
- this.tablev_ArtInProd.InitVars();
- }
- }
this.tableStoricoEventi = ((StoricoEventiDataTable)(base.Tables["StoricoEventi"]));
if ((initTable == true)) {
if ((this.tableStoricoEventi != null)) {
@@ -469,6 +463,12 @@ namespace GMW_data {
this.tableAnagImballi.InitVars();
}
}
+ this.tablev_ArtInProd = ((v_ArtInProdDataTable)(base.Tables["v_ArtInProd"]));
+ if ((initTable == true)) {
+ if ((this.tablev_ArtInProd != null)) {
+ this.tablev_ArtInProd.InitVars();
+ }
+ }
this.relationFK_Impianti2Articoli_AnagArticoli1 = this.Relations["FK_Impianti2Articoli_AnagArticoli1"];
this.relationFK_StoricoEventi_AnagTipoDichiaraz = this.Relations["FK_StoricoEventi_AnagTipoDichiaraz"];
this.relationFK_Impianti2Articoli_AnagImpianti = this.Relations["FK_Impianti2Articoli_AnagImpianti"];
@@ -494,8 +494,6 @@ namespace GMW_data {
base.Tables.Add(this.tableAnagArticoli);
this.tableImpianti2Articoli = new Impianti2ArticoliDataTable();
base.Tables.Add(this.tableImpianti2Articoli);
- this.tablev_ArtInProd = new v_ArtInProdDataTable();
- base.Tables.Add(this.tablev_ArtInProd);
this.tableStoricoEventi = new StoricoEventiDataTable();
base.Tables.Add(this.tableStoricoEventi);
this.tableRelazUDC = new RelazUDCDataTable();
@@ -510,6 +508,8 @@ namespace GMW_data {
base.Tables.Add(this.tableElencoCartellini);
this.tableAnagImballi = new AnagImballiDataTable();
base.Tables.Add(this.tableAnagImballi);
+ this.tablev_ArtInProd = new v_ArtInProdDataTable();
+ base.Tables.Add(this.tablev_ArtInProd);
this.relationFK_Impianti2Articoli_AnagArticoli1 = new global::System.Data.DataRelation("FK_Impianti2Articoli_AnagArticoli1", new global::System.Data.DataColumn[] {
this.tableAnagArticoli.ParticolareColumn}, new global::System.Data.DataColumn[] {
this.tableImpianti2Articoli.ParticolareColumn}, false);
@@ -561,11 +561,6 @@ namespace GMW_data {
return false;
}
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- private bool ShouldSerializev_ArtInProd() {
- return false;
- }
-
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeStoricoEventi() {
return false;
@@ -601,6 +596,11 @@ namespace GMW_data {
return false;
}
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ private bool ShouldSerializev_ArtInProd() {
+ return false;
+ }
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
@@ -664,8 +664,6 @@ namespace GMW_data {
public delegate void Impianti2ArticoliRowChangeEventHandler(object sender, Impianti2ArticoliRowChangeEvent e);
- public delegate void v_ArtInProdRowChangeEventHandler(object sender, v_ArtInProdRowChangeEvent e);
-
public delegate void StoricoEventiRowChangeEventHandler(object sender, StoricoEventiRowChangeEvent e);
public delegate void RelazUDCRowChangeEventHandler(object sender, RelazUDCRowChangeEvent e);
@@ -680,6 +678,8 @@ namespace GMW_data {
public delegate void AnagImballiRowChangeEventHandler(object sender, AnagImballiRowChangeEvent e);
+ public delegate void v_ArtInProdRowChangeEventHandler(object sender, v_ArtInProdRowChangeEvent e);
+
///
///Represents the strongly named DataTable class.
///
@@ -2026,348 +2026,6 @@ namespace GMW_data {
}
}
- ///
- ///Represents the strongly named DataTable class.
- ///
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
- [global::System.Serializable()]
- [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
- public partial class v_ArtInProdDataTable : global::System.Data.TypedTableBase {
-
- private global::System.Data.DataColumn columnCliente;
-
- private global::System.Data.DataColumn columnFamiglia;
-
- private global::System.Data.DataColumn columnParticolare;
-
- private global::System.Data.DataColumn columnCodImpianto;
-
- private global::System.Data.DataColumn columnInizioProd;
-
- private global::System.Data.DataColumn columnFineProd;
-
- private global::System.Data.DataColumn columnCodStampo;
-
- private global::System.Data.DataColumn columnFigura;
-
- private global::System.Data.DataColumn columnFiguraIncisa;
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public v_ArtInProdDataTable() {
- this.TableName = "v_ArtInProd";
- this.BeginInit();
- this.InitClass();
- this.EndInit();
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- internal v_ArtInProdDataTable(global::System.Data.DataTable table) {
- this.TableName = table.TableName;
- if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
- this.CaseSensitive = table.CaseSensitive;
- }
- if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
- this.Locale = table.Locale;
- }
- if ((table.Namespace != table.DataSet.Namespace)) {
- this.Namespace = table.Namespace;
- }
- this.Prefix = table.Prefix;
- this.MinimumCapacity = table.MinimumCapacity;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected v_ArtInProdDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
- base(info, context) {
- this.InitVars();
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataColumn ClienteColumn {
- get {
- return this.columnCliente;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataColumn FamigliaColumn {
- get {
- return this.columnFamiglia;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataColumn ParticolareColumn {
- get {
- return this.columnParticolare;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataColumn CodImpiantoColumn {
- get {
- return this.columnCodImpianto;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataColumn InizioProdColumn {
- get {
- return this.columnInizioProd;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataColumn FineProdColumn {
- get {
- return this.columnFineProd;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataColumn CodStampoColumn {
- get {
- return this.columnCodStampo;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataColumn FiguraColumn {
- get {
- return this.columnFigura;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataColumn FiguraIncisaColumn {
- get {
- return this.columnFiguraIncisa;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.ComponentModel.Browsable(false)]
- public int Count {
- get {
- return this.Rows.Count;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public v_ArtInProdRow this[int index] {
- get {
- return ((v_ArtInProdRow)(this.Rows[index]));
- }
- }
-
- public event v_ArtInProdRowChangeEventHandler v_ArtInProdRowChanging;
-
- public event v_ArtInProdRowChangeEventHandler v_ArtInProdRowChanged;
-
- public event v_ArtInProdRowChangeEventHandler v_ArtInProdRowDeleting;
-
- public event v_ArtInProdRowChangeEventHandler v_ArtInProdRowDeleted;
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public void Addv_ArtInProdRow(v_ArtInProdRow row) {
- this.Rows.Add(row);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public v_ArtInProdRow Addv_ArtInProdRow(string Cliente, string Famiglia, string Particolare, string CodImpianto, System.DateTime InizioProd, System.DateTime FineProd, string CodStampo, string Figura, string FiguraIncisa) {
- v_ArtInProdRow rowv_ArtInProdRow = ((v_ArtInProdRow)(this.NewRow()));
- object[] columnValuesArray = new object[] {
- Cliente,
- Famiglia,
- Particolare,
- CodImpianto,
- InizioProd,
- FineProd,
- CodStampo,
- Figura,
- FiguraIncisa};
- rowv_ArtInProdRow.ItemArray = columnValuesArray;
- this.Rows.Add(rowv_ArtInProdRow);
- return rowv_ArtInProdRow;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public override global::System.Data.DataTable Clone() {
- v_ArtInProdDataTable cln = ((v_ArtInProdDataTable)(base.Clone()));
- cln.InitVars();
- return cln;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected override global::System.Data.DataTable CreateInstance() {
- return new v_ArtInProdDataTable();
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- internal void InitVars() {
- this.columnCliente = base.Columns["Cliente"];
- this.columnFamiglia = base.Columns["Famiglia"];
- this.columnParticolare = base.Columns["Particolare"];
- this.columnCodImpianto = base.Columns["CodImpianto"];
- this.columnInizioProd = base.Columns["InizioProd"];
- this.columnFineProd = base.Columns["FineProd"];
- this.columnCodStampo = base.Columns["CodStampo"];
- this.columnFigura = base.Columns["Figura"];
- this.columnFiguraIncisa = base.Columns["FiguraIncisa"];
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- private void InitClass() {
- this.columnCliente = new global::System.Data.DataColumn("Cliente", typeof(string), null, global::System.Data.MappingType.Element);
- base.Columns.Add(this.columnCliente);
- this.columnFamiglia = new global::System.Data.DataColumn("Famiglia", typeof(string), null, global::System.Data.MappingType.Element);
- base.Columns.Add(this.columnFamiglia);
- this.columnParticolare = new global::System.Data.DataColumn("Particolare", typeof(string), null, global::System.Data.MappingType.Element);
- base.Columns.Add(this.columnParticolare);
- this.columnCodImpianto = new global::System.Data.DataColumn("CodImpianto", typeof(string), null, global::System.Data.MappingType.Element);
- base.Columns.Add(this.columnCodImpianto);
- this.columnInizioProd = new global::System.Data.DataColumn("InizioProd", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
- base.Columns.Add(this.columnInizioProd);
- this.columnFineProd = new global::System.Data.DataColumn("FineProd", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
- base.Columns.Add(this.columnFineProd);
- this.columnCodStampo = new global::System.Data.DataColumn("CodStampo", typeof(string), null, global::System.Data.MappingType.Element);
- base.Columns.Add(this.columnCodStampo);
- this.columnFigura = new global::System.Data.DataColumn("Figura", typeof(string), null, global::System.Data.MappingType.Element);
- base.Columns.Add(this.columnFigura);
- this.columnFiguraIncisa = new global::System.Data.DataColumn("FiguraIncisa", typeof(string), null, global::System.Data.MappingType.Element);
- base.Columns.Add(this.columnFiguraIncisa);
- this.Constraints.Add(new global::System.Data.UniqueConstraint("v_ArtInProdKey1", new global::System.Data.DataColumn[] {
- this.columnParticolare,
- this.columnCodImpianto,
- this.columnInizioProd}, false));
- this.columnCliente.MaxLength = 50;
- this.columnFamiglia.MaxLength = 50;
- this.columnParticolare.AllowDBNull = false;
- this.columnParticolare.MaxLength = 50;
- this.columnCodImpianto.AllowDBNull = false;
- this.columnCodImpianto.MaxLength = 50;
- this.columnInizioProd.AllowDBNull = false;
- this.columnFineProd.ReadOnly = true;
- this.columnCodStampo.MaxLength = 50;
- this.columnFigura.MaxLength = 50;
- this.columnFiguraIncisa.MaxLength = 50;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public v_ArtInProdRow Newv_ArtInProdRow() {
- return ((v_ArtInProdRow)(this.NewRow()));
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
- return new v_ArtInProdRow(builder);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected override global::System.Type GetRowType() {
- return typeof(v_ArtInProdRow);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
- base.OnRowChanged(e);
- if ((this.v_ArtInProdRowChanged != null)) {
- this.v_ArtInProdRowChanged(this, new v_ArtInProdRowChangeEvent(((v_ArtInProdRow)(e.Row)), e.Action));
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
- base.OnRowChanging(e);
- if ((this.v_ArtInProdRowChanging != null)) {
- this.v_ArtInProdRowChanging(this, new v_ArtInProdRowChangeEvent(((v_ArtInProdRow)(e.Row)), e.Action));
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
- base.OnRowDeleted(e);
- if ((this.v_ArtInProdRowDeleted != null)) {
- this.v_ArtInProdRowDeleted(this, new v_ArtInProdRowChangeEvent(((v_ArtInProdRow)(e.Row)), e.Action));
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
- base.OnRowDeleting(e);
- if ((this.v_ArtInProdRowDeleting != null)) {
- this.v_ArtInProdRowDeleting(this, new v_ArtInProdRowChangeEvent(((v_ArtInProdRow)(e.Row)), e.Action));
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public void Removev_ArtInProdRow(v_ArtInProdRow row) {
- this.Rows.Remove(row);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
- global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
- global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
- DS_Applicazione ds = new DS_Applicazione();
- global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
- any1.Namespace = "http://www.w3.org/2001/XMLSchema";
- any1.MinOccurs = new decimal(0);
- any1.MaxOccurs = decimal.MaxValue;
- any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
- sequence.Items.Add(any1);
- global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
- any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
- any2.MinOccurs = new decimal(1);
- any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
- sequence.Items.Add(any2);
- global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
- attribute1.Name = "namespace";
- attribute1.FixedValue = ds.Namespace;
- type.Attributes.Add(attribute1);
- global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
- attribute2.Name = "tableTypeName";
- attribute2.FixedValue = "v_ArtInProdDataTable";
- type.Attributes.Add(attribute2);
- type.Particle = sequence;
- global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
- if (xs.Contains(dsSchema.TargetNamespace)) {
- global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
- global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
- try {
- global::System.Xml.Schema.XmlSchema schema = null;
- dsSchema.Write(s1);
- for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
- schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
- s2.SetLength(0);
- schema.Write(s2);
- if ((s1.Length == s2.Length)) {
- s1.Position = 0;
- s2.Position = 0;
- for (; ((s1.Position != s1.Length)
- && (s1.ReadByte() == s2.ReadByte())); ) {
- ;
- }
- if ((s1.Position == s1.Length)) {
- return type;
- }
- }
- }
- }
- finally {
- if ((s1 != null)) {
- s1.Close();
- }
- if ((s2 != null)) {
- s2.Close();
- }
- }
- }
- xs.Add(dsSchema);
- return type;
- }
- }
-
///
///Represents the strongly named DataTable class.
///
@@ -4766,6 +4424,489 @@ namespace GMW_data {
}
}
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class v_ArtInProdDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnCodImpianto;
+
+ private global::System.Data.DataColumn columnCodStampo;
+
+ private global::System.Data.DataColumn columnNumStampate;
+
+ private global::System.Data.DataColumn columnDataInizio;
+
+ private global::System.Data.DataColumn columnTurnoInizio;
+
+ private global::System.Data.DataColumn columnInizioValidita;
+
+ private global::System.Data.DataColumn columnFineValidita;
+
+ private global::System.Data.DataColumn columnNumFigure;
+
+ private global::System.Data.DataColumn columnCodCliente;
+
+ private global::System.Data.DataColumn columnRagSociale;
+
+ private global::System.Data.DataColumn columnCodArticolo;
+
+ private global::System.Data.DataColumn columnParticolare;
+
+ private global::System.Data.DataColumn columnDescParticolare;
+
+ private global::System.Data.DataColumn columnDisegnoGrezzo;
+
+ private global::System.Data.DataColumn columnCodFamiglia;
+
+ private global::System.Data.DataColumn columnDescFamiglia;
+
+ private global::System.Data.DataColumn columnFigura;
+
+ private global::System.Data.DataColumn columnEsponente;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public v_ArtInProdDataTable() {
+ this.TableName = "v_ArtInProd";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ internal v_ArtInProdDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected v_ArtInProdDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn CodImpiantoColumn {
+ get {
+ return this.columnCodImpianto;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn CodStampoColumn {
+ get {
+ return this.columnCodStampo;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn NumStampateColumn {
+ get {
+ return this.columnNumStampate;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn DataInizioColumn {
+ get {
+ return this.columnDataInizio;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn TurnoInizioColumn {
+ get {
+ return this.columnTurnoInizio;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn InizioValiditaColumn {
+ get {
+ return this.columnInizioValidita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn FineValiditaColumn {
+ get {
+ return this.columnFineValidita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn NumFigureColumn {
+ get {
+ return this.columnNumFigure;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn CodClienteColumn {
+ get {
+ return this.columnCodCliente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn RagSocialeColumn {
+ get {
+ return this.columnRagSociale;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn CodArticoloColumn {
+ get {
+ return this.columnCodArticolo;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn ParticolareColumn {
+ get {
+ return this.columnParticolare;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn DescParticolareColumn {
+ get {
+ return this.columnDescParticolare;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn DisegnoGrezzoColumn {
+ get {
+ return this.columnDisegnoGrezzo;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn CodFamigliaColumn {
+ get {
+ return this.columnCodFamiglia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn DescFamigliaColumn {
+ get {
+ return this.columnDescFamiglia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn FiguraColumn {
+ get {
+ return this.columnFigura;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataColumn EsponenteColumn {
+ get {
+ return this.columnEsponente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public v_ArtInProdRow this[int index] {
+ get {
+ return ((v_ArtInProdRow)(this.Rows[index]));
+ }
+ }
+
+ public event v_ArtInProdRowChangeEventHandler v_ArtInProdRowChanging;
+
+ public event v_ArtInProdRowChangeEventHandler v_ArtInProdRowChanged;
+
+ public event v_ArtInProdRowChangeEventHandler v_ArtInProdRowDeleting;
+
+ public event v_ArtInProdRowChangeEventHandler v_ArtInProdRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void Addv_ArtInProdRow(v_ArtInProdRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public v_ArtInProdRow Addv_ArtInProdRow(
+ string CodImpianto,
+ string CodStampo,
+ decimal NumStampate,
+ System.DateTime DataInizio,
+ string TurnoInizio,
+ System.DateTime InizioValidita,
+ System.DateTime FineValidita,
+ decimal NumFigure,
+ string CodCliente,
+ string RagSociale,
+ string CodArticolo,
+ string Particolare,
+ string DescParticolare,
+ string DisegnoGrezzo,
+ string CodFamiglia,
+ string DescFamiglia,
+ string Figura,
+ string Esponente) {
+ v_ArtInProdRow rowv_ArtInProdRow = ((v_ArtInProdRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ CodImpianto,
+ CodStampo,
+ NumStampate,
+ DataInizio,
+ TurnoInizio,
+ InizioValidita,
+ FineValidita,
+ NumFigure,
+ CodCliente,
+ RagSociale,
+ CodArticolo,
+ Particolare,
+ DescParticolare,
+ DisegnoGrezzo,
+ CodFamiglia,
+ DescFamiglia,
+ Figura,
+ Esponente};
+ rowv_ArtInProdRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowv_ArtInProdRow);
+ return rowv_ArtInProdRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public override global::System.Data.DataTable Clone() {
+ v_ArtInProdDataTable cln = ((v_ArtInProdDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new v_ArtInProdDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ internal void InitVars() {
+ this.columnCodImpianto = base.Columns["CodImpianto"];
+ this.columnCodStampo = base.Columns["CodStampo"];
+ this.columnNumStampate = base.Columns["NumStampate"];
+ this.columnDataInizio = base.Columns["DataInizio"];
+ this.columnTurnoInizio = base.Columns["TurnoInizio"];
+ this.columnInizioValidita = base.Columns["InizioValidita"];
+ this.columnFineValidita = base.Columns["FineValidita"];
+ this.columnNumFigure = base.Columns["NumFigure"];
+ this.columnCodCliente = base.Columns["CodCliente"];
+ this.columnRagSociale = base.Columns["RagSociale"];
+ this.columnCodArticolo = base.Columns["CodArticolo"];
+ this.columnParticolare = base.Columns["Particolare"];
+ this.columnDescParticolare = base.Columns["DescParticolare"];
+ this.columnDisegnoGrezzo = base.Columns["DisegnoGrezzo"];
+ this.columnCodFamiglia = base.Columns["CodFamiglia"];
+ this.columnDescFamiglia = base.Columns["DescFamiglia"];
+ this.columnFigura = base.Columns["Figura"];
+ this.columnEsponente = base.Columns["Esponente"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ private void InitClass() {
+ this.columnCodImpianto = new global::System.Data.DataColumn("CodImpianto", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCodImpianto);
+ this.columnCodStampo = new global::System.Data.DataColumn("CodStampo", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCodStampo);
+ this.columnNumStampate = new global::System.Data.DataColumn("NumStampate", typeof(decimal), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNumStampate);
+ this.columnDataInizio = new global::System.Data.DataColumn("DataInizio", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataInizio);
+ this.columnTurnoInizio = new global::System.Data.DataColumn("TurnoInizio", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTurnoInizio);
+ this.columnInizioValidita = new global::System.Data.DataColumn("InizioValidita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnInizioValidita);
+ this.columnFineValidita = new global::System.Data.DataColumn("FineValidita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFineValidita);
+ this.columnNumFigure = new global::System.Data.DataColumn("NumFigure", typeof(decimal), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNumFigure);
+ this.columnCodCliente = new global::System.Data.DataColumn("CodCliente", typeof(string), null, global::System.Data.MappingType.Element);
+ 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.columnCodArticolo = new global::System.Data.DataColumn("CodArticolo", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCodArticolo);
+ this.columnParticolare = new global::System.Data.DataColumn("Particolare", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnParticolare);
+ this.columnDescParticolare = new global::System.Data.DataColumn("DescParticolare", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDescParticolare);
+ this.columnDisegnoGrezzo = new global::System.Data.DataColumn("DisegnoGrezzo", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDisegnoGrezzo);
+ this.columnCodFamiglia = new global::System.Data.DataColumn("CodFamiglia", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCodFamiglia);
+ this.columnDescFamiglia = new global::System.Data.DataColumn("DescFamiglia", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDescFamiglia);
+ this.columnFigura = new global::System.Data.DataColumn("Figura", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFigura);
+ this.columnEsponente = new global::System.Data.DataColumn("Esponente", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnEsponente);
+ this.columnCodImpianto.AllowDBNull = false;
+ this.columnCodImpianto.MaxLength = 50;
+ this.columnCodStampo.AllowDBNull = false;
+ this.columnCodStampo.MaxLength = 8;
+ this.columnNumStampate.AllowDBNull = false;
+ this.columnTurnoInizio.AllowDBNull = false;
+ this.columnTurnoInizio.MaxLength = 6;
+ this.columnInizioValidita.AllowDBNull = false;
+ this.columnCodCliente.ReadOnly = true;
+ this.columnCodCliente.MaxLength = 50;
+ this.columnRagSociale.MaxLength = 35;
+ this.columnCodArticolo.ReadOnly = true;
+ this.columnCodArticolo.MaxLength = 50;
+ this.columnParticolare.AllowDBNull = false;
+ this.columnParticolare.MaxLength = 15;
+ this.columnDescParticolare.MaxLength = 30;
+ this.columnDisegnoGrezzo.MaxLength = 30;
+ this.columnCodFamiglia.MaxLength = 4;
+ this.columnDescFamiglia.MaxLength = 100;
+ this.columnFigura.MaxLength = 4;
+ this.columnEsponente.MaxLength = 6;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public v_ArtInProdRow Newv_ArtInProdRow() {
+ return ((v_ArtInProdRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new v_ArtInProdRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected override global::System.Type GetRowType() {
+ return typeof(v_ArtInProdRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.v_ArtInProdRowChanged != null)) {
+ this.v_ArtInProdRowChanged(this, new v_ArtInProdRowChangeEvent(((v_ArtInProdRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.v_ArtInProdRowChanging != null)) {
+ this.v_ArtInProdRowChanging(this, new v_ArtInProdRowChangeEvent(((v_ArtInProdRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.v_ArtInProdRowDeleted != null)) {
+ this.v_ArtInProdRowDeleted(this, new v_ArtInProdRowChangeEvent(((v_ArtInProdRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.v_ArtInProdRowDeleting != null)) {
+ this.v_ArtInProdRowDeleting(this, new v_ArtInProdRowChangeEvent(((v_ArtInProdRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void Removev_ArtInProdRow(v_ArtInProdRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "v_ArtInProdDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
///
///Represents strongly named DataRow class.
///
@@ -5212,201 +5353,6 @@ namespace GMW_data {
}
}
- ///
- ///Represents strongly named DataRow class.
- ///
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
- public partial class v_ArtInProdRow : global::System.Data.DataRow {
-
- private v_ArtInProdDataTable tablev_ArtInProd;
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- internal v_ArtInProdRow(global::System.Data.DataRowBuilder rb) :
- base(rb) {
- this.tablev_ArtInProd = ((v_ArtInProdDataTable)(this.Table));
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public string Cliente {
- get {
- try {
- return ((string)(this[this.tablev_ArtInProd.ClienteColumn]));
- }
- catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Cliente\' in table \'v_ArtInProd\' is DBNull.", e);
- }
- }
- set {
- this[this.tablev_ArtInProd.ClienteColumn] = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public string Famiglia {
- get {
- try {
- return ((string)(this[this.tablev_ArtInProd.FamigliaColumn]));
- }
- catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Famiglia\' in table \'v_ArtInProd\' is DBNull.", e);
- }
- }
- set {
- this[this.tablev_ArtInProd.FamigliaColumn] = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public string Particolare {
- get {
- return ((string)(this[this.tablev_ArtInProd.ParticolareColumn]));
- }
- set {
- this[this.tablev_ArtInProd.ParticolareColumn] = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public string CodImpianto {
- get {
- return ((string)(this[this.tablev_ArtInProd.CodImpiantoColumn]));
- }
- set {
- this[this.tablev_ArtInProd.CodImpiantoColumn] = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public System.DateTime InizioProd {
- get {
- return ((global::System.DateTime)(this[this.tablev_ArtInProd.InizioProdColumn]));
- }
- set {
- this[this.tablev_ArtInProd.InizioProdColumn] = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public System.DateTime FineProd {
- get {
- try {
- return ((global::System.DateTime)(this[this.tablev_ArtInProd.FineProdColumn]));
- }
- catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'FineProd\' in table \'v_ArtInProd\' is DBNull.", e);
- }
- }
- set {
- this[this.tablev_ArtInProd.FineProdColumn] = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public string CodStampo {
- get {
- try {
- return ((string)(this[this.tablev_ArtInProd.CodStampoColumn]));
- }
- catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodStampo\' in table \'v_ArtInProd\' is DBNull.", e);
- }
- }
- set {
- this[this.tablev_ArtInProd.CodStampoColumn] = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public string Figura {
- get {
- try {
- return ((string)(this[this.tablev_ArtInProd.FiguraColumn]));
- }
- catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Figura\' in table \'v_ArtInProd\' is DBNull.", e);
- }
- }
- set {
- this[this.tablev_ArtInProd.FiguraColumn] = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public string FiguraIncisa {
- get {
- try {
- return ((string)(this[this.tablev_ArtInProd.FiguraIncisaColumn]));
- }
- catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'FiguraIncisa\' in table \'v_ArtInProd\' is DBNull.", e);
- }
- }
- set {
- this[this.tablev_ArtInProd.FiguraIncisaColumn] = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public bool IsClienteNull() {
- return this.IsNull(this.tablev_ArtInProd.ClienteColumn);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public void SetClienteNull() {
- this[this.tablev_ArtInProd.ClienteColumn] = global::System.Convert.DBNull;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public bool IsFamigliaNull() {
- return this.IsNull(this.tablev_ArtInProd.FamigliaColumn);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public void SetFamigliaNull() {
- this[this.tablev_ArtInProd.FamigliaColumn] = global::System.Convert.DBNull;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public bool IsFineProdNull() {
- return this.IsNull(this.tablev_ArtInProd.FineProdColumn);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public void SetFineProdNull() {
- this[this.tablev_ArtInProd.FineProdColumn] = global::System.Convert.DBNull;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public bool IsCodStampoNull() {
- return this.IsNull(this.tablev_ArtInProd.CodStampoColumn);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public void SetCodStampoNull() {
- this[this.tablev_ArtInProd.CodStampoColumn] = global::System.Convert.DBNull;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public bool IsFiguraNull() {
- return this.IsNull(this.tablev_ArtInProd.FiguraColumn);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public void SetFiguraNull() {
- this[this.tablev_ArtInProd.FiguraColumn] = global::System.Convert.DBNull;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public bool IsFiguraIncisaNull() {
- return this.IsNull(this.tablev_ArtInProd.FiguraIncisaColumn);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public void SetFiguraIncisaNull() {
- this[this.tablev_ArtInProd.FiguraIncisaColumn] = global::System.Convert.DBNull;
- }
- }
-
///
///Represents strongly named DataRow class.
///
@@ -6877,6 +6823,381 @@ namespace GMW_data {
}
}
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
+ public partial class v_ArtInProdRow : global::System.Data.DataRow {
+
+ private v_ArtInProdDataTable tablev_ArtInProd;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ internal v_ArtInProdRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tablev_ArtInProd = ((v_ArtInProdDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string CodImpianto {
+ get {
+ return ((string)(this[this.tablev_ArtInProd.CodImpiantoColumn]));
+ }
+ set {
+ this[this.tablev_ArtInProd.CodImpiantoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string CodStampo {
+ get {
+ return ((string)(this[this.tablev_ArtInProd.CodStampoColumn]));
+ }
+ set {
+ this[this.tablev_ArtInProd.CodStampoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public decimal NumStampate {
+ get {
+ return ((decimal)(this[this.tablev_ArtInProd.NumStampateColumn]));
+ }
+ set {
+ this[this.tablev_ArtInProd.NumStampateColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public System.DateTime DataInizio {
+ get {
+ try {
+ return ((global::System.DateTime)(this[this.tablev_ArtInProd.DataInizioColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'DataInizio\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.DataInizioColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string TurnoInizio {
+ get {
+ return ((string)(this[this.tablev_ArtInProd.TurnoInizioColumn]));
+ }
+ set {
+ this[this.tablev_ArtInProd.TurnoInizioColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public System.DateTime InizioValidita {
+ get {
+ return ((global::System.DateTime)(this[this.tablev_ArtInProd.InizioValiditaColumn]));
+ }
+ set {
+ this[this.tablev_ArtInProd.InizioValiditaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public System.DateTime FineValidita {
+ get {
+ try {
+ return ((global::System.DateTime)(this[this.tablev_ArtInProd.FineValiditaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FineValidita\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.FineValiditaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public decimal NumFigure {
+ get {
+ try {
+ return ((decimal)(this[this.tablev_ArtInProd.NumFigureColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'NumFigure\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.NumFigureColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string CodCliente {
+ get {
+ try {
+ return ((string)(this[this.tablev_ArtInProd.CodClienteColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'CodCliente\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.CodClienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string RagSociale {
+ get {
+ try {
+ return ((string)(this[this.tablev_ArtInProd.RagSocialeColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'RagSociale\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.RagSocialeColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string CodArticolo {
+ get {
+ try {
+ return ((string)(this[this.tablev_ArtInProd.CodArticoloColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'CodArticolo\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.CodArticoloColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string Particolare {
+ get {
+ return ((string)(this[this.tablev_ArtInProd.ParticolareColumn]));
+ }
+ set {
+ this[this.tablev_ArtInProd.ParticolareColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string DescParticolare {
+ get {
+ try {
+ return ((string)(this[this.tablev_ArtInProd.DescParticolareColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'DescParticolare\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.DescParticolareColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string DisegnoGrezzo {
+ get {
+ try {
+ return ((string)(this[this.tablev_ArtInProd.DisegnoGrezzoColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'DisegnoGrezzo\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.DisegnoGrezzoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string CodFamiglia {
+ get {
+ try {
+ return ((string)(this[this.tablev_ArtInProd.CodFamigliaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'CodFamiglia\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.CodFamigliaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string DescFamiglia {
+ get {
+ try {
+ return ((string)(this[this.tablev_ArtInProd.DescFamigliaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'DescFamiglia\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.DescFamigliaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string Figura {
+ get {
+ try {
+ return ((string)(this[this.tablev_ArtInProd.FiguraColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Figura\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.FiguraColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public string Esponente {
+ get {
+ try {
+ return ((string)(this[this.tablev_ArtInProd.EsponenteColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Esponente\' in table \'v_ArtInProd\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablev_ArtInProd.EsponenteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsDataInizioNull() {
+ return this.IsNull(this.tablev_ArtInProd.DataInizioColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetDataInizioNull() {
+ this[this.tablev_ArtInProd.DataInizioColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsFineValiditaNull() {
+ return this.IsNull(this.tablev_ArtInProd.FineValiditaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetFineValiditaNull() {
+ this[this.tablev_ArtInProd.FineValiditaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsNumFigureNull() {
+ return this.IsNull(this.tablev_ArtInProd.NumFigureColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetNumFigureNull() {
+ this[this.tablev_ArtInProd.NumFigureColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsCodClienteNull() {
+ return this.IsNull(this.tablev_ArtInProd.CodClienteColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetCodClienteNull() {
+ this[this.tablev_ArtInProd.CodClienteColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsRagSocialeNull() {
+ return this.IsNull(this.tablev_ArtInProd.RagSocialeColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetRagSocialeNull() {
+ this[this.tablev_ArtInProd.RagSocialeColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsCodArticoloNull() {
+ return this.IsNull(this.tablev_ArtInProd.CodArticoloColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetCodArticoloNull() {
+ this[this.tablev_ArtInProd.CodArticoloColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsDescParticolareNull() {
+ return this.IsNull(this.tablev_ArtInProd.DescParticolareColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetDescParticolareNull() {
+ this[this.tablev_ArtInProd.DescParticolareColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsDisegnoGrezzoNull() {
+ return this.IsNull(this.tablev_ArtInProd.DisegnoGrezzoColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetDisegnoGrezzoNull() {
+ this[this.tablev_ArtInProd.DisegnoGrezzoColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsCodFamigliaNull() {
+ return this.IsNull(this.tablev_ArtInProd.CodFamigliaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetCodFamigliaNull() {
+ this[this.tablev_ArtInProd.CodFamigliaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsDescFamigliaNull() {
+ return this.IsNull(this.tablev_ArtInProd.DescFamigliaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetDescFamigliaNull() {
+ this[this.tablev_ArtInProd.DescFamigliaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsFiguraNull() {
+ return this.IsNull(this.tablev_ArtInProd.FiguraColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetFiguraNull() {
+ this[this.tablev_ArtInProd.FiguraColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool IsEsponenteNull() {
+ return this.IsNull(this.tablev_ArtInProd.EsponenteColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public void SetEsponenteNull() {
+ this[this.tablev_ArtInProd.EsponenteColumn] = global::System.Convert.DBNull;
+ }
+ }
+
///
///Row event argument class
///
@@ -7032,37 +7353,6 @@ namespace GMW_data {
}
}
- ///
- ///Row event argument class
- ///
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
- public class v_ArtInProdRowChangeEvent : global::System.EventArgs {
-
- private v_ArtInProdRow eventRow;
-
- private global::System.Data.DataRowAction eventAction;
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public v_ArtInProdRowChangeEvent(v_ArtInProdRow row, global::System.Data.DataRowAction action) {
- this.eventRow = row;
- this.eventAction = action;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public v_ArtInProdRow Row {
- get {
- return this.eventRow;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public global::System.Data.DataRowAction Action {
- get {
- return this.eventAction;
- }
- }
- }
-
///
///Row event argument class
///
@@ -7279,6 +7569,37 @@ namespace GMW_data {
}
}
}
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
+ public class v_ArtInProdRowChangeEvent : global::System.EventArgs {
+
+ private v_ArtInProdRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public v_ArtInProdRowChangeEvent(v_ArtInProdRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public v_ArtInProdRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
}
}
namespace GMW_data.DS_ApplicazioneTableAdapters {
@@ -9178,201 +9499,6 @@ SELECT CodImpianto, Particolare, InizioProd, FineProd, CodStampo, Figura, Figura
}
}
- ///
- ///Represents the connection and commands used to retrieve and save data.
- ///
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
- [global::System.ComponentModel.DesignerCategoryAttribute("code")]
- [global::System.ComponentModel.ToolboxItem(true)]
- [global::System.ComponentModel.DataObjectAttribute(true)]
- [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
- ", Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
- [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
- public partial class v_ArtInProdTableAdapter : global::System.ComponentModel.Component {
-
- private global::System.Data.SqlClient.SqlDataAdapter _adapter;
-
- private global::System.Data.SqlClient.SqlConnection _connection;
-
- private global::System.Data.SqlClient.SqlTransaction _transaction;
-
- private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
-
- private bool _clearBeforeFill;
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public v_ArtInProdTableAdapter() {
- this.ClearBeforeFill = true;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
- get {
- if ((this._adapter == null)) {
- this.InitAdapter();
- }
- return this._adapter;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- internal global::System.Data.SqlClient.SqlConnection Connection {
- get {
- if ((this._connection == null)) {
- this.InitConnection();
- }
- return this._connection;
- }
- set {
- this._connection = value;
- if ((this.Adapter.InsertCommand != null)) {
- this.Adapter.InsertCommand.Connection = value;
- }
- if ((this.Adapter.DeleteCommand != null)) {
- this.Adapter.DeleteCommand.Connection = value;
- }
- if ((this.Adapter.UpdateCommand != null)) {
- this.Adapter.UpdateCommand.Connection = value;
- }
- for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
- if ((this.CommandCollection[i] != null)) {
- ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
- }
- }
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- internal global::System.Data.SqlClient.SqlTransaction Transaction {
- get {
- return this._transaction;
- }
- set {
- this._transaction = value;
- for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
- this.CommandCollection[i].Transaction = this._transaction;
- }
- if (((this.Adapter != null)
- && (this.Adapter.DeleteCommand != null))) {
- this.Adapter.DeleteCommand.Transaction = this._transaction;
- }
- if (((this.Adapter != null)
- && (this.Adapter.InsertCommand != null))) {
- this.Adapter.InsertCommand.Transaction = this._transaction;
- }
- if (((this.Adapter != null)
- && (this.Adapter.UpdateCommand != null))) {
- this.Adapter.UpdateCommand.Transaction = this._transaction;
- }
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
- get {
- if ((this._commandCollection == null)) {
- this.InitCommandCollection();
- }
- return this._commandCollection;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- public bool ClearBeforeFill {
- get {
- return this._clearBeforeFill;
- }
- set {
- this._clearBeforeFill = value;
- }
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- private void InitAdapter() {
- this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
- global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
- tableMapping.SourceTable = "Table";
- tableMapping.DataSetTable = "v_ArtInProd";
- tableMapping.ColumnMappings.Add("Cliente", "Cliente");
- tableMapping.ColumnMappings.Add("Famiglia", "Famiglia");
- tableMapping.ColumnMappings.Add("Particolare", "Particolare");
- tableMapping.ColumnMappings.Add("CodImpianto", "CodImpianto");
- tableMapping.ColumnMappings.Add("InizioProd", "InizioProd");
- tableMapping.ColumnMappings.Add("FineProd", "FineProd");
- tableMapping.ColumnMappings.Add("CodStampo", "CodStampo");
- tableMapping.ColumnMappings.Add("Figura", "Figura");
- tableMapping.ColumnMappings.Add("FiguraIncisa", "FiguraIncisa");
- this._adapter.TableMappings.Add(tableMapping);
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- private void InitConnection() {
- this._connection = new global::System.Data.SqlClient.SqlConnection();
- this._connection.ConnectionString = global::GMW_data.Properties.Settings.Default.GMWConnectionString;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- private void InitCommandCollection() {
- 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 Cliente, Famiglia, Particolare, CodImpianto, InizioProd, FineProd, CodStam" +
- "po, Figura, FiguraIncisa FROM dbo.v_ArtInProd";
- this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
- this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
- this._commandCollection[1].Connection = this.Connection;
- this._commandCollection[1].CommandText = "dbo.stp_ArtiInProd_ByImpData";
- this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
- this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
- this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodImpianto", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
- this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataRif", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
- [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
- public virtual int Fill(DS_Applicazione.v_ArtInProdDataTable dataTable) {
- this.Adapter.SelectCommand = this.CommandCollection[0];
- if ((this.ClearBeforeFill == true)) {
- dataTable.Clear();
- }
- int returnValue = this.Adapter.Fill(dataTable);
- return returnValue;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
- [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
- public virtual DS_Applicazione.v_ArtInProdDataTable GetData() {
- this.Adapter.SelectCommand = this.CommandCollection[0];
- DS_Applicazione.v_ArtInProdDataTable dataTable = new DS_Applicazione.v_ArtInProdDataTable();
- this.Adapter.Fill(dataTable);
- return dataTable;
- }
-
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
- [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
- public virtual DS_Applicazione.v_ArtInProdDataTable stp_byImpData(string CodImpianto, global::System.Nullable DataRif) {
- this.Adapter.SelectCommand = this.CommandCollection[1];
- if ((CodImpianto == null)) {
- this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
- }
- else {
- this.Adapter.SelectCommand.Parameters[1].Value = ((string)(CodImpianto));
- }
- if ((DataRif.HasValue == true)) {
- this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataRif.Value));
- }
- else {
- this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
- }
- DS_Applicazione.v_ArtInProdDataTable dataTable = new DS_Applicazione.v_ArtInProdDataTable();
- this.Adapter.Fill(dataTable);
- return dataTable;
- }
- }
-
///
///Represents the connection and commands used to retrieve and save data.
///
@@ -13979,6 +14105,209 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
}
}
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class v_ArtInProdTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public v_ArtInProdTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "v_ArtInProd";
+ tableMapping.ColumnMappings.Add("CodImpianto", "CodImpianto");
+ tableMapping.ColumnMappings.Add("CodStampo", "CodStampo");
+ tableMapping.ColumnMappings.Add("NumStampate", "NumStampate");
+ tableMapping.ColumnMappings.Add("DataInizio", "DataInizio");
+ tableMapping.ColumnMappings.Add("TurnoInizio", "TurnoInizio");
+ tableMapping.ColumnMappings.Add("InizioValidita", "InizioValidita");
+ tableMapping.ColumnMappings.Add("FineValidita", "FineValidita");
+ tableMapping.ColumnMappings.Add("NumFigure", "NumFigure");
+ tableMapping.ColumnMappings.Add("CodCliente", "CodCliente");
+ tableMapping.ColumnMappings.Add("RagSociale", "RagSociale");
+ tableMapping.ColumnMappings.Add("CodArticolo", "CodArticolo");
+ tableMapping.ColumnMappings.Add("Particolare", "Particolare");
+ tableMapping.ColumnMappings.Add("DescParticolare", "DescParticolare");
+ tableMapping.ColumnMappings.Add("DisegnoGrezzo", "DisegnoGrezzo");
+ tableMapping.ColumnMappings.Add("CodFamiglia", "CodFamiglia");
+ tableMapping.ColumnMappings.Add("DescFamiglia", "DescFamiglia");
+ tableMapping.ColumnMappings.Add("Figura", "Figura");
+ tableMapping.ColumnMappings.Add("Esponente", "Esponente");
+ this._adapter.TableMappings.Add(tableMapping);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::GMW_data.Properties.Settings.Default.GMWConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ private void InitCommandCollection() {
+ 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 CodImpianto, CodStampo, NumStampate, DataInizio, TurnoInizio, InizioValidita, FineValidita, NumFigure, CodCliente, RagSociale, CodArticolo, Particolare, DescParticolare, DisegnoGrezzo, CodFamiglia, DescFamiglia, Figura, Esponente FROM dbo.v_ArtInProd";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
+ this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[1].Connection = this.Connection;
+ this._commandCollection[1].CommandText = "dbo.stp_ArtiInProd_ByImpData";
+ this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodImpianto", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataRif", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.v_ArtInProdDataTable dataTable) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.v_ArtInProdDataTable GetData() {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ DS_Applicazione.v_ArtInProdDataTable dataTable = new DS_Applicazione.v_ArtInProdDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.v_ArtInProdDataTable stp_byImpData(string CodImpianto, global::System.Nullable DataRif) {
+ this.Adapter.SelectCommand = this.CommandCollection[1];
+ if ((CodImpianto == null)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((string)(CodImpianto));
+ }
+ if ((DataRif.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataRif.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.v_ArtInProdDataTable dataTable = new DS_Applicazione.v_ArtInProdDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+ }
+
///
///TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
///
@@ -14318,6 +14647,15 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allChangedRows.AddRange(updatedRows);
}
}
+ if ((this._anagArticoliTableAdapter != null)) {
+ global::System.Data.DataRow[] updatedRows = dataSet.AnagArticoli.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
+ updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
+ if (((updatedRows != null)
+ && (0 < updatedRows.Length))) {
+ result = (result + this._anagArticoliTableAdapter.Update(updatedRows));
+ allChangedRows.AddRange(updatedRows);
+ }
+ }
if ((this._anagImpiantiTableAdapter != null)) {
global::System.Data.DataRow[] updatedRows = dataSet.AnagImpianti.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
@@ -14327,6 +14665,15 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allChangedRows.AddRange(updatedRows);
}
}
+ if ((this._anagTipoDichiarazTableAdapter != null)) {
+ global::System.Data.DataRow[] updatedRows = dataSet.AnagTipoDichiaraz.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
+ updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
+ if (((updatedRows != null)
+ && (0 < updatedRows.Length))) {
+ result = (result + this._anagTipoDichiarazTableAdapter.Update(updatedRows));
+ allChangedRows.AddRange(updatedRows);
+ }
+ }
if ((this._anagStatiProdottoTableAdapter != null)) {
global::System.Data.DataRow[] updatedRows = dataSet.AnagStatiProdotto.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
@@ -14336,21 +14683,12 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allChangedRows.AddRange(updatedRows);
}
}
- if ((this._anagArticoliTableAdapter != null)) {
- global::System.Data.DataRow[] updatedRows = dataSet.AnagArticoli.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
+ if ((this._anagBilanceTableAdapter != null)) {
+ global::System.Data.DataRow[] updatedRows = dataSet.AnagBilance.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
if (((updatedRows != null)
&& (0 < updatedRows.Length))) {
- result = (result + this._anagArticoliTableAdapter.Update(updatedRows));
- allChangedRows.AddRange(updatedRows);
- }
- }
- if ((this._anagTipoDichiarazTableAdapter != null)) {
- global::System.Data.DataRow[] updatedRows = dataSet.AnagTipoDichiaraz.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
- updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
- if (((updatedRows != null)
- && (0 < updatedRows.Length))) {
- result = (result + this._anagTipoDichiarazTableAdapter.Update(updatedRows));
+ result = (result + this._anagBilanceTableAdapter.Update(updatedRows));
allChangedRows.AddRange(updatedRows);
}
}
@@ -14372,15 +14710,6 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allChangedRows.AddRange(updatedRows);
}
}
- if ((this._anagBilanceTableAdapter != null)) {
- global::System.Data.DataRow[] updatedRows = dataSet.AnagBilance.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
- updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
- if (((updatedRows != null)
- && (0 < updatedRows.Length))) {
- result = (result + this._anagBilanceTableAdapter.Update(updatedRows));
- allChangedRows.AddRange(updatedRows);
- }
- }
if ((this._impianti2ArticoliTableAdapter != null)) {
global::System.Data.DataRow[] updatedRows = dataSet.Impianti2Articoli.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
@@ -14434,6 +14763,14 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allAddedRows.AddRange(addedRows);
}
}
+ if ((this._anagArticoliTableAdapter != null)) {
+ global::System.Data.DataRow[] addedRows = dataSet.AnagArticoli.Select(null, null, global::System.Data.DataViewRowState.Added);
+ if (((addedRows != null)
+ && (0 < addedRows.Length))) {
+ result = (result + this._anagArticoliTableAdapter.Update(addedRows));
+ allAddedRows.AddRange(addedRows);
+ }
+ }
if ((this._anagImpiantiTableAdapter != null)) {
global::System.Data.DataRow[] addedRows = dataSet.AnagImpianti.Select(null, null, global::System.Data.DataViewRowState.Added);
if (((addedRows != null)
@@ -14442,6 +14779,14 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allAddedRows.AddRange(addedRows);
}
}
+ if ((this._anagTipoDichiarazTableAdapter != null)) {
+ global::System.Data.DataRow[] addedRows = dataSet.AnagTipoDichiaraz.Select(null, null, global::System.Data.DataViewRowState.Added);
+ if (((addedRows != null)
+ && (0 < addedRows.Length))) {
+ result = (result + this._anagTipoDichiarazTableAdapter.Update(addedRows));
+ allAddedRows.AddRange(addedRows);
+ }
+ }
if ((this._anagStatiProdottoTableAdapter != null)) {
global::System.Data.DataRow[] addedRows = dataSet.AnagStatiProdotto.Select(null, null, global::System.Data.DataViewRowState.Added);
if (((addedRows != null)
@@ -14450,19 +14795,11 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allAddedRows.AddRange(addedRows);
}
}
- if ((this._anagArticoliTableAdapter != null)) {
- global::System.Data.DataRow[] addedRows = dataSet.AnagArticoli.Select(null, null, global::System.Data.DataViewRowState.Added);
+ if ((this._anagBilanceTableAdapter != null)) {
+ global::System.Data.DataRow[] addedRows = dataSet.AnagBilance.Select(null, null, global::System.Data.DataViewRowState.Added);
if (((addedRows != null)
&& (0 < addedRows.Length))) {
- result = (result + this._anagArticoliTableAdapter.Update(addedRows));
- allAddedRows.AddRange(addedRows);
- }
- }
- if ((this._anagTipoDichiarazTableAdapter != null)) {
- global::System.Data.DataRow[] addedRows = dataSet.AnagTipoDichiaraz.Select(null, null, global::System.Data.DataViewRowState.Added);
- if (((addedRows != null)
- && (0 < addedRows.Length))) {
- result = (result + this._anagTipoDichiarazTableAdapter.Update(addedRows));
+ result = (result + this._anagBilanceTableAdapter.Update(addedRows));
allAddedRows.AddRange(addedRows);
}
}
@@ -14482,14 +14819,6 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allAddedRows.AddRange(addedRows);
}
}
- if ((this._anagBilanceTableAdapter != null)) {
- global::System.Data.DataRow[] addedRows = dataSet.AnagBilance.Select(null, null, global::System.Data.DataViewRowState.Added);
- if (((addedRows != null)
- && (0 < addedRows.Length))) {
- result = (result + this._anagBilanceTableAdapter.Update(addedRows));
- allAddedRows.AddRange(addedRows);
- }
- }
if ((this._impianti2ArticoliTableAdapter != null)) {
global::System.Data.DataRow[] addedRows = dataSet.Impianti2Articoli.Select(null, null, global::System.Data.DataViewRowState.Added);
if (((addedRows != null)
@@ -14563,14 +14892,6 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allChangedRows.AddRange(deletedRows);
}
}
- if ((this._anagBilanceTableAdapter != null)) {
- global::System.Data.DataRow[] deletedRows = dataSet.AnagBilance.Select(null, null, global::System.Data.DataViewRowState.Deleted);
- if (((deletedRows != null)
- && (0 < deletedRows.Length))) {
- result = (result + this._anagBilanceTableAdapter.Update(deletedRows));
- allChangedRows.AddRange(deletedRows);
- }
- }
if ((this._elencoCartelliniTableAdapter != null)) {
global::System.Data.DataRow[] deletedRows = dataSet.ElencoCartellini.Select(null, null, global::System.Data.DataViewRowState.Deleted);
if (((deletedRows != null)
@@ -14587,19 +14908,11 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allChangedRows.AddRange(deletedRows);
}
}
- if ((this._anagTipoDichiarazTableAdapter != null)) {
- global::System.Data.DataRow[] deletedRows = dataSet.AnagTipoDichiaraz.Select(null, null, global::System.Data.DataViewRowState.Deleted);
+ if ((this._anagBilanceTableAdapter != null)) {
+ global::System.Data.DataRow[] deletedRows = dataSet.AnagBilance.Select(null, null, global::System.Data.DataViewRowState.Deleted);
if (((deletedRows != null)
&& (0 < deletedRows.Length))) {
- result = (result + this._anagTipoDichiarazTableAdapter.Update(deletedRows));
- allChangedRows.AddRange(deletedRows);
- }
- }
- if ((this._anagArticoliTableAdapter != null)) {
- global::System.Data.DataRow[] deletedRows = dataSet.AnagArticoli.Select(null, null, global::System.Data.DataViewRowState.Deleted);
- if (((deletedRows != null)
- && (0 < deletedRows.Length))) {
- result = (result + this._anagArticoliTableAdapter.Update(deletedRows));
+ result = (result + this._anagBilanceTableAdapter.Update(deletedRows));
allChangedRows.AddRange(deletedRows);
}
}
@@ -14611,6 +14924,14 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allChangedRows.AddRange(deletedRows);
}
}
+ if ((this._anagTipoDichiarazTableAdapter != null)) {
+ global::System.Data.DataRow[] deletedRows = dataSet.AnagTipoDichiaraz.Select(null, null, global::System.Data.DataViewRowState.Deleted);
+ if (((deletedRows != null)
+ && (0 < deletedRows.Length))) {
+ result = (result + this._anagTipoDichiarazTableAdapter.Update(deletedRows));
+ allChangedRows.AddRange(deletedRows);
+ }
+ }
if ((this._anagImpiantiTableAdapter != null)) {
global::System.Data.DataRow[] deletedRows = dataSet.AnagImpianti.Select(null, null, global::System.Data.DataViewRowState.Deleted);
if (((deletedRows != null)
@@ -14619,6 +14940,14 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
allChangedRows.AddRange(deletedRows);
}
}
+ if ((this._anagArticoliTableAdapter != null)) {
+ global::System.Data.DataRow[] deletedRows = dataSet.AnagArticoli.Select(null, null, global::System.Data.DataViewRowState.Deleted);
+ if (((deletedRows != null)
+ && (0 < deletedRows.Length))) {
+ result = (result + this._anagArticoliTableAdapter.Update(deletedRows));
+ allChangedRows.AddRange(deletedRows);
+ }
+ }
if ((this._anagCompanySitoTableAdapter != null)) {
global::System.Data.DataRow[] deletedRows = dataSet.AnagCompanySito.Select(null, null, global::System.Data.DataViewRowState.Deleted);
if (((deletedRows != null)
diff --git a/GMW/GMW_data/DS_Applicazione.xsd b/GMW/GMW_data/DS_Applicazione.xsd
index 3b9a8bd7..bebb7597 100644
--- a/GMW/GMW_data/DS_Applicazione.xsd
+++ b/GMW/GMW_data/DS_Applicazione.xsd
@@ -327,43 +327,6 @@ SELECT CodImpianto, Particolare, InizioProd, FineProd, CodStampo, Figura, Figura
-
-
-
-
-
- SELECT Cliente, Famiglia, Particolare, CodImpianto, InizioProd, FineProd, CodStampo, Figura, FiguraIncisa FROM dbo.v_ArtInProd
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- dbo.stp_ArtiInProd_ByImpData
-
-
-
-
-
-
-
-
-
-
@@ -1174,6 +1137,52 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
+
+
+
+
+
+ SELECT CodImpianto, CodStampo, NumStampate, DataInizio, TurnoInizio, InizioValidita, FineValidita, NumFigure, CodCliente, RagSociale, CodArticolo, Particolare, DescParticolare, DisegnoGrezzo, CodFamiglia, DescFamiglia, Figura, Esponente FROM dbo.v_ArtInProd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ dbo.stp_ArtiInProd_ByImpData
+
+
+
+
+
+
+
+
+
+
@@ -1313,63 +1322,6 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -1735,6 +1687,108 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1759,12 +1813,6 @@ SELECT CodImballo, ClasseArticolo, DescImballo FROM RilPro.AnagImballi WHERE (Co
-
-
-
-
-
-
diff --git a/GMW/GMW_data/DS_Applicazione.xss b/GMW/GMW_data/DS_Applicazione.xss
index 07cea6a5..a194e484 100644
--- a/GMW/GMW_data/DS_Applicazione.xss
+++ b/GMW/GMW_data/DS_Applicazione.xss
@@ -4,21 +4,21 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
-->
-
+
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -33,23 +33,19 @@
-
+
- 1185
- 811
+ 947
+ 769
- 1185
- 850
-
-
- 1076
- 850
+ 947
+ 777
-
+
853
@@ -61,7 +57,7 @@
-
+
1156
@@ -73,7 +69,7 @@
-
+
1173
@@ -89,7 +85,7 @@
-
+
336
diff --git a/GMW/GMW_data/bin/Debug/GMW_data.dll b/GMW/GMW_data/bin/Debug/GMW_data.dll
index 01d44050..86f67023 100644
Binary files a/GMW/GMW_data/bin/Debug/GMW_data.dll and b/GMW/GMW_data/bin/Debug/GMW_data.dll differ
diff --git a/GMW/GMW_data/bin/Release/GMW_data.dll b/GMW/GMW_data/bin/Release/GMW_data.dll
index 54dc0a4f..c88dbea2 100644
Binary files a/GMW/GMW_data/bin/Release/GMW_data.dll and b/GMW/GMW_data/bin/Release/GMW_data.dll differ
diff --git a/GMW/GMW_data/obj/Debug/GMW_data.dll b/GMW/GMW_data/obj/Debug/GMW_data.dll
index 01d44050..86f67023 100644
Binary files a/GMW/GMW_data/obj/Debug/GMW_data.dll and b/GMW/GMW_data/obj/Debug/GMW_data.dll differ
diff --git a/GMW/GMW_data/obj/Debug/TempPE/DS_Applicazione.Designer.cs.dll b/GMW/GMW_data/obj/Debug/TempPE/DS_Applicazione.Designer.cs.dll
index 4f10610b..0439b8b5 100644
Binary files a/GMW/GMW_data/obj/Debug/TempPE/DS_Applicazione.Designer.cs.dll and b/GMW/GMW_data/obj/Debug/TempPE/DS_Applicazione.Designer.cs.dll differ
diff --git a/GMW/GMW_data/obj/Release/GMW_data.dll b/GMW/GMW_data/obj/Release/GMW_data.dll
index 54dc0a4f..c88dbea2 100644
Binary files a/GMW/GMW_data/obj/Release/GMW_data.dll and b/GMW/GMW_data/obj/Release/GMW_data.dll differ
diff --git a/GMW/GMW_data/obj/Release/TempPE/DS_Applicazione.Designer.cs.dll b/GMW/GMW_data/obj/Release/TempPE/DS_Applicazione.Designer.cs.dll
index 8db95ede..6355c002 100644
Binary files a/GMW/GMW_data/obj/Release/TempPE/DS_Applicazione.Designer.cs.dll and b/GMW/GMW_data/obj/Release/TempPE/DS_Applicazione.Designer.cs.dll differ
diff --git a/GMW/GMW_deploy/Release/bin/GMW.dll b/GMW/GMW_deploy/Release/bin/GMW.dll
index 75d0464e..147d8bd8 100644
Binary files a/GMW/GMW_deploy/Release/bin/GMW.dll and b/GMW/GMW_deploy/Release/bin/GMW.dll differ
diff --git a/GMW/GMW_deploy/Release/bin/GMW_data.dll b/GMW/GMW_deploy/Release/bin/GMW_data.dll
index 54dc0a4f..c88dbea2 100644
Binary files a/GMW/GMW_deploy/Release/bin/GMW_data.dll and b/GMW/GMW_deploy/Release/bin/GMW_data.dll differ
diff --git a/GMW/GMW_deploy/Release/obj/Debug/GMW.dll b/GMW/GMW_deploy/Release/obj/Debug/GMW.dll
index 402f4411..0356dddd 100644
Binary files a/GMW/GMW_deploy/Release/obj/Debug/GMW.dll and b/GMW/GMW_deploy/Release/obj/Debug/GMW.dll differ
diff --git a/GMW/GMW_deploy/Release/obj/Debug/ResolveAssemblyReference.cache b/GMW/GMW_deploy/Release/obj/Debug/ResolveAssemblyReference.cache
index e0759345..6214e8bd 100644
Binary files a/GMW/GMW_deploy/Release/obj/Debug/ResolveAssemblyReference.cache and b/GMW/GMW_deploy/Release/obj/Debug/ResolveAssemblyReference.cache differ
diff --git a/GMW/GMW_deploy/Release/obj/Release/GMW.dll b/GMW/GMW_deploy/Release/obj/Release/GMW.dll
index 75d0464e..147d8bd8 100644
Binary files a/GMW/GMW_deploy/Release/obj/Release/GMW.dll and b/GMW/GMW_deploy/Release/obj/Release/GMW.dll differ
diff --git a/GMW/GMW_deploy/Release/obj/Release/ResolveAssemblyReference.cache b/GMW/GMW_deploy/Release/obj/Release/ResolveAssemblyReference.cache
index 079a38a7..7f8e5731 100644
Binary files a/GMW/GMW_deploy/Release/obj/Release/ResolveAssemblyReference.cache and b/GMW/GMW_deploy/Release/obj/Release/ResolveAssemblyReference.cache differ
diff --git a/GMW/GMW_deploy/Source/Type/ArtInProd.cs b/GMW/GMW_deploy/Source/Type/ArtInProd.cs
index 5017de07..cac525e9 100644
--- a/GMW/GMW_deploy/Source/Type/ArtInProd.cs
+++ b/GMW/GMW_deploy/Source/Type/ArtInProd.cs
@@ -13,24 +13,24 @@ namespace GMW.Type
}
public ArtInProd(DS_Applicazione.v_ArtInProdRow riga)
{
- //RIFARE!!!!
CodImpianto = riga.CodImpianto;
- Particolare = riga.Particolare;
- DescrParticolare = riga.Particolare;
- Cliente = riga.Cliente;
- Articolo= riga.Particolare;
CodStampo = riga.CodStampo;
- Disegno = "ND";
- Esponente= "ND";
- Famiglia = riga.Famiglia;
- InizioProd = riga.InizioProd;
- FineProd = riga.FineProd;
+ NumStampate = riga.NumStampate;
+ DataInizio = riga.DataInizio;
+ TurnoInizio = riga.TurnoInizio;
+ InizioValid = riga.InizioValidita;
+ FineValid = riga.FineValidita;
+ NumFigure = riga.NumFigure;
+ CodCliente = riga.CodCliente;
+ RagSociale = riga.RagSociale;
+ CodArticolo = riga.CodArticolo;
+ Particolare = riga.Particolare;
+ DescParticolare = riga.DescParticolare;
+ DisegnoGrezzo = riga.DisegnoGrezzo;
+ CodFamiglia = riga.CodFamiglia;
+ DescFamiglia = riga.DescFamiglia;
Figura = riga.Figura;
- Fig1 = riga.FiguraIncisa;
- Fig2 = riga.FiguraIncisa;
- Fig3 = riga.FiguraIncisa;
- Fig4 = riga.FiguraIncisa;
- Lotto= "ND";
+ Esponente = riga.Esponente;
}
///
@@ -38,93 +38,97 @@ namespace GMW.Type
///
public string CodImpianto { get; set; }
///
+ /// Codice Stampo
+ ///
+ public string CodStampo { get; set; }
+ ///
+ /// Numero di stampate
+ ///
+ public decimal NumStampate { get; set; }
+ ///
+ /// Data Inizio produzione
+ ///
+ public DateTime DataInizio { get; set; }
+ ///
+ /// Turno Inizio produzione
+ ///
+ public string TurnoInizio { get; set; }
+ ///
+ /// Inizio validità stampo
+ ///
+ public DateTime InizioValid { get; set; }
+ ///
+ /// Fine validità stampo
+ ///
+ public DateTime? FineValid { get; set; }
+ ///
+ /// Numero di figure
+ ///
+ public decimal NumFigure { get; set; }
+ ///
+ /// Codice Cliente
+ ///
+ public string CodCliente { get; set; }
+ ///
+ /// Ragione Sociale Cliente
+ ///
+ public string RagSociale { get; set; }
+ ///
+ /// Codice Articolo
+ ///
+ public string CodArticolo { get; set; }
+ ///
/// Codice Articolo + cliente (=particolare)
///
public string Particolare { get; set; }
///
/// Descrizione particolare
///
- public string DescrParticolare { get; set; }
- ///
- /// Cliente
- ///
- public string Cliente { get; set; }
- ///
- /// Codice Articolo
- ///
- public string Articolo { get; set; }
- ///
- /// Codice Stampo
- ///
- public string CodStampo { get; set; }
+ public string DescParticolare { get; set; }
///
/// Codice Disegno
///
- public string Disegno { get; set; }
+ public string DisegnoGrezzo { get; set; }
///
- /// Codice Esponente
+ /// Codice Famiglia
///
- public string Esponente { get; set; }
+ public string CodFamiglia { get; set; }
///
- /// Famiglia
+ /// Ddescr Famiglia
///
- public string Famiglia { get; set; }
- ///
- /// Inizio produzione
- ///
- public DateTime InizioProd { get; set; }
- ///
- /// Fine produzione
- ///
- public DateTime? FineProd { get; set; }
+ public string DescFamiglia { get; set; }
///
/// Figura
///
public string Figura { get; set; }
///
- /// Figura Incisa 1
+ /// Codice Esponente
///
- public string Fig1 { get; set; }
- ///
- /// Figura Incisa 2
- ///
- public string Fig2 { get; set; }
- ///
- /// Figura Incisa 3
- ///
- public string Fig3 { get; set; }
- ///
- /// Figura Incisa 4
- ///
- public string Fig4 { get; set; }
- ///
- /// Lotto
- ///
- public string Lotto { get; set; }
+ public string Esponente { get; set; }
///
/// inizializza a partire da una riga impianti2articoli
///
///
public void setFromTabRow(DS_Applicazione.v_ArtInProdRow riga)
{
- //RIFARE!!!!
CodImpianto = riga.CodImpianto;
- Particolare = riga.Particolare;
- DescrParticolare = riga.Particolare;
- Cliente = riga.Cliente;
- Articolo = riga.Particolare;
CodStampo = riga.CodStampo;
- Disegno = "ND";
- Esponente = "ND";
- Famiglia = riga.Famiglia;
- InizioProd = riga.InizioProd;
- FineProd = riga.FineProd;
+ NumStampate = riga.NumStampate;
+ DataInizio = riga.DataInizio;
+ TurnoInizio = riga.TurnoInizio;
+ InizioValid = riga.InizioValidita;
+ FineValid = riga.FineValidita;
+ NumFigure = riga.NumFigure;
+ CodCliente = riga.CodCliente;
+ RagSociale = riga.RagSociale;
+ CodArticolo = riga.CodArticolo;
+ Particolare = riga.Particolare;
+ DescParticolare = riga.DescParticolare;
+ DisegnoGrezzo = riga.DisegnoGrezzo;
+ CodFamiglia = riga.CodFamiglia;
+ DescFamiglia = riga.DescFamiglia;
Figura = riga.Figura;
- Fig1 = riga.FiguraIncisa;
- Fig2 = riga.FiguraIncisa;
- Fig3 = riga.FiguraIncisa;
- Fig4 = riga.FiguraIncisa;
- Lotto = "ND";
+ Esponente = riga.Esponente;
}
}
}
diff --git a/GMW/GMW_deploy/Source/WS/bilance.asmx.cs b/GMW/GMW_deploy/Source/WS/bilance.asmx.cs
index fe7ebd5e..73c48fc4 100644
--- a/GMW/GMW_deploy/Source/WS/bilance.asmx.cs
+++ b/GMW/GMW_deploy/Source/WS/bilance.asmx.cs
@@ -221,16 +221,14 @@ namespace GMW.WS
{ }
return answ;
}
-#if false
-
///
- /// Fornisce l'elenco degli articoli attualmente in produzione per impianto, data e turno
+ /// Fornisce l'elenco degli articoli in produzione per impianto, data e turno
///
/// Codice impianto (da anagrafica)
/// data di riferimento
/// turno di riferimento (1-2-3)
///
- [WebMethod(Description = "Elenco impianti ed articoli attualmente in produzione (per codice anagrafico)")]
+ [WebMethod(Description = "Elenco impianti ed articoli in produzione (per codice anagrafico)")]
public GMW.Type.ArtInProd[] UdcInfo_ArtInProd4ImpDataTurno(string CodImpianto, DateTime dataRic, int turnoRic)
{
// calcolo quante ore sono il turno di riferimento...
@@ -239,8 +237,7 @@ namespace GMW.WS
DateTime dataRif = dataRic.Date.AddHours(oreTurno);
gestEl.caricaArtInProd(DataProxy.obj.taArtInProd.stp_byImpData(CodImpianto, dataRif));
return gestEl.elencoArtInProd;
- }
-#endif
+ }
#endregion
@@ -377,7 +374,6 @@ namespace GMW.WS
#endregion
-#if false
#region area stampe
///
@@ -407,6 +403,5 @@ namespace GMW.WS
}
#endregion
-#endif
}
}
diff --git a/GMW/GMW_deploy/Source/bin/GMW.dll b/GMW/GMW_deploy/Source/bin/GMW.dll
index 75d0464e..147d8bd8 100644
Binary files a/GMW/GMW_deploy/Source/bin/GMW.dll and b/GMW/GMW_deploy/Source/bin/GMW.dll differ
diff --git a/GMW/GMW_deploy/Source/bin/GMW_data.dll b/GMW/GMW_deploy/Source/bin/GMW_data.dll
index 54dc0a4f..c88dbea2 100644
Binary files a/GMW/GMW_deploy/Source/bin/GMW_data.dll and b/GMW/GMW_deploy/Source/bin/GMW_data.dll differ
diff --git a/GMW/GMW_deploy/Source/obj/Debug/GMW.dll b/GMW/GMW_deploy/Source/obj/Debug/GMW.dll
index 402f4411..0356dddd 100644
Binary files a/GMW/GMW_deploy/Source/obj/Debug/GMW.dll and b/GMW/GMW_deploy/Source/obj/Debug/GMW.dll differ
diff --git a/GMW/GMW_deploy/Source/obj/Debug/ResolveAssemblyReference.cache b/GMW/GMW_deploy/Source/obj/Debug/ResolveAssemblyReference.cache
index e0759345..6214e8bd 100644
Binary files a/GMW/GMW_deploy/Source/obj/Debug/ResolveAssemblyReference.cache and b/GMW/GMW_deploy/Source/obj/Debug/ResolveAssemblyReference.cache differ
diff --git a/GMW/GMW_deploy/Source/obj/Release/GMW.dll b/GMW/GMW_deploy/Source/obj/Release/GMW.dll
index 75d0464e..147d8bd8 100644
Binary files a/GMW/GMW_deploy/Source/obj/Release/GMW.dll and b/GMW/GMW_deploy/Source/obj/Release/GMW.dll differ
diff --git a/GMW/GMW_deploy/Source/obj/Release/ResolveAssemblyReference.cache b/GMW/GMW_deploy/Source/obj/Release/ResolveAssemblyReference.cache
index 079a38a7..7f8e5731 100644
Binary files a/GMW/GMW_deploy/Source/obj/Release/ResolveAssemblyReference.cache and b/GMW/GMW_deploy/Source/obj/Release/ResolveAssemblyReference.cache differ
diff --git a/GMW/GMW_installer/GMW_installer.vdproj b/GMW/GMW_installer/GMW_installer.vdproj
index 7327fdb4..7bc00e03 100644
--- a/GMW/GMW_installer/GMW_installer.vdproj
+++ b/GMW/GMW_installer/GMW_installer.vdproj
@@ -350,7 +350,7 @@
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:GMW"
"ProductCode" = "8:{ACF28274-A9DA-4570-8041-73C008174AD5}"
- "PackageCode" = "8:{BFB94E77-A4F8-4F0D-88B3-04EA6B082758}"
+ "PackageCode" = "8:{23F18BA9-B908-45AA-94CE-60A8F2AD4789}"
"UpgradeCode" = "8:{C9BC0732-DC92-4336-BAC9-A05A5D2A97C0}"
"RestartWWWService" = "11:TRUE"
"RemovePreviousVersions" = "11:TRUE"
diff --git a/GMW/GMW_installer/Release/GMW_installer.msi b/GMW/GMW_installer/Release/GMW_installer.msi
index e5624b6e..e1cb344e 100644
Binary files a/GMW/GMW_installer/Release/GMW_installer.msi and b/GMW/GMW_installer/Release/GMW_installer.msi differ