diff --git a/ScheMe/AccettazioneEdit.aspx.cs b/ScheMe/AccettazioneEdit.aspx.cs index c32f6f5..7dda704 100644 --- a/ScheMe/AccettazioneEdit.aspx.cs +++ b/ScheMe/AccettazioneEdit.aspx.cs @@ -165,12 +165,16 @@ namespace ScheMe private void salvaGruppi(int currIdxPaz) { - // elimino gruppi precedenti x utente... - DtProxy.man.taP2L.deleteByIdxPaz(currIdxPaz); - // salvo i gruppi selezionati... - DtProxy.man.taP2L.Insert(currIdxPaz, ddlFiltUno.SelectedValue); - DtProxy.man.taP2L.Insert(currIdxPaz, ddlFiltDue.SelectedValue); - btnSave.Enabled = false; + // controllo almeno 1 filtro attivo... + if (ddlFiltUno.SelectedValue != "*") + { + // elimino gruppi precedenti x utente... + DtProxy.man.taP2L.deleteByIdxPaz(currIdxPaz); + // salvo i gruppi selezionati... + DtProxy.man.taP2L.Insert(currIdxPaz, ddlFiltUno.SelectedValue); + DtProxy.man.taP2L.Insert(currIdxPaz, ddlFiltDue.SelectedValue); + btnSave.Enabled = false; + } } } } \ No newline at end of file diff --git a/ScheMe/WebUserControls/mod_header.ascx b/ScheMe/WebUserControls/mod_header.ascx index 73f7c1b..ccdb01d 100644 --- a/ScheMe/WebUserControls/mod_header.ascx +++ b/ScheMe/WebUserControls/mod_header.ascx @@ -1,9 +1,9 @@ <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_header.ascx.cs" Inherits="ScheMe.WebUserControls.mod_header" %> -

ScheMe - <%: titolo %>

- - - User Admin +

ScheMe - <%: titolo %>

+ + +User Admin
<%: CognomeNome %> diff --git a/VersGen/VersGen.cs b/VersGen/VersGen.cs index 3ec1645..97da05d 100644 --- a/VersGen/VersGen.cs +++ b/VersGen/VersGen.cs @@ -5,7 +5,7 @@ using System.Reflection; -[assembly: AssemblyVersion("2.1.1701.863")] -[assembly: AssemblyFileVersion("2.1.1701.863")] +[assembly: AssemblyVersion("2.1.1703.1012")] +[assembly: AssemblyFileVersion("2.1.1703.1012")] [assembly: AssemblyCopyright("Steamware © 2007-2017")] [assembly: AssemblyCompany("Steamware")] diff --git a/VersGen/bin/Debug/VersGen.dll b/VersGen/bin/Debug/VersGen.dll index 3148ed7..87144b5 100644 Binary files a/VersGen/bin/Debug/VersGen.dll and b/VersGen/bin/Debug/VersGen.dll differ