From 2350d79900a1e876779053af62553683c66f99da Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Tue, 8 Jan 2019 15:23:12 +0100 Subject: [PATCH] Inizio modifica pagina dettaglio x mostrare NUOVI parametri e fix esistenti --- Jenkinsfile | 6 +- MP-SITE/DettaglioMacchina.aspx | 62 ++++---- MP-Site/MP-Site.csproj | 35 +++++ MP-Site/WebUserControls/baseProdControl.cs | 42 ++++++ .../WebUserControls/mod_datiConfermati.ascx | 4 +- .../WebUserControls/mod_listaStatiEventi.ascx | 138 ++++-------------- .../mod_listaStatiEventi.ascx.cs | 16 +- .../mod_listaStatiEventi.ascx.designer.cs | 68 ++------- MP-Site/WebUserControls/mod_logControlli.ascx | 2 + .../WebUserControls/mod_logControlli.ascx.cs | 17 +++ .../mod_logControlli.ascx.designer.cs | 15 ++ MP-Site/WebUserControls/mod_logEventi.ascx | 43 ++++++ MP-Site/WebUserControls/mod_logEventi.ascx.cs | 26 ++++ .../mod_logEventi.ascx.designer.cs | 51 +++++++ MP-Site/WebUserControls/mod_logScarti.ascx | 2 + MP-Site/WebUserControls/mod_logScarti.ascx.cs | 17 +++ .../mod_logScarti.ascx.designer.cs | 15 ++ MP-Site/WebUserControls/mod_logStati.ascx | 46 ++++++ MP-Site/WebUserControls/mod_logStati.ascx.cs | 27 ++++ .../mod_logStati.ascx.designer.cs | 51 +++++++ 20 files changed, 487 insertions(+), 196 deletions(-) create mode 100644 MP-Site/WebUserControls/baseProdControl.cs create mode 100644 MP-Site/WebUserControls/mod_logControlli.ascx create mode 100644 MP-Site/WebUserControls/mod_logControlli.ascx.cs create mode 100644 MP-Site/WebUserControls/mod_logControlli.ascx.designer.cs create mode 100644 MP-Site/WebUserControls/mod_logEventi.ascx create mode 100644 MP-Site/WebUserControls/mod_logEventi.ascx.cs create mode 100644 MP-Site/WebUserControls/mod_logEventi.ascx.designer.cs create mode 100644 MP-Site/WebUserControls/mod_logScarti.ascx create mode 100644 MP-Site/WebUserControls/mod_logScarti.ascx.cs create mode 100644 MP-Site/WebUserControls/mod_logScarti.ascx.designer.cs create mode 100644 MP-Site/WebUserControls/mod_logStati.ascx create mode 100644 MP-Site/WebUserControls/mod_logStati.ascx.cs create mode 100644 MP-Site/WebUserControls/mod_logStati.ascx.designer.cs diff --git a/Jenkinsfile b/Jenkinsfile index 9b330c2d..ae0046f7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,9 +18,9 @@ pipeline { /* calcolo numero versione... diverso x branch MASTER/DEVELOP */ script { - withEnv(['NEXT_BUILD_NUMBER=1131']) { - // env.versionNumber = VersionNumber(versionNumberString : '6.3.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true) - env.versionNumber = VersionNumber(versionNumberString : '6.3.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}') + withEnv(['NEXT_BUILD_NUMBER=1132']) { + // env.versionNumber = VersionNumber(versionNumberString : '6.4.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true) + env.versionNumber = VersionNumber(versionNumberString : '6.4.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}') env.APP_NAME = 'MAPO' } } diff --git a/MP-SITE/DettaglioMacchina.aspx b/MP-SITE/DettaglioMacchina.aspx index 4285ebab..56b5e573 100644 --- a/MP-SITE/DettaglioMacchina.aspx +++ b/MP-SITE/DettaglioMacchina.aspx @@ -33,33 +33,45 @@
-
-
-

- <%: traduci("StatoMacchina") %> -

-
-
-
- -
-
- -
-
- - - - - +
+
+
+
+

+ <%: traduci("StatoMacchina") %> +

+
+
+
+ +
+
+ +
+
+ + + + + +
+
-
- - - - - +
+
+
+

Dati Produzione +

+
+
+ + + + + +
+
diff --git a/MP-Site/MP-Site.csproj b/MP-Site/MP-Site.csproj index ce75ca4f..818a6004 100644 --- a/MP-Site/MP-Site.csproj +++ b/MP-Site/MP-Site.csproj @@ -309,6 +309,10 @@ + + + + @@ -580,6 +584,9 @@ MAPO_warning.master + + ASPXCodeBehind + mod_andamentoStorico.ascx ASPXCodeBehind @@ -657,6 +664,34 @@ mod_listaStatiEventi.ascx + + mod_logControlli.ascx + ASPXCodeBehind + + + mod_logControlli.ascx + + + mod_logEventi.ascx + ASPXCodeBehind + + + mod_logEventi.ascx + + + mod_logScarti.ascx + ASPXCodeBehind + + + mod_logScarti.ascx + + + mod_logStati.ascx + ASPXCodeBehind + + + mod_logStati.ascx + mod_mainMap.ascx ASPXCodeBehind diff --git a/MP-Site/WebUserControls/baseProdControl.cs b/MP-Site/WebUserControls/baseProdControl.cs new file mode 100644 index 00000000..f3556670 --- /dev/null +++ b/MP-Site/WebUserControls/baseProdControl.cs @@ -0,0 +1,42 @@ +using System; + +namespace MP_SITE.WebUserControls +{ + public class baseProdControl : System.Web.UI.UserControl + { + public event EventHandler eh_doUpdate; + protected resoconti _resoconti; + protected int _numRighe = 17; + protected void Page_Load(object sender, EventArgs e) + { + _resoconti = new resoconti(); + if (!Page.IsPostBack) + { + aggiornamento(); + } + } + public virtual void aggiornamento() + { + + } + public int numRighe + { + get + { + return _numRighe; + } + set + { + _numRighe = value; + } + } + public void reportUpdate() + { + // alzo l'evento d update/inserimento e ricarico cache... + if (eh_doUpdate != null) + { + eh_doUpdate(this, new EventArgs()); + } + } + } +} \ No newline at end of file diff --git a/MP-Site/WebUserControls/mod_datiConfermati.ascx b/MP-Site/WebUserControls/mod_datiConfermati.ascx index 1f39acd7..ad0f2fb6 100644 --- a/MP-Site/WebUserControls/mod_datiConfermati.ascx +++ b/MP-Site/WebUserControls/mod_datiConfermati.ascx @@ -1,8 +1,8 @@ <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_datiConfermati.ascx.cs" Inherits="MP_SITE.WebUserControls.mod_datiConfermati" %>
- - + + diff --git a/MP-Site/WebUserControls/mod_listaStatiEventi.ascx b/MP-Site/WebUserControls/mod_listaStatiEventi.ascx index ec3f583d..b437dfa0 100644 --- a/MP-Site/WebUserControls/mod_listaStatiEventi.ascx +++ b/MP-Site/WebUserControls/mod_listaStatiEventi.ascx @@ -1,136 +1,58 @@ <%@ Control Language="C#" AutoEventWireup="true" Inherits="MP_SITE.WebUserControls.mod_listaStatiEventi" CodeBehind="mod_listaStatiEventi.ascx.cs" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> -<%@ Register Src="mod_infoAggiuntive.ascx" TagName="mod_infoAggiuntive" TagPrefix="uc1" %> -<%@ Register Src="mod_datiConfermati.ascx" TagName="mod_datiConfermati" TagPrefix="uc2" %> +<%@ Register Src="~/WebUserControls/mod_infoAggiuntive.ascx" TagName="mod_infoAggiuntive" TagPrefix="uc1" %> +<%@ Register Src="~/WebUserControls/mod_datiConfermati.ascx" TagName="mod_datiConfermati" TagPrefix="uc2" %> +<%@ Register Src="~/WebUserControls/mod_logStati.ascx" TagPrefix="uc1" TagName="mod_logStati" %> +<%@ Register Src="~/WebUserControls/mod_logEventi.ascx" TagPrefix="uc1" TagName="mod_logEventi" %> - + ActiveTabIndex="0" Width="100%"> + Produzione - - + + Dati Confermati - + - + - Elenco Stati + Log Stati - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Excel Stati - solo macchina corrente - - - Excel Stati - tutte le macchine + + - + - Log eventi + Log Eventi + + + + + + + + Log Controlli + + + + + + + Log Scarti - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Excel Eventi - solo macchina corrente - - Excel Eventi - tutte le macchine diff --git a/MP-Site/WebUserControls/mod_listaStatiEventi.ascx.cs b/MP-Site/WebUserControls/mod_listaStatiEventi.ascx.cs index 6965c67a..53e183f2 100644 --- a/MP-Site/WebUserControls/mod_listaStatiEventi.ascx.cs +++ b/MP-Site/WebUserControls/mod_listaStatiEventi.ascx.cs @@ -18,8 +18,12 @@ namespace MP_SITE.WebUserControls { aggiornamento(); } - //ods_DiarioDiBordo.TypeName = "MapoDb.DataLayer.obj.taStati"; - //ods_EventList.TypeName = "MapoDb.DataLayer.obj.taEventi"; + mod_logStati.eh_doUpdate += Mod_logStati_eh_doUpdate; + } + + private void Mod_logStati_eh_doUpdate(object sender, EventArgs e) + { + reportUpdate(); } protected void reportUpdate() @@ -93,10 +97,10 @@ namespace MP_SITE.WebUserControls { logger.lg.scriviLog("inizio caricamento dati", SteamWare.tipoLog.INFO); } - gvStati.PageSize = _numRighe; - gvEventi.PageSize = _numRighe; - ods_DiarioDiBordo.DataBind(); - ods_EventList.DataBind(); + //gvStati.PageSize = _numRighe; + //ods_DiarioDiBordo.DataBind(); + //gvEventi.PageSize = _numRighe; + //ods_EventList.DataBind(); mod_datiConfermati1.doUpdate(); mod_infoAggiuntive1.doUpdate(); if (memLayer.ML.CRI("_logLevel") > 5) diff --git a/MP-Site/WebUserControls/mod_listaStatiEventi.ascx.designer.cs b/MP-Site/WebUserControls/mod_listaStatiEventi.ascx.designer.cs index 223b8fde..626def6c 100644 --- a/MP-Site/WebUserControls/mod_listaStatiEventi.ascx.designer.cs +++ b/MP-Site/WebUserControls/mod_listaStatiEventi.ascx.designer.cs @@ -22,13 +22,13 @@ namespace MP_SITE.WebUserControls { protected global::AjaxControlToolkit.TabContainer TabContLogs; /// - /// Controllo TabDatiAggiuntivi. + /// Controllo TabProduzione. /// /// /// Campo generato automaticamente. /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. /// - protected global::AjaxControlToolkit.TabPanel TabDatiAggiuntivi; + protected global::AjaxControlToolkit.TabPanel TabProduzione; /// /// Controllo mod_infoAggiuntive1. @@ -40,13 +40,13 @@ namespace MP_SITE.WebUserControls { protected global::MP_SITE.WebUserControls.mod_infoAggiuntive mod_infoAggiuntive1; /// - /// Controllo DatiConfermati. + /// Controllo TabDatiConfermati. /// /// /// Campo generato automaticamente. /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. /// - protected global::AjaxControlToolkit.TabPanel DatiConfermati; + protected global::AjaxControlToolkit.TabPanel TabDatiConfermati; /// /// Controllo mod_datiConfermati1. @@ -58,93 +58,57 @@ namespace MP_SITE.WebUserControls { protected global::MP_SITE.WebUserControls.mod_datiConfermati mod_datiConfermati1; /// - /// Controllo TabStati. + /// Controllo TabLogStati. /// /// /// Campo generato automaticamente. /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. /// - protected global::AjaxControlToolkit.TabPanel TabStati; + protected global::AjaxControlToolkit.TabPanel TabLogStati; /// - /// Controllo gvStati. + /// Controllo mod_logStati. /// /// /// Campo generato automaticamente. /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. /// - protected global::System.Web.UI.WebControls.GridView gvStati; + protected global::MP_SITE.WebUserControls.mod_logStati mod_logStati; /// - /// Controllo ods_DiarioDiBordo. + /// Controllo TabLogEventi. /// /// /// Campo generato automaticamente. /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. /// - protected global::System.Web.UI.WebControls.ObjectDataSource ods_DiarioDiBordo; + protected global::AjaxControlToolkit.TabPanel TabLogEventi; /// - /// Controllo HyperLink1. + /// Controllo mod_logEventi. /// /// /// Campo generato automaticamente. /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. /// - protected global::System.Web.UI.WebControls.HyperLink HyperLink1; + protected global::MP_SITE.WebUserControls.mod_logEventi mod_logEventi; /// - /// Controllo HyperLink3. + /// Controllo TabLogControlli. /// /// /// Campo generato automaticamente. /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. /// - protected global::System.Web.UI.WebControls.HyperLink HyperLink3; + protected global::AjaxControlToolkit.TabPanel TabLogControlli; /// - /// Controllo TabEventi. + /// Controllo TabLogScarti. /// /// /// Campo generato automaticamente. /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. /// - protected global::AjaxControlToolkit.TabPanel TabEventi; - - /// - /// Controllo gvEventi. - /// - /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. - /// - protected global::System.Web.UI.WebControls.GridView gvEventi; - - /// - /// Controllo ods_EventList. - /// - /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. - /// - protected global::System.Web.UI.WebControls.ObjectDataSource ods_EventList; - - /// - /// Controllo HyperLink2. - /// - /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. - /// - protected global::System.Web.UI.WebControls.HyperLink HyperLink2; - - /// - /// Controllo HyperLink4. - /// - /// - /// Campo generato automaticamente. - /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. - /// - protected global::System.Web.UI.WebControls.HyperLink HyperLink4; + protected global::AjaxControlToolkit.TabPanel TabLogScarti; } } diff --git a/MP-Site/WebUserControls/mod_logControlli.ascx b/MP-Site/WebUserControls/mod_logControlli.ascx new file mode 100644 index 00000000..8467a8fa --- /dev/null +++ b/MP-Site/WebUserControls/mod_logControlli.ascx @@ -0,0 +1,2 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_logControlli.ascx.cs" Inherits="MP_SITE.WebUserControls.mod_logControlli" %> +WIP \ No newline at end of file diff --git a/MP-Site/WebUserControls/mod_logControlli.ascx.cs b/MP-Site/WebUserControls/mod_logControlli.ascx.cs new file mode 100644 index 00000000..69c84274 --- /dev/null +++ b/MP-Site/WebUserControls/mod_logControlli.ascx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace MP_SITE.WebUserControls +{ + public partial class mod_logControlli : System.Web.UI.UserControl + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/MP-Site/WebUserControls/mod_logControlli.ascx.designer.cs b/MP-Site/WebUserControls/mod_logControlli.ascx.designer.cs new file mode 100644 index 00000000..f07b7000 --- /dev/null +++ b/MP-Site/WebUserControls/mod_logControlli.ascx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace MP_SITE.WebUserControls { + + + public partial class mod_logControlli { + } +} diff --git a/MP-Site/WebUserControls/mod_logEventi.ascx b/MP-Site/WebUserControls/mod_logEventi.ascx new file mode 100644 index 00000000..0b93ca08 --- /dev/null +++ b/MP-Site/WebUserControls/mod_logEventi.ascx @@ -0,0 +1,43 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_logEventi.ascx.cs" Inherits="MP_SITE.WebUserControls.mod_logEventi" %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Excel Eventi - solo macchina corrente +Excel Eventi - tutte le macchine \ No newline at end of file diff --git a/MP-Site/WebUserControls/mod_logEventi.ascx.cs b/MP-Site/WebUserControls/mod_logEventi.ascx.cs new file mode 100644 index 00000000..e9b8ffbc --- /dev/null +++ b/MP-Site/WebUserControls/mod_logEventi.ascx.cs @@ -0,0 +1,26 @@ +using SteamWare; +using System; + +namespace MP_SITE.WebUserControls +{ + public partial class mod_logEventi : baseProdControl + { + public override void aggiornamento() + { + if (memLayer.ML.CRI("_logLevel") > 5) + { + logger.lg.scriviLog("inizio caricamento dati LogEventi", tipoLog.INFO); + } + gvEventi.PageSize = _numRighe; + ods_EventList.DataBind(); + if (memLayer.ML.CRI("_logLevel") > 5) + { + logger.lg.scriviLog("fine caricamento dati LogEventi", tipoLog.INFO); + } + } + public void reportUpdt(object sender, EventArgs e) + { + reportUpdate(); + } + } +} \ No newline at end of file diff --git a/MP-Site/WebUserControls/mod_logEventi.ascx.designer.cs b/MP-Site/WebUserControls/mod_logEventi.ascx.designer.cs new file mode 100644 index 00000000..2808e632 --- /dev/null +++ b/MP-Site/WebUserControls/mod_logEventi.ascx.designer.cs @@ -0,0 +1,51 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace MP_SITE.WebUserControls { + + + public partial class mod_logEventi { + + /// + /// Controllo gvEventi. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.GridView gvEventi; + + /// + /// Controllo ods_EventList. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.ObjectDataSource ods_EventList; + + /// + /// Controllo HyperLink2. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.HyperLink HyperLink2; + + /// + /// Controllo HyperLink4. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.HyperLink HyperLink4; + } +} diff --git a/MP-Site/WebUserControls/mod_logScarti.ascx b/MP-Site/WebUserControls/mod_logScarti.ascx new file mode 100644 index 00000000..922881aa --- /dev/null +++ b/MP-Site/WebUserControls/mod_logScarti.ascx @@ -0,0 +1,2 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_logScarti.ascx.cs" Inherits="MP_SITE.WebUserControls.mod_logScarti" %> +WIP \ No newline at end of file diff --git a/MP-Site/WebUserControls/mod_logScarti.ascx.cs b/MP-Site/WebUserControls/mod_logScarti.ascx.cs new file mode 100644 index 00000000..b23388de --- /dev/null +++ b/MP-Site/WebUserControls/mod_logScarti.ascx.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI; +using System.Web.UI.WebControls; + +namespace MP_SITE.WebUserControls +{ + public partial class mod_logScarti : System.Web.UI.UserControl + { + protected void Page_Load(object sender, EventArgs e) + { + + } + } +} \ No newline at end of file diff --git a/MP-Site/WebUserControls/mod_logScarti.ascx.designer.cs b/MP-Site/WebUserControls/mod_logScarti.ascx.designer.cs new file mode 100644 index 00000000..9592f67a --- /dev/null +++ b/MP-Site/WebUserControls/mod_logScarti.ascx.designer.cs @@ -0,0 +1,15 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace MP_SITE.WebUserControls { + + + public partial class mod_logScarti { + } +} diff --git a/MP-Site/WebUserControls/mod_logStati.ascx b/MP-Site/WebUserControls/mod_logStati.ascx new file mode 100644 index 00000000..7e3a4ea8 --- /dev/null +++ b/MP-Site/WebUserControls/mod_logStati.ascx @@ -0,0 +1,46 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_logStati.ascx.cs" Inherits="MP_SITE.WebUserControls.mod_logStati" %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Excel Stati - solo macchina corrente +- + Excel Stati - tutte le macchine + diff --git a/MP-Site/WebUserControls/mod_logStati.ascx.cs b/MP-Site/WebUserControls/mod_logStati.ascx.cs new file mode 100644 index 00000000..a669a0da --- /dev/null +++ b/MP-Site/WebUserControls/mod_logStati.ascx.cs @@ -0,0 +1,27 @@ +using SteamWare; +using System; + +namespace MP_SITE.WebUserControls +{ + public partial class mod_logStati : baseProdControl + { + public override void aggiornamento() + { + if (memLayer.ML.CRI("_logLevel") > 5) + { + logger.lg.scriviLog("inizio caricamento dati LogStati", tipoLog.INFO); + } + gvStati.PageSize = _numRighe; + ods_DiarioDiBordo.DataBind(); + if (memLayer.ML.CRI("_logLevel") > 5) + { + logger.lg.scriviLog("fine caricamento dati LogStati", tipoLog.INFO); + } + } + public void reportUpdt(object sender, EventArgs e) + { + reportUpdate(); + } + + } +} \ No newline at end of file diff --git a/MP-Site/WebUserControls/mod_logStati.ascx.designer.cs b/MP-Site/WebUserControls/mod_logStati.ascx.designer.cs new file mode 100644 index 00000000..aaaa8aea --- /dev/null +++ b/MP-Site/WebUserControls/mod_logStati.ascx.designer.cs @@ -0,0 +1,51 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// +// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace MP_SITE.WebUserControls { + + + public partial class mod_logStati { + + /// + /// Controllo gvStati. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.GridView gvStati; + + /// + /// Controllo ods_DiarioDiBordo. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.ObjectDataSource ods_DiarioDiBordo; + + /// + /// Controllo HyperLink1. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.HyperLink HyperLink1; + + /// + /// Controllo HyperLink3. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.HyperLink HyperLink3; + } +}