diff --git a/GMW/GMW.csproj b/GMW/GMW.csproj index 34b6e5f6..6c68d7bc 100644 --- a/GMW/GMW.csproj +++ b/GMW/GMW.csproj @@ -615,6 +615,13 @@ mod_detailUDC_storico.ascx + + mod_detLDP.ascx + ASPXCodeBehind + + + mod_detLDP.ascx + mod_dettaglioBlocco.ascx ASPXCodeBehind @@ -1177,6 +1184,7 @@ + diff --git a/GMW/WebUserControls/mod_SearchProvUDC.ascx b/GMW/WebUserControls/mod_SearchProvUDC.ascx index 88bd79e9..29a116f1 100644 --- a/GMW/WebUserControls/mod_SearchProvUDC.ascx +++ b/GMW/WebUserControls/mod_SearchProvUDC.ascx @@ -4,6 +4,7 @@ <%@ Register Src="mod_execUDC.ascx" TagName="mod_execUDC" TagPrefix="uc2" %> <%@ Register Src="mod_detailUDC.ascx" TagName="mod_detailUDC" TagPrefix="uc3" %> <%@ Register src="mod_detailUDC_storico.ascx" tagname="mod_detailUDC_storico" tagprefix="uc4" %> +<%@ Register src="mod_detLDP.ascx" tagname="mod_detLDP" tagprefix="uc5" %>
@@ -18,6 +19,9 @@ + + + diff --git a/GMW/WebUserControls/mod_SearchProvUDC.ascx.cs b/GMW/WebUserControls/mod_SearchProvUDC.ascx.cs index 3b574a51..699b965c 100644 --- a/GMW/WebUserControls/mod_SearchProvUDC.ascx.cs +++ b/GMW/WebUserControls/mod_SearchProvUDC.ascx.cs @@ -94,6 +94,7 @@ namespace GMW.WebUserControls } mod_detailUDC1.Visible = showCurUdc; mod_detailUDC_storico1.Visible = showHistUdc; + mod_detLDP1.Visible = showCurUdc; } void mod_execUDC1_eh_nuovoValore(object sender, EventArgs e) @@ -154,6 +155,7 @@ namespace GMW.WebUserControls { mod_detailUDC1.Visible = true; mod_detailUDC1.doUpdate(); + mod_detLDP1.doUpdate(); mod_execUDC1.Visible = !udcConsumato; // salvo dati UDC selezionato... UDC_sel c'è già... string UDC = memLayer.ML.StringSessionObj("UDC_sel"); diff --git a/GMW/WebUserControls/mod_SearchProvUDC.ascx.designer.cs b/GMW/WebUserControls/mod_SearchProvUDC.ascx.designer.cs index c109301c..308c5d95 100644 --- a/GMW/WebUserControls/mod_SearchProvUDC.ascx.designer.cs +++ b/GMW/WebUserControls/mod_SearchProvUDC.ascx.designer.cs @@ -65,5 +65,14 @@ namespace GMW.WebUserControls { /// To modify move field declaration from designer file to code-behind file. /// protected global::GMW.WebUserControls.mod_execUDC mod_execUDC1; + + /// + /// mod_detLDP1 control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::GMW.WebUserControls.mod_detLDP mod_detLDP1; } } diff --git a/GMW/WebUserControls/mod_detLDP.ascx b/GMW/WebUserControls/mod_detLDP.ascx new file mode 100644 index 00000000..0eeb2189 --- /dev/null +++ b/GMW/WebUserControls/mod_detLDP.ascx @@ -0,0 +1,19 @@ +<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_detLDP.ascx.cs" Inherits="GMW.WebUserControls.mod_detLDP" %> + + + + + + + + + + + + + + + + + + diff --git a/GMW/WebUserControls/mod_detLDP.ascx.cs b/GMW/WebUserControls/mod_detLDP.ascx.cs new file mode 100644 index 00000000..c6ceed6c --- /dev/null +++ b/GMW/WebUserControls/mod_detLDP.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 GMW.WebUserControls +{ + public partial class mod_detLDP : System.Web.UI.UserControl + { + public void doUpdate() + { + grView.DataBind(); + } + } +} \ No newline at end of file diff --git a/GMW/WebUserControls/mod_detLDP.ascx.designer.cs b/GMW/WebUserControls/mod_detLDP.ascx.designer.cs new file mode 100644 index 00000000..03bb3ca2 --- /dev/null +++ b/GMW/WebUserControls/mod_detLDP.ascx.designer.cs @@ -0,0 +1,33 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace GMW.WebUserControls { + + + public partial class mod_detLDP { + + /// + /// grView control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.GridView grView; + + /// + /// ods control. + /// + /// + /// Auto-generated field. + /// To modify move field declaration from designer file to code-behind file. + /// + protected global::System.Web.UI.WebControls.ObjectDataSource ods; + } +} diff --git a/GMW/bin/GMW.dll b/GMW/bin/GMW.dll index e90107af..8f197f85 100644 Binary files a/GMW/bin/GMW.dll and b/GMW/bin/GMW.dll differ diff --git a/GMW/bin/GMW_data.dll b/GMW/bin/GMW_data.dll index 0a84944f..8aaf6115 100644 Binary files a/GMW/bin/GMW_data.dll and b/GMW/bin/GMW_data.dll differ diff --git a/GMW/bin/SteamWare.dll b/GMW/bin/SteamWare.dll index ec4faaf8..35229413 100644 Binary files a/GMW/bin/SteamWare.dll and b/GMW/bin/SteamWare.dll differ