diff --git a/MP-TAB/WebUserControls/BaseUserControl.cs b/MP-TAB/WebUserControls/BaseUserControl.cs
index fedaa762..ceff6a97 100644
--- a/MP-TAB/WebUserControls/BaseUserControl.cs
+++ b/MP-TAB/WebUserControls/BaseUserControl.cs
@@ -86,8 +86,6 @@ namespace MoonProTablet.WebUserControls
///
public bool enableTabSetPzPallet = memLayer.ML.cdvb("enableTabSetPzPallet");
- public string kSearchKeyExt = "keySearchOdl";
- public string kSearchOdl = "keySearchOdl";
#endregion Public Fields
diff --git a/MP-TAB/WebUserControls/cmp_selOdlOrd.ascx b/MP-TAB/WebUserControls/cmp_selOdlOrd.ascx
index 693b3d50..dd73d092 100644
--- a/MP-TAB/WebUserControls/cmp_selOdlOrd.ascx
+++ b/MP-TAB/WebUserControls/cmp_selOdlOrd.ascx
@@ -5,8 +5,8 @@
Comm/ODL
-
-
+
+
diff --git a/MP-TAB/WebUserControls/cmp_selOdlOrd.ascx.cs b/MP-TAB/WebUserControls/cmp_selOdlOrd.ascx.cs
index 429e87fb..9dcea446 100644
--- a/MP-TAB/WebUserControls/cmp_selOdlOrd.ascx.cs
+++ b/MP-TAB/WebUserControls/cmp_selOdlOrd.ascx.cs
@@ -25,27 +25,29 @@ namespace MoonProTablet.WebUserControls
}
}
- protected string reqOdl
+ protected int reqOdl
{
get
{
- return ddlOdl.SelectedValue;
+ int answ = 0;
+ int.TryParse(ddlOdl.SelectedValue, out answ);
+ return answ;
}
set
{
- ddlOdl.SelectedValue= value;
+ ddlOdl.SelectedValue= $"{value}";
}
}
- protected string searchOdl
+ protected int searchOdl
{
get
{
- return SteamWare.memLayer.ML.StringSessionObj(kSearchOdl);
+ return SteamWare.memLayer.ML.IntSessionObj("keySearchOdl");
}
set
{
- SteamWare.memLayer.ML.setSessionVal(kSearchOdl, value);
+ SteamWare.memLayer.ML.setSessionVal("keySearchOdl", value);
}
}
@@ -55,8 +57,8 @@ namespace MoonProTablet.WebUserControls
protected void lbtResetOdl_Click(object sender, EventArgs e)
{
- searchOdl = "0";
- reqOdl = "0";
+ searchOdl = 0;
+ reqOdl = 0;
}
protected void Page_Load(object sender, EventArgs e)
@@ -69,7 +71,6 @@ namespace MoonProTablet.WebUserControls
protected void txtNumLast_TextChanged(object sender, EventArgs e)
{
- // aggiorna DDL
}
protected void txtOdl_TextChanged(object sender, EventArgs e)
@@ -78,5 +79,10 @@ namespace MoonProTablet.WebUserControls
}
#endregion Protected Methods
+
+ protected void ddlOdl_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ searchOdl = reqOdl;
+ }
}
}
\ No newline at end of file
diff --git a/MP-TAB/WebUserControls/mod_elencoScarti.ascx b/MP-TAB/WebUserControls/mod_elencoScarti.ascx
index bd47e1b4..bc936f4a 100644
--- a/MP-TAB/WebUserControls/mod_elencoScarti.ascx
+++ b/MP-TAB/WebUserControls/mod_elencoScarti.ascx
@@ -52,6 +52,7 @@
+
diff --git a/MapoDb/DS_ProdTempi.xsd b/MapoDb/DS_ProdTempi.xsd
index 65d6542b..94ada05e 100644
--- a/MapoDb/DS_ProdTempi.xsd
+++ b/MapoDb/DS_ProdTempi.xsd
@@ -2147,6 +2147,7 @@ FROM dbo.v_RegistroScarti
+
@@ -2944,7 +2945,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
@@ -3025,7 +3026,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
@@ -3037,7 +3038,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
@@ -3062,7 +3063,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
@@ -3100,7 +3101,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
@@ -3139,7 +3140,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
@@ -3205,7 +3206,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
@@ -3282,7 +3283,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
@@ -3317,7 +3318,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
@@ -3339,7 +3340,7 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
-
+
diff --git a/MapoDb/DS_ProdTempi.xss b/MapoDb/DS_ProdTempi.xss
index f80f28e7..dbe2ef2b 100644
--- a/MapoDb/DS_ProdTempi.xss
+++ b/MapoDb/DS_ProdTempi.xss
@@ -4,32 +4,32 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
-->
-
+
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
-
+
+
-
-
+
+
-
+
\ No newline at end of file
diff --git a/MapoDb/DS_ProdTempi1.Designer.cs b/MapoDb/DS_ProdTempi1.Designer.cs
index 4a3d1c41..d2e46e90 100644
--- a/MapoDb/DS_ProdTempi1.Designer.cs
+++ b/MapoDb/DS_ProdTempi1.Designer.cs
@@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
+// Il codice è stato generato da uno strumento.
+// Versione runtime:4.0.30319.42000
//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
+// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
+// il codice viene rigenerato.
//
//------------------------------------------------------------------------------
@@ -10529,7 +10529,7 @@ namespace MapoDb {
return ((string)(this[this.tableODL.DescArticoloColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DescArticolo\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DescArticolo\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10545,7 +10545,7 @@ namespace MapoDb {
return ((string)(this[this.tableODL.IdxMacchinaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'IdxMacchina\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'IdxMacchina\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10561,7 +10561,7 @@ namespace MapoDb {
return ((string)(this[this.tableODL.CodMacchinaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodMacchina\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodMacchina\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10577,7 +10577,7 @@ namespace MapoDb {
return ((string)(this[this.tableODL.NomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Nome\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Nome\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10615,7 +10615,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableODL.DataInizioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataInizio\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataInizio\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10631,7 +10631,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableODL.DataFineColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataFine\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataFine\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10647,7 +10647,7 @@ namespace MapoDb {
return ((string)(this[this.tableODL.NoteColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Note\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Note\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10674,7 +10674,7 @@ namespace MapoDb {
return ((string)(this[this.tableODL.UserApprColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'UserAppr\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'UserAppr\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10690,7 +10690,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableODL.DataApprColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataAppr\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataAppr\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10706,7 +10706,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableODL.TCRichAttrColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCRichAttr\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCRichAttr\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10722,7 +10722,7 @@ namespace MapoDb {
return ((int)(this[this.tableODL.ToAs400Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'ToAs400\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'ToAs400\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10738,7 +10738,7 @@ namespace MapoDb {
return ((string)(this[this.tableODL.CommessaAs400Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CommessaAs400\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CommessaAs400\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10765,7 +10765,7 @@ namespace MapoDb {
return ((string)(this[this.tableODL.OperSetupColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'OperSetup\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'OperSetup\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -10781,7 +10781,7 @@ namespace MapoDb {
return ((string)(this[this.tableODL.KeyRichiestaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'KeyRichiesta\' in table \'ODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'KeyRichiesta\' nella tabella \'ODL\' è DBNull.", e);
}
}
set {
@@ -11024,7 +11024,7 @@ namespace MapoDb {
return ((bool)(this[this.tableAnagArticoli.FlagIsNewColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'FlagIsNew\' in table \'AnagArticoli\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'FlagIsNew\' nella tabella \'AnagArticoli\' è DBNull.", e);
}
}
set {
@@ -11100,7 +11100,7 @@ namespace MapoDb {
return ((string)(this[this.tableDatiMacchine.DescFullColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DescFull\' in table \'DatiMacchine\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DescFull\' nella tabella \'DatiMacchine\' è DBNull.", e);
}
}
set {
@@ -11116,7 +11116,7 @@ namespace MapoDb {
return ((bool)(this[this.tableDatiMacchine.palletChangeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'palletChange\' in table \'DatiMacchine\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'palletChange\' nella tabella \'DatiMacchine\' è DBNull.", e);
}
}
set {
@@ -11132,7 +11132,7 @@ namespace MapoDb {
return ((string)(this[this.tableDatiMacchine.serialPortColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'serialPort\' in table \'DatiMacchine\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'serialPort\' nella tabella \'DatiMacchine\' è DBNull.", e);
}
}
set {
@@ -11148,7 +11148,7 @@ namespace MapoDb {
return ((int)(this[this.tableDatiMacchine.refreshPeriodColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'refreshPeriod\' in table \'DatiMacchine\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'refreshPeriod\' nella tabella \'DatiMacchine\' è DBNull.", e);
}
}
set {
@@ -11164,7 +11164,7 @@ namespace MapoDb {
return ((bool)(this[this.tableDatiMacchine.simulazioneColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'simulazione\' in table \'DatiMacchine\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'simulazione\' nella tabella \'DatiMacchine\' è DBNull.", e);
}
}
set {
@@ -11180,7 +11180,7 @@ namespace MapoDb {
return ((string)(this[this.tableDatiMacchine.CodArticolo_AColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodArticolo_A\' in table \'DatiMacchine\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodArticolo_A\' nella tabella \'DatiMacchine\' è DBNull.", e);
}
}
set {
@@ -11196,7 +11196,7 @@ namespace MapoDb {
return ((string)(this[this.tableDatiMacchine.CodArticolo_BColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodArticolo_B\' in table \'DatiMacchine\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodArticolo_B\' nella tabella \'DatiMacchine\' è DBNull.", e);
}
}
set {
@@ -11333,7 +11333,8 @@ namespace MapoDb {
return ((string)(this[this.tablePostazioniMapo.DescPostazioneColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DescPostazione\' in table \'PostazioniMapo\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DescPostazione\' nella tabella \'PostazioniMapo\' è DBNull." +
+ "", e);
}
}
set {
@@ -11360,7 +11361,7 @@ namespace MapoDb {
return ((int)(this[this.tablePostazioniMapo.MatrOperatoreColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'MatrOperatore\' in table \'PostazioniMapo\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'MatrOperatore\' nella tabella \'PostazioniMapo\' è DBNull.", e);
}
}
set {
@@ -11376,7 +11377,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tablePostazioniMapo.InputUntilColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'InputUntil\' in table \'PostazioniMapo\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'InputUntil\' nella tabella \'PostazioniMapo\' è DBNull.", e);
}
}
set {
@@ -11392,7 +11393,7 @@ namespace MapoDb {
return ((string)(this[this.tablePostazioniMapo.LastBarcodeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'LastBarcode\' in table \'PostazioniMapo\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'LastBarcode\' nella tabella \'PostazioniMapo\' è DBNull.", e);
}
}
set {
@@ -11471,8 +11472,8 @@ namespace MapoDb {
return ((string)(this[this.tablestp_PzProd_getByMacchina.idxMacchinaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'idxMacchina\' in table \'stp_PzProd_getByMacchina\' is DBNull." +
- "", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'idxMacchina\' nella tabella \'stp_PzProd_getByMacchina\' è " +
+ "DBNull.", e);
}
}
set {
@@ -11488,8 +11489,8 @@ namespace MapoDb {
return ((int)(this[this.tablestp_PzProd_getByMacchina.pezziNonConfermatiColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pezziNonConfermati\' in table \'stp_PzProd_getByMacchina\' is " +
- "DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pezziNonConfermati\' nella tabella \'stp_PzProd_getByMacch" +
+ "ina\' è DBNull.", e);
}
}
set {
@@ -11505,7 +11506,8 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tablestp_PzProd_getByMacchina.DataFromColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataFrom\' in table \'stp_PzProd_getByMacchina\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataFrom\' nella tabella \'stp_PzProd_getByMacchina\' è DBN" +
+ "ull.", e);
}
}
set {
@@ -11521,7 +11523,8 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tablestp_PzProd_getByMacchina.DataToColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataTo\' in table \'stp_PzProd_getByMacchina\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataTo\' nella tabella \'stp_PzProd_getByMacchina\' è DBNul" +
+ "l.", e);
}
}
set {
@@ -11644,7 +11647,7 @@ namespace MapoDb {
return ((int)(this[this.tableDatiConfermati.TurnoRifColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TurnoRif\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TurnoRif\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11660,7 +11663,7 @@ namespace MapoDb {
return ((string)(this[this.tableDatiConfermati.CodArticoloColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodArticolo\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodArticolo\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11687,7 +11690,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TCAssegnatoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCAssegnato\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCAssegnato\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11703,7 +11706,7 @@ namespace MapoDb {
return ((int)(this[this.tableDatiConfermati.MatrOprColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'MatrOpr\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'MatrOpr\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11730,7 +11733,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableDatiConfermati.DataOraFromColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataOraFrom\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataOraFrom\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11746,7 +11749,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableDatiConfermati.DataOraToColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataOraTo\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataOraTo\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11773,7 +11776,7 @@ namespace MapoDb {
return ((int)(this[this.tableDatiConfermati.TotPzProdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TotPzProd\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TotPzProd\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11789,7 +11792,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoProdottoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoProdotto\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoProdotto\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11805,7 +11808,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoCronColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoCron\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoCron\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11821,7 +11824,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoNDColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoND\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoND\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11837,7 +11840,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoAperturaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoApertura\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoApertura\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11853,7 +11856,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoOFFColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoOFF\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoOFF\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11869,7 +11872,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoONColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoON\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoON\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11885,7 +11888,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoFermoOnColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoFermoOn\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoFermoOn\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11901,7 +11904,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoAutoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoAuto\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoAuto\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11917,7 +11920,8 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoFermoAutoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoFermoAuto\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoFermoAuto\' nella tabella \'DatiConfermati\' è DBNull." +
+ "", e);
}
}
set {
@@ -11933,7 +11937,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiConfermati.TempoRunColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoRun\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoRun\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -11949,7 +11953,7 @@ namespace MapoDb {
return ((int)(this[this.tableDatiConfermati.TotPzFermoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TotPzFermo\' in table \'DatiConfermati\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TotPzFermo\' nella tabella \'DatiConfermati\' è DBNull.", e);
}
}
set {
@@ -12207,7 +12211,7 @@ namespace MapoDb {
return ((string)(this[this.tableCalendFesteFerie.descrizioneColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'descrizione\' in table \'CalendFesteFerie\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'descrizione\' nella tabella \'CalendFesteFerie\' è DBNull.", e);
}
}
set {
@@ -12250,7 +12254,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_TempoByIdxMaccPeriodClass.oreColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'ore\' in table \'stp_TempoByIdxMaccPeriodClass\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'ore\' nella tabella \'stp_TempoByIdxMaccPeriodClass\' è DBN" +
+ "ull.", e);
}
}
set {
@@ -12337,7 +12342,7 @@ namespace MapoDb {
return ((int)(this[this.tableDatiProduzione.TurnoRifColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TurnoRif\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TurnoRif\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12353,7 +12358,7 @@ namespace MapoDb {
return ((string)(this[this.tableDatiProduzione.CodArticoloColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodArticolo\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodArticolo\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12380,7 +12385,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiProduzione.TCAssegnatoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCAssegnato\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCAssegnato\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12396,7 +12401,7 @@ namespace MapoDb {
return ((int)(this[this.tableDatiProduzione.MatrOprColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'MatrOpr\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'MatrOpr\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12423,7 +12428,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableDatiProduzione.DataOraFromColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataOraFrom\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataOraFrom\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12439,7 +12444,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableDatiProduzione.DataOraToColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataOraTo\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataOraTo\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12455,7 +12460,7 @@ namespace MapoDb {
return ((int)(this[this.tableDatiProduzione.TotPzProdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TotPzProd\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TotPzProd\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12471,7 +12476,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableDatiProduzione.TempoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Tempo\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Tempo\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12487,7 +12492,7 @@ namespace MapoDb {
return ((string)(this[this.tableDatiProduzione.ClasseTempoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'ClasseTempo\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'ClasseTempo\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12503,7 +12508,7 @@ namespace MapoDb {
return ((string)(this[this.tableDatiProduzione.CausaleColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Causale\' in table \'DatiProduzione\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Causale\' nella tabella \'DatiProduzione\' è DBNull.", e);
}
}
set {
@@ -12654,8 +12659,8 @@ namespace MapoDb {
return ((string)(this[this.tablestp_repDonati_getDatiProdMacchina.CodArticoloColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodArticolo\' in table \'stp_repDonati_getDatiProdMacchina\' i" +
- "s DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodArticolo\' nella tabella \'stp_repDonati_getDatiProdMac" +
+ "china\' è DBNull.", e);
}
}
set {
@@ -12671,8 +12676,8 @@ namespace MapoDb {
return ((int)(this[this.tablestp_repDonati_getDatiProdMacchina.PezziLanciatiColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PezziLanciati\' in table \'stp_repDonati_getDatiProdMacchina\'" +
- " is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PezziLanciati\' nella tabella \'stp_repDonati_getDatiProdM" +
+ "acchina\' è DBNull.", e);
}
}
set {
@@ -12688,8 +12693,8 @@ namespace MapoDb {
return ((int)(this[this.tablestp_repDonati_getDatiProdMacchina.PezziProdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PezziProd\' in table \'stp_repDonati_getDatiProdMacchina\' is " +
- "DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PezziProd\' nella tabella \'stp_repDonati_getDatiProdMacch" +
+ "ina\' è DBNull.", e);
}
}
set {
@@ -12705,8 +12710,8 @@ namespace MapoDb {
return ((int)(this[this.tablestp_repDonati_getDatiProdMacchina.PezziConfColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PezziConf\' in table \'stp_repDonati_getDatiProdMacchina\' is " +
- "DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PezziConf\' nella tabella \'stp_repDonati_getDatiProdMacch" +
+ "ina\' è DBNull.", e);
}
}
set {
@@ -12722,8 +12727,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TCAssegnatoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCAssegnato\' in table \'stp_repDonati_getDatiProdMacchina\' i" +
- "s DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCAssegnato\' nella tabella \'stp_repDonati_getDatiProdMac" +
+ "china\' è DBNull.", e);
}
}
set {
@@ -12739,8 +12744,8 @@ namespace MapoDb {
return ((int)(this[this.tablestp_repDonati_getDatiProdMacchina.CodOperatoreColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodOperatore\' in table \'stp_repDonati_getDatiProdMacchina\' " +
- "is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodOperatore\' nella tabella \'stp_repDonati_getDatiProdMa" +
+ "cchina\' è DBNull.", e);
}
}
set {
@@ -12756,8 +12761,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TempoOnColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoOn\' in table \'stp_repDonati_getDatiProdMacchina\' is DB" +
- "Null.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoOn\' nella tabella \'stp_repDonati_getDatiProdMacchin" +
+ "a\' è DBNull.", e);
}
}
set {
@@ -12773,8 +12778,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TempoAutoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoAuto\' in table \'stp_repDonati_getDatiProdMacchina\' is " +
- "DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoAuto\' nella tabella \'stp_repDonati_getDatiProdMacch" +
+ "ina\' è DBNull.", e);
}
}
set {
@@ -12790,8 +12795,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TempoRunColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoRun\' in table \'stp_repDonati_getDatiProdMacchina\' is D" +
- "BNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoRun\' nella tabella \'stp_repDonati_getDatiProdMacchi" +
+ "na\' è DBNull.", e);
}
}
set {
@@ -12807,8 +12812,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TCMedioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCMedio\' in table \'stp_repDonati_getDatiProdMacchina\' is DB" +
- "Null.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCMedio\' nella tabella \'stp_repDonati_getDatiProdMacchin" +
+ "a\' è DBNull.", e);
}
}
set {
@@ -12824,8 +12829,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TCLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCLav\' in table \'stp_repDonati_getDatiProdMacchina\' is DBNu" +
- "ll.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCLav\' nella tabella \'stp_repDonati_getDatiProdMacchina\'" +
+ " è DBNull.", e);
}
}
set {
@@ -12841,8 +12846,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TCEffColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCEff\' in table \'stp_repDonati_getDatiProdMacchina\' is DBNu" +
- "ll.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCEff\' nella tabella \'stp_repDonati_getDatiProdMacchina\'" +
+ " è DBNull.", e);
}
}
set {
@@ -12858,8 +12863,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TCMedioRTColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCMedioRT\' in table \'stp_repDonati_getDatiProdMacchina\' is " +
- "DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCMedioRT\' nella tabella \'stp_repDonati_getDatiProdMacch" +
+ "ina\' è DBNull.", e);
}
}
set {
@@ -12875,8 +12880,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TCLavRTColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCLavRT\' in table \'stp_repDonati_getDatiProdMacchina\' is DB" +
- "Null.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCLavRT\' nella tabella \'stp_repDonati_getDatiProdMacchin" +
+ "a\' è DBNull.", e);
}
}
set {
@@ -12892,8 +12897,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchina.TCEffRTColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCEffRT\' in table \'stp_repDonati_getDatiProdMacchina\' is DB" +
- "Null.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCEffRT\' nella tabella \'stp_repDonati_getDatiProdMacchin" +
+ "a\' è DBNull.", e);
}
}
set {
@@ -13104,8 +13109,8 @@ namespace MapoDb {
return ((int)(this[this.tablestp_repDonati_getLastStatoDurataMacchina.idxStatoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'idxStato\' in table \'stp_repDonati_getLastStatoDurataMacchin" +
- "a\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'idxStato\' nella tabella \'stp_repDonati_getLastStatoDurat" +
+ "aMacchina\' è DBNull.", e);
}
}
set {
@@ -13121,8 +13126,8 @@ namespace MapoDb {
return ((double)(this[this.tablestp_repDonati_getLastStatoDurataMacchina.MinutiColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Minuti\' in table \'stp_repDonati_getLastStatoDurataMacchina\'" +
- " is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Minuti\' nella tabella \'stp_repDonati_getLastStatoDurataM" +
+ "acchina\' è DBNull.", e);
}
}
set {
@@ -13177,8 +13182,8 @@ namespace MapoDb {
return ((int)(this[this.tablestp_repDonati_getDatiProdMacchinaPeriodo.PezziProdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PezziProd\' in table \'stp_repDonati_getDatiProdMacchinaPerio" +
- "do\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PezziProd\' nella tabella \'stp_repDonati_getDatiProdMacch" +
+ "inaPeriodo\' è DBNull.", e);
}
}
set {
@@ -13194,8 +13199,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchinaPeriodo.TCAssegnatoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCAssegnato\' in table \'stp_repDonati_getDatiProdMacchinaPer" +
- "iodo\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCAssegnato\' nella tabella \'stp_repDonati_getDatiProdMac" +
+ "chinaPeriodo\' è DBNull.", e);
}
}
set {
@@ -13211,8 +13216,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchinaPeriodo.TCMedioRTColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCMedioRT\' in table \'stp_repDonati_getDatiProdMacchinaPerio" +
- "do\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCMedioRT\' nella tabella \'stp_repDonati_getDatiProdMacch" +
+ "inaPeriodo\' è DBNull.", e);
}
}
set {
@@ -13228,8 +13233,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchinaPeriodo.TCLavRTColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCLavRT\' in table \'stp_repDonati_getDatiProdMacchinaPeriodo" +
- "\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCLavRT\' nella tabella \'stp_repDonati_getDatiProdMacchin" +
+ "aPeriodo\' è DBNull.", e);
}
}
set {
@@ -13245,8 +13250,8 @@ namespace MapoDb {
return ((decimal)(this[this.tablestp_repDonati_getDatiProdMacchinaPeriodo.TCEffRTColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCEffRT\' in table \'stp_repDonati_getDatiProdMacchinaPeriodo" +
- "\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCEffRT\' nella tabella \'stp_repDonati_getDatiProdMacchin" +
+ "aPeriodo\' è DBNull.", e);
}
}
set {
@@ -13348,7 +13353,7 @@ namespace MapoDb {
return ((bool)(this[this.tableTurniMacchina.T1Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'T1\' in table \'TurniMacchina\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'T1\' nella tabella \'TurniMacchina\' è DBNull.", e);
}
}
set {
@@ -13364,7 +13369,7 @@ namespace MapoDb {
return ((bool)(this[this.tableTurniMacchina.T2Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'T2\' in table \'TurniMacchina\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'T2\' nella tabella \'TurniMacchina\' è DBNull.", e);
}
}
set {
@@ -13380,7 +13385,7 @@ namespace MapoDb {
return ((bool)(this[this.tableTurniMacchina.T3Column]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'T3\' in table \'TurniMacchina\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'T3\' nella tabella \'TurniMacchina\' è DBNull.", e);
}
}
set {
@@ -13458,7 +13463,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableMappaStatoExpl.lastUpdateColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'lastUpdate\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'lastUpdate\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13485,7 +13490,7 @@ namespace MapoDb {
return ((string)(this[this.tableMappaStatoExpl.CodMacchinaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodMacchina\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodMacchina\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13501,7 +13506,7 @@ namespace MapoDb {
return ((string)(this[this.tableMappaStatoExpl.NomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Nome\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Nome\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13517,7 +13522,7 @@ namespace MapoDb {
return ((string)(this[this.tableMappaStatoExpl.urlColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'url\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'url\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13533,7 +13538,7 @@ namespace MapoDb {
return ((int)(this[this.tableMappaStatoExpl.idxODLColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'idxODL\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'idxODL\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13549,7 +13554,7 @@ namespace MapoDb {
return ((string)(this[this.tableMappaStatoExpl.CodArticoloColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodArticolo\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodArticolo\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13565,7 +13570,7 @@ namespace MapoDb {
return ((int)(this[this.tableMappaStatoExpl.NumPezziColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'NumPezzi\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'NumPezzi\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13581,7 +13586,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TCAssegnatoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCAssegnato\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCAssegnato\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13597,7 +13602,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableMappaStatoExpl.DataInizioODLColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataInizioODL\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataInizioODL\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13613,7 +13618,7 @@ namespace MapoDb {
return ((string)(this[this.tableMappaStatoExpl.SemaforoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Semaforo\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Semaforo\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13629,7 +13634,7 @@ namespace MapoDb {
return ((int)(this[this.tableMappaStatoExpl.idxStatoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'idxStato\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'idxStato\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13645,7 +13650,8 @@ namespace MapoDb {
return ((string)(this[this.tableMappaStatoExpl.DescrizioneStatoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DescrizioneStato\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DescrizioneStato\' nella tabella \'MappaStatoExpl\' è DBNul" +
+ "l.", e);
}
}
set {
@@ -13661,7 +13667,7 @@ namespace MapoDb {
return ((double)(this[this.tableMappaStatoExpl.durataColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'durata\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'durata\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13677,7 +13683,7 @@ namespace MapoDb {
return ((int)(this[this.tableMappaStatoExpl.PezziProdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PezziProd\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PezziProd\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13693,7 +13699,7 @@ namespace MapoDb {
return ((int)(this[this.tableMappaStatoExpl.PezziConfColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PezziConf\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PezziConf\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13709,7 +13715,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TempoOnColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoOn\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoOn\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13725,7 +13731,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TempoAutoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoAuto\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoAuto\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13741,7 +13747,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TempoRunColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TempoRun\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoRun\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13757,7 +13763,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TCMedioColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCMedio\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCMedio\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13773,7 +13779,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TCLavColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCLav\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCLav\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13789,7 +13795,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TCEffColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCEff\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCEff\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13805,7 +13811,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TCMedioRTColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCMedioRT\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCMedioRT\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13821,7 +13827,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TCLavRTColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCLavRT\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCLavRT\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13837,7 +13843,7 @@ namespace MapoDb {
return ((decimal)(this[this.tableMappaStatoExpl.TCEffRTColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'TCEffRT\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'TCEffRT\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -13853,7 +13859,7 @@ namespace MapoDb {
return ((string)(this[this.tableMappaStatoExpl.DisegnoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Disegno\' in table \'MappaStatoExpl\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Disegno\' nella tabella \'MappaStatoExpl\' è DBNull.", e);
}
}
set {
@@ -14184,7 +14190,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdDett_splitODL.IdxODLColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'IdxODL\' in table \'ResProdDett_splitODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'IdxODL\' nella tabella \'ResProdDett_splitODL\' è DBNull.", e);
}
}
set {
@@ -14211,7 +14217,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdDett_splitODL.pzOrdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzOrd\' in table \'ResProdDett_splitODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzOrd\' nella tabella \'ResProdDett_splitODL\' è DBNull.", e);
}
}
set {
@@ -14227,7 +14233,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdDett_splitODL.pzProdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzProd\' in table \'ResProdDett_splitODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzProd\' nella tabella \'ResProdDett_splitODL\' è DBNull.", e);
}
}
set {
@@ -14243,7 +14249,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdDett_splitODL.pzConfColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzConf\' in table \'ResProdDett_splitODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzConf\' nella tabella \'ResProdDett_splitODL\' è DBNull.", e);
}
}
set {
@@ -14259,7 +14265,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdDett_splitODL.pzRimanColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzRiman\' in table \'ResProdDett_splitODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzRiman\' nella tabella \'ResProdDett_splitODL\' è DBNull.", e);
}
}
set {
@@ -14350,7 +14356,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableResProdDett_splitGG.DataColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Data\' in table \'ResProdDett_splitGG\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Data\' nella tabella \'ResProdDett_splitGG\' è DBNull.", e);
}
}
set {
@@ -14366,7 +14372,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdDett_splitGG.IdxODLColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'IdxODL\' in table \'ResProdDett_splitGG\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'IdxODL\' nella tabella \'ResProdDett_splitGG\' è DBNull.", e);
}
}
set {
@@ -14393,7 +14399,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdDett_splitGG.pzProdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzProd\' in table \'ResProdDett_splitGG\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzProd\' nella tabella \'ResProdDett_splitGG\' è DBNull.", e);
}
}
set {
@@ -14409,7 +14415,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdDett_splitGG.pzConfColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzConf\' in table \'ResProdDett_splitGG\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzConf\' nella tabella \'ResProdDett_splitGG\' è DBNull.", e);
}
}
set {
@@ -14425,7 +14431,7 @@ namespace MapoDb {
return ((string)(this[this.tableResProdDett_splitGG.NomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Nome\' in table \'ResProdDett_splitGG\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Nome\' nella tabella \'ResProdDett_splitGG\' è DBNull.", e);
}
}
set {
@@ -14441,7 +14447,8 @@ namespace MapoDb {
return ((string)(this[this.tableResProdDett_splitGG.CodArticoloColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodArticolo\' in table \'ResProdDett_splitGG\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodArticolo\' nella tabella \'ResProdDett_splitGG\' è DBNul" +
+ "l.", e);
}
}
set {
@@ -14577,7 +14584,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdTot.pzOrdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzOrd\' in table \'ResProdTot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzOrd\' nella tabella \'ResProdTot\' è DBNull.", e);
}
}
set {
@@ -14593,7 +14600,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdTot.pzProdColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzProd\' in table \'ResProdTot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzProd\' nella tabella \'ResProdTot\' è DBNull.", e);
}
}
set {
@@ -14609,7 +14616,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdTot.pzConfColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzConf\' in table \'ResProdTot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzConf\' nella tabella \'ResProdTot\' è DBNull.", e);
}
}
set {
@@ -14625,7 +14632,7 @@ namespace MapoDb {
return ((int)(this[this.tableResProdTot.pzRimanColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'pzRiman\' in table \'ResProdTot\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'pzRiman\' nella tabella \'ResProdTot\' è DBNull.", e);
}
}
set {
@@ -14803,7 +14810,7 @@ namespace MapoDb {
return ((string)(this[this.tableRegistroControlli.OperatoreColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Operatore\' in table \'RegistroControlli\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Operatore\' nella tabella \'RegistroControlli\' è DBNull.", e);
}
}
set {
@@ -14879,7 +14886,7 @@ namespace MapoDb {
return ((string)(this[this.tableRegistroScarti.OperatoreColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Operatore\' in table \'RegistroScarti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Operatore\' nella tabella \'RegistroScarti\' è DBNull.", e);
}
}
set {
@@ -14939,7 +14946,8 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableRegistroScarti.DataOraProdRecColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataOraProdRec\' in table \'RegistroScarti\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataOraProdRec\' nella tabella \'RegistroScarti\' è DBNull." +
+ "", e);
}
}
set {
@@ -15093,7 +15101,7 @@ namespace MapoDb {
return ((string)(this[this.tablePromesseODL.DescArticoloColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DescArticolo\' in table \'PromesseODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DescArticolo\' nella tabella \'PromesseODL\' è DBNull.", e);
}
}
set {
@@ -15131,7 +15139,7 @@ namespace MapoDb {
return ((string)(this[this.tablePromesseODL.CodMacchinaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CodMacchina\' in table \'PromesseODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CodMacchina\' nella tabella \'PromesseODL\' è DBNull.", e);
}
}
set {
@@ -15147,7 +15155,7 @@ namespace MapoDb {
return ((string)(this[this.tablePromesseODL.NomeColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Nome\' in table \'PromesseODL\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Nome\' nella tabella \'PromesseODL\' è DBNull.", e);
}
}
set {
@@ -15390,7 +15398,8 @@ namespace MapoDb {
return ((string)(this[this.tableElencoConfermeProd.CognomeNomeOprColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'CognomeNomeOpr\' in table \'ElencoConfermeProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'CognomeNomeOpr\' nella tabella \'ElencoConfermeProd\' è DBN" +
+ "ull.", e);
}
}
set {
@@ -15433,7 +15442,7 @@ namespace MapoDb {
return ((string)(this[this.tableStatoProd.idxMacchinaColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'idxMacchina\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'idxMacchina\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -15449,7 +15458,7 @@ namespace MapoDb {
return ((int)(this[this.tableStatoProd.IdxOdlColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'IdxOdl\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'IdxOdl\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -15465,7 +15474,7 @@ namespace MapoDb {
return ((int)(this[this.tableStatoProd.PzTotODLColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PzTotODL\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PzTotODL\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -15481,7 +15490,7 @@ namespace MapoDb {
return ((int)(this[this.tableStatoProd.PzConfScartoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PzConfScarto\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PzConfScarto\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -15497,7 +15506,7 @@ namespace MapoDb {
return ((int)(this[this.tableStatoProd.PzConfBuoniColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PzConfBuoni\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PzConfBuoni\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -15513,7 +15522,7 @@ namespace MapoDb {
return ((int)(this[this.tableStatoProd.PzRichODLColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'PzRichODL\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'PzRichODL\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -15529,7 +15538,7 @@ namespace MapoDb {
return ((int)(this[this.tableStatoProd.Pz2RecTotColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Pz2RecTot\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Pz2RecTot\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -15545,7 +15554,7 @@ namespace MapoDb {
return ((int)(this[this.tableStatoProd.Pz2RecScartoColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'Pz2RecScarto\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'Pz2RecScarto\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -15561,7 +15570,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableStatoProd.DataFromColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataFrom\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataFrom\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -15577,7 +15586,7 @@ namespace MapoDb {
return ((global::System.DateTime)(this[this.tableStatoProd.DataToColumn]));
}
catch (global::System.InvalidCastException e) {
- throw new global::System.Data.StrongTypingException("The value for column \'DataTo\' in table \'StatoProd\' is DBNull.", e);
+ throw new global::System.Data.StrongTypingException("Il valore della colonna \'DataTo\' nella tabella \'StatoProd\' è DBNull.", e);
}
}
set {
@@ -27607,6 +27616,7 @@ FROM MappaStatoExpl";
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("@IdxMacchina", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxODL", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataFrom", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataTo", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@showMulti", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
@@ -27672,7 +27682,7 @@ FROM MappaStatoExpl";
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
- public virtual DS_ProdTempi.RegistroScartiDataTable getFilt(string IdxMacchina, global::System.Nullable DataFrom, global::System.Nullable DataTo, global::System.Nullable showMulti) {
+ public virtual DS_ProdTempi.RegistroScartiDataTable getFilt(string IdxMacchina, global::System.Nullable IdxODL, global::System.Nullable DataFrom, global::System.Nullable DataTo, global::System.Nullable showMulti) {
this.Adapter.SelectCommand = this.CommandCollection[1];
if ((IdxMacchina == null)) {
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
@@ -27680,24 +27690,30 @@ FROM MappaStatoExpl";
else {
this.Adapter.SelectCommand.Parameters[1].Value = ((string)(IdxMacchina));
}
- if ((DataFrom.HasValue == true)) {
- this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataFrom.Value));
+ if ((IdxODL.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((int)(IdxODL.Value));
}
else {
this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
}
- if ((DataTo.HasValue == true)) {
- this.Adapter.SelectCommand.Parameters[3].Value = ((System.DateTime)(DataTo.Value));
+ if ((DataFrom.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[3].Value = ((System.DateTime)(DataFrom.Value));
}
else {
this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
}
- if ((showMulti.HasValue == true)) {
- this.Adapter.SelectCommand.Parameters[4].Value = ((bool)(showMulti.Value));
+ if ((DataTo.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[4].Value = ((System.DateTime)(DataTo.Value));
}
else {
this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
}
+ if ((showMulti.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[5].Value = ((bool)(showMulti.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value;
+ }
DS_ProdTempi.RegistroScartiDataTable dataTable = new DS_ProdTempi.RegistroScartiDataTable();
this.Adapter.Fill(dataTable);
return dataTable;
@@ -29860,53 +29876,54 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
}
if (((this._tempiCicloRilevatiTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._tempiCicloRilevatiTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._anagArticoliTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._anagArticoliTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._postazioniMapoTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._postazioniMapoTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._datiConfermatiTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._datiConfermatiTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._calendFesteFerieTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._calendFesteFerieTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._datiProduzioneTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._datiProduzioneTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._turniMacchinaTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._turniMacchinaTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._mappaStatoExplTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._mappaStatoExplTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
if (((this._macchine2SlaveTableAdapter != null)
&& (this.MatchTableAdapterConnection(this._macchine2SlaveTableAdapter.Connection) == false))) {
- throw new global::System.ArgumentException("All TableAdapters managed by a TableAdapterManager must use the same connection s" +
- "tring.");
+ throw new global::System.ArgumentException("Tutti gli oggetti TableAdapter gestiti da TableAdapterManager devono utilizzare l" +
+ "a stessa stringa di connessione.");
}
global::System.Data.IDbConnection workConnection = this.Connection;
if ((workConnection == null)) {
- throw new global::System.ApplicationException("TableAdapterManager contains no connection information. Set each TableAdapterMana" +
- "ger TableAdapter property to a valid TableAdapter instance.");
+ throw new global::System.ApplicationException("TableAdapterManager non contiene informazioni di connessione. Impostare la propri" +
+ "età TableAdapter di ciascun oggetto TableAdapterManager su un\'istanza TableAdapt" +
+ "er valida.");
}
bool workConnOpened = false;
if (((workConnection.State & global::System.Data.ConnectionState.Broken)
@@ -29919,8 +29936,8 @@ SELECT IdxMacchina, IdxMacchinaSlave FROM Macchine2Slave WHERE (IdxMacchina = @I
}
global::System.Data.IDbTransaction workTransaction = workConnection.BeginTransaction();
if ((workTransaction == null)) {
- throw new global::System.ApplicationException("The transaction cannot begin. The current data connection does not support transa" +
- "ctions or the current state is not allowing the transaction to begin.");
+ throw new global::System.ApplicationException("Impossibile avviare la transazione. La connessione dati corrente non supporta le " +
+ "transazioni oppure lo stato corrente non consente l\'avvio della transazione.");
}
global::System.Collections.Generic.List allChangedRows = new global::System.Collections.Generic.List();
global::System.Collections.Generic.List allAddedRows = new global::System.Collections.Generic.List();