Update metodo selezione anno (da-a)
This commit is contained in:
@@ -9,12 +9,15 @@
|
||||
</div>
|
||||
<div class="flLeft" style="font-size: 0.80em; width: 40%;">
|
||||
<asp:DropDownList runat="server" ID="ddlAnno" DataSourceID="odsAnno" DataTextField="label" DataValueField="value" AutoPostBack="True" OnSelectedIndexChanged="ddlAnno_SelectedIndexChanged" Font-Size="0.9em"></asp:DropDownList>
|
||||
<asp:ObjectDataSource ID="odsAnno" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getValidDesc" TypeName="WebSCR_data.DS_UtilityTableAdapters.ListValuesTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:Parameter DefaultValue="*" Name="TableName" Type="String" />
|
||||
<asp:Parameter DefaultValue="anno" Name="FieldName" Type="String" />
|
||||
<asp:ObjectDataSource ID="odsAnno" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getInterval" TypeName="WebSCR_data.DS_UtilityTableAdapters.ListValuesTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:ControlParameter ControlID="hfMinVal" DefaultValue="2012" Name="minVal" PropertyName="Value" Type="Int32" />
|
||||
<asp:ControlParameter ControlID="hfMaxVal" DefaultValue="2100" Name="maxVal" PropertyName="Value" Type="Int32" />
|
||||
<asp:Parameter DefaultValue="DESC" Name="Ord" Type="String" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:HiddenField runat="server" ID="hfMinVal" />
|
||||
<asp:HiddenField runat="server" ID="hfMaxVal" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui-block-c">
|
||||
|
||||
@@ -1,199 +1,208 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using SteamWare;
|
||||
using System;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using WebSCR_data;
|
||||
using SteamWare;
|
||||
|
||||
namespace WebSCR.WebUserControls
|
||||
{
|
||||
public partial class mod_filtroZona : System.Web.UI.UserControl
|
||||
public partial class mod_filtroZona : System.Web.UI.UserControl
|
||||
{
|
||||
public event EventHandler eh_selIndir;
|
||||
/// <summary>
|
||||
/// solleva evento selezione data
|
||||
/// </summary>
|
||||
protected void reportEvent()
|
||||
{
|
||||
public event EventHandler eh_selIndir;
|
||||
/// <summary>
|
||||
/// solleva evento selezione data
|
||||
/// </summary>
|
||||
protected void reportEvent()
|
||||
{
|
||||
// evento!
|
||||
if (eh_selIndir != null)
|
||||
{
|
||||
eh_selIndir(this, new EventArgs());
|
||||
}
|
||||
}
|
||||
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!Page.IsPostBack)
|
||||
{
|
||||
doUpdate();
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// forza Update
|
||||
/// </summary>
|
||||
public void doUpdate()
|
||||
{
|
||||
txtCerca.Text = memLayer.ML.StringSessionObj("currDoc");
|
||||
if (memLayer.ML.isInSessionObject("currDoc"))
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("doUpdate - INIZIO refresh x search");
|
||||
}
|
||||
ddlAnno.DataBind();
|
||||
// salvo anno..
|
||||
memLayer.ML.setSessionVal("yearSel", ddlAnno.SelectedValue);
|
||||
refreshSearch();
|
||||
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("doUpdate - FINE refresh x search");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lblCliente.Text = "";
|
||||
lblIndirizzo.Text = "";
|
||||
lblZona.Text = "";
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// valore zona selezionata da QueryString
|
||||
/// </summary>
|
||||
public string Zona
|
||||
{
|
||||
get
|
||||
{
|
||||
string answ = "Z00";
|
||||
try
|
||||
{
|
||||
answ = lblZona.Text;
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
return answ;
|
||||
}
|
||||
set
|
||||
{
|
||||
string newVal = "Z00";
|
||||
if (value != newVal) newVal = value;
|
||||
lblZona.Text = newVal;
|
||||
}
|
||||
}
|
||||
public string ricerca
|
||||
{
|
||||
get
|
||||
{
|
||||
string answ = "";
|
||||
try
|
||||
{
|
||||
answ = txtCerca.Text.Trim().ToUpper();
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
// 2016.02.01 modifica se trovo OC0 --> OC0000000
|
||||
if (answ == "OC0" || answ == "OC00" || answ == "OC000")
|
||||
{
|
||||
answ = "OC0000000";
|
||||
txtCerca.Text = answ;
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
set
|
||||
{
|
||||
txtCerca.Text = value;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// effettua ricerca
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void txtCerca_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("txtCerca_TextChanged - INIZIO refresh x search");
|
||||
}
|
||||
refreshSearch();
|
||||
reportEvent();
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("txtCerca_TextChanged - FINE refresh x search");
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// refresh search da documento
|
||||
/// </summary>
|
||||
private void refreshSearch()
|
||||
{
|
||||
// cerco per DOCUMENTO...
|
||||
DS_Applicazione.v_clientiZoneRow riga = null;
|
||||
if (ricerca != "")
|
||||
{
|
||||
try
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("refreshSearch - PRE search");
|
||||
}
|
||||
riga = DtProxy.man.taVcz.getBySearch(ricerca, Convert.ToInt32(ddlAnno.SelectedValue))[0];
|
||||
if (riga != null)
|
||||
{
|
||||
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("refreshSearch - post search popolo dati");
|
||||
}
|
||||
lblCliente.Text = string.Format("<b>{0}</b><br />{1} ", riga.RagSoc, riga.Indir);
|
||||
lblIndirizzo.Text = string.Format("{0} | {1}", riga.Localita, riga.Prov);
|
||||
lblZona.Text = riga.Zona;
|
||||
Zona = riga.Zona;
|
||||
memLayer.ML.setSessionVal("currDoc", ricerca);
|
||||
memLayer.ML.setSessionVal("annoDoc", ddlAnno.SelectedValue);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("refreshSearch - riga vuota");
|
||||
}
|
||||
memLayer.ML.emptySessionVal("currDoc");
|
||||
}
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
logger.lg.scriviLog(string.Format("Eccezione in refreshSearch:{0}", exc));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Zona = "Z00";
|
||||
lblCliente.Text = "";
|
||||
lblZona.Text = "";
|
||||
lblIndirizzo.Text = "";
|
||||
}
|
||||
}
|
||||
|
||||
protected void ddlAnno_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("ddlAnno_SelectedIndexChanged - INIZIO refresh x search");
|
||||
}
|
||||
// salvo anno
|
||||
memLayer.ML.setSessionVal("yearSel", ddlAnno.SelectedValue);
|
||||
refreshSearch();
|
||||
reportEvent();
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("ddlAnno_SelectedIndexChanged - FINE refresh x search");
|
||||
}
|
||||
}
|
||||
|
||||
// evento!
|
||||
if (eh_selIndir != null)
|
||||
{
|
||||
eh_selIndir(this, new EventArgs());
|
||||
}
|
||||
}
|
||||
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
if (!Page.IsPostBack)
|
||||
{
|
||||
fixAnni();
|
||||
doUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
private void fixAnni()
|
||||
{
|
||||
// imposto valori selezione dal 2012 ad anno corrente
|
||||
hfMinVal.Value = "2012";
|
||||
hfMaxVal.Value = DateTime.Now.Year.ToString();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// forza Update
|
||||
/// </summary>
|
||||
public void doUpdate()
|
||||
{
|
||||
txtCerca.Text = memLayer.ML.StringSessionObj("currDoc");
|
||||
if (memLayer.ML.isInSessionObject("currDoc"))
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("doUpdate - INIZIO refresh x search");
|
||||
}
|
||||
ddlAnno.DataBind();
|
||||
// salvo anno..
|
||||
memLayer.ML.setSessionVal("yearSel", ddlAnno.SelectedValue);
|
||||
refreshSearch();
|
||||
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("doUpdate - FINE refresh x search");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lblCliente.Text = "";
|
||||
lblIndirizzo.Text = "";
|
||||
lblZona.Text = "";
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// valore zona selezionata da QueryString
|
||||
/// </summary>
|
||||
public string Zona
|
||||
{
|
||||
get
|
||||
{
|
||||
string answ = "Z00";
|
||||
try
|
||||
{
|
||||
answ = lblZona.Text;
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
return answ;
|
||||
}
|
||||
set
|
||||
{
|
||||
string newVal = "Z00";
|
||||
if (value != newVal)
|
||||
{
|
||||
newVal = value;
|
||||
}
|
||||
|
||||
lblZona.Text = newVal;
|
||||
}
|
||||
}
|
||||
public string ricerca
|
||||
{
|
||||
get
|
||||
{
|
||||
string answ = "";
|
||||
try
|
||||
{
|
||||
answ = txtCerca.Text.Trim().ToUpper();
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
// 2016.02.01 modifica se trovo OC0 --> OC0000000
|
||||
if (answ == "OC0" || answ == "OC00" || answ == "OC000")
|
||||
{
|
||||
answ = "OC0000000";
|
||||
txtCerca.Text = answ;
|
||||
}
|
||||
return answ;
|
||||
}
|
||||
set
|
||||
{
|
||||
txtCerca.Text = value;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// effettua ricerca
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void txtCerca_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("txtCerca_TextChanged - INIZIO refresh x search");
|
||||
}
|
||||
refreshSearch();
|
||||
reportEvent();
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("txtCerca_TextChanged - FINE refresh x search");
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// refresh search da documento
|
||||
/// </summary>
|
||||
private void refreshSearch()
|
||||
{
|
||||
// cerco per DOCUMENTO...
|
||||
DS_Applicazione.v_clientiZoneRow riga = null;
|
||||
if (ricerca != "")
|
||||
{
|
||||
try
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("refreshSearch - PRE search");
|
||||
}
|
||||
riga = DtProxy.man.taVcz.getBySearch(ricerca, Convert.ToInt32(ddlAnno.SelectedValue))[0];
|
||||
if (riga != null)
|
||||
{
|
||||
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("refreshSearch - post search popolo dati");
|
||||
}
|
||||
lblCliente.Text = string.Format("<b>{0}</b><br />{1} ", riga.RagSoc, riga.Indir);
|
||||
lblIndirizzo.Text = string.Format("{0} | {1}", riga.Localita, riga.Prov);
|
||||
lblZona.Text = riga.Zona;
|
||||
Zona = riga.Zona;
|
||||
memLayer.ML.setSessionVal("currDoc", ricerca);
|
||||
memLayer.ML.setSessionVal("annoDoc", ddlAnno.SelectedValue);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("refreshSearch - riga vuota");
|
||||
}
|
||||
memLayer.ML.emptySessionVal("currDoc");
|
||||
}
|
||||
}
|
||||
catch (Exception exc)
|
||||
{
|
||||
logger.lg.scriviLog(string.Format("Eccezione in refreshSearch:{0}", exc));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Zona = "Z00";
|
||||
lblCliente.Text = "";
|
||||
lblZona.Text = "";
|
||||
lblIndirizzo.Text = "";
|
||||
}
|
||||
}
|
||||
|
||||
protected void ddlAnno_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("ddlAnno_SelectedIndexChanged - INIZIO refresh x search");
|
||||
}
|
||||
// salvo anno
|
||||
memLayer.ML.setSessionVal("yearSel", ddlAnno.SelectedValue);
|
||||
refreshSearch();
|
||||
reportEvent();
|
||||
if (memLayer.ML.CRI("_logLevel") > 5)
|
||||
{
|
||||
logger.lg.scriviLog("ddlAnno_SelectedIndexChanged - FINE refresh x search");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
+41
-23
@@ -1,10 +1,10 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// <generato automaticamente>
|
||||
// Codice generato da uno strumento.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
|
||||
// il codice viene rigenerato.
|
||||
// </generato automaticamente>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace WebSCR.WebUserControls {
|
||||
@@ -13,56 +13,74 @@ namespace WebSCR.WebUserControls {
|
||||
public partial class mod_filtroZona {
|
||||
|
||||
/// <summary>
|
||||
/// lblCliente control.
|
||||
/// Controllo lblCliente.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblCliente;
|
||||
|
||||
/// <summary>
|
||||
/// txtCerca control.
|
||||
/// Controllo txtCerca.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.TextBox txtCerca;
|
||||
|
||||
/// <summary>
|
||||
/// ddlAnno control.
|
||||
/// Controllo ddlAnno.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.DropDownList ddlAnno;
|
||||
|
||||
/// <summary>
|
||||
/// odsAnno control.
|
||||
/// Controllo odsAnno.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource odsAnno;
|
||||
|
||||
/// <summary>
|
||||
/// lblZona control.
|
||||
/// Controllo hfMinVal.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.HiddenField hfMinVal;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo hfMaxVal.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.HiddenField hfMaxVal;
|
||||
|
||||
/// <summary>
|
||||
/// Controllo lblZona.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblZona;
|
||||
|
||||
/// <summary>
|
||||
/// lblIndirizzo control.
|
||||
/// Controllo lblIndirizzo.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// Campo generato automaticamente.
|
||||
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblIndirizzo;
|
||||
}
|
||||
|
||||
Generated
+339
-302
File diff suppressed because it is too large
Load Diff
@@ -257,6 +257,19 @@ SELECT Orario FROM GiornoTipo WHERE (Orario = @Orario)</CommandText>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="WebSCRConnectionString (Settings)" DbObjectName="WebSCR.dbo.stp_listValues_getInterval" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getInterval" GetMethodModifier="Public" GetMethodName="getInterval" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getInterval" UserSourceName="getInterval">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_listValues_getInterval</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@minVal" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@maxVal" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Ord" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="WebSCRConnectionString (Settings)" DbObjectName="WebSCR.dbo.stp_listValues_getValidValues" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getValid" GetMethodModifier="Public" GetMethodName="getValid" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getValid" UserSourceName="getValid">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
@@ -353,7 +366,7 @@ SELECT Orario FROM GiornoTipo WHERE (Orario = @Orario)</CommandText>
|
||||
<xs:element name="DS_Utility" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DS_Utility" msprop:Generator_UserDSName="DS_Utility">
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element name="tblFiles" msprop:Generator_TableClassName="tblFilesDataTable" msprop:Generator_TableVarName="tabletblFiles" msprop:Generator_TablePropName="tblFiles" msprop:Generator_RowDeletingName="tblFilesRowDeleting" msprop:Generator_RowChangingName="tblFilesRowChanging" msprop:Generator_RowEvHandlerName="tblFilesRowChangeEventHandler" msprop:Generator_RowDeletedName="tblFilesRowDeleted" msprop:Generator_UserTableName="tblFiles" msprop:Generator_RowChangedName="tblFilesRowChanged" msprop:Generator_RowEvArgName="tblFilesRowChangeEvent" msprop:Generator_RowClassName="tblFilesRow">
|
||||
<xs:element name="tblFiles" msprop:Generator_TableClassName="tblFilesDataTable" msprop:Generator_TableVarName="tabletblFiles" msprop:Generator_RowChangedName="tblFilesRowChanged" msprop:Generator_TablePropName="tblFiles" msprop:Generator_RowDeletingName="tblFilesRowDeleting" msprop:Generator_RowChangingName="tblFilesRowChanging" msprop:Generator_RowEvHandlerName="tblFilesRowChangeEventHandler" msprop:Generator_RowDeletedName="tblFilesRowDeleted" msprop:Generator_RowClassName="tblFilesRow" msprop:Generator_UserTableName="tblFiles" msprop:Generator_RowEvArgName="tblFilesRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="idxFile" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnidxFile" msprop:Generator_ColumnPropNameInRow="idxFile" msprop:Generator_ColumnPropNameInTable="idxFileColumn" msprop:Generator_UserColumnName="idxFile" type="xs:int" />
|
||||
@@ -379,14 +392,14 @@ SELECT Orario FROM GiornoTipo WHERE (Orario = @Orario)</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="GiornoTipo" msprop:Generator_TableClassName="GiornoTipoDataTable" msprop:Generator_TableVarName="tableGiornoTipo" msprop:Generator_TablePropName="GiornoTipo" msprop:Generator_RowDeletingName="GiornoTipoRowDeleting" msprop:Generator_RowChangingName="GiornoTipoRowChanging" msprop:Generator_RowEvHandlerName="GiornoTipoRowChangeEventHandler" msprop:Generator_RowDeletedName="GiornoTipoRowDeleted" msprop:Generator_UserTableName="GiornoTipo" msprop:Generator_RowChangedName="GiornoTipoRowChanged" msprop:Generator_RowEvArgName="GiornoTipoRowChangeEvent" msprop:Generator_RowClassName="GiornoTipoRow">
|
||||
<xs:element name="GiornoTipo" msprop:Generator_TableClassName="GiornoTipoDataTable" msprop:Generator_TableVarName="tableGiornoTipo" msprop:Generator_RowChangedName="GiornoTipoRowChanged" msprop:Generator_TablePropName="GiornoTipo" msprop:Generator_RowDeletingName="GiornoTipoRowDeleting" msprop:Generator_RowChangingName="GiornoTipoRowChanging" msprop:Generator_RowEvHandlerName="GiornoTipoRowChangeEventHandler" msprop:Generator_RowDeletedName="GiornoTipoRowDeleted" msprop:Generator_RowClassName="GiornoTipoRow" msprop:Generator_UserTableName="GiornoTipo" msprop:Generator_RowEvArgName="GiornoTipoRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Orario" msprop:Generator_ColumnVarNameInTable="columnOrario" msprop:Generator_ColumnPropNameInRow="Orario" msprop:Generator_ColumnPropNameInTable="OrarioColumn" msprop:Generator_UserColumnName="Orario" type="xs:duration" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ListValues" msprop:Generator_TableClassName="ListValuesDataTable" msprop:Generator_TableVarName="tableListValues" msprop:Generator_RowChangedName="ListValuesRowChanged" msprop:Generator_TablePropName="ListValues" msprop:Generator_RowDeletingName="ListValuesRowDeleting" msprop:Generator_RowChangingName="ListValuesRowChanging" msprop:Generator_RowEvHandlerName="ListValuesRowChangeEventHandler" msprop:Generator_RowDeletedName="ListValuesRowDeleted" msprop:Generator_RowClassName="ListValuesRow" msprop:Generator_UserTableName="ListValues" msprop:Generator_RowEvArgName="ListValuesRowChangeEvent">
|
||||
<xs:element name="ListValues" msprop:Generator_TableClassName="ListValuesDataTable" msprop:Generator_TableVarName="tableListValues" msprop:Generator_TablePropName="ListValues" msprop:Generator_RowDeletingName="ListValuesRowDeleting" msprop:Generator_RowChangingName="ListValuesRowChanging" msprop:Generator_RowEvHandlerName="ListValuesRowChangeEventHandler" msprop:Generator_RowDeletedName="ListValuesRowDeleted" msprop:Generator_UserTableName="ListValues" msprop:Generator_RowChangedName="ListValuesRowChanged" msprop:Generator_RowEvArgName="ListValuesRowChangeEvent" msprop:Generator_RowClassName="ListValuesRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="TableName" msprop:Generator_ColumnVarNameInTable="columnTableName" msprop:Generator_ColumnPropNameInRow="TableName" msprop:Generator_ColumnPropNameInTable="TableNameColumn" msprop:Generator_UserColumnName="TableName">
|
||||
@@ -421,7 +434,7 @@ SELECT Orario FROM GiornoTipo WHERE (Orario = @Orario)</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Settimana" msprop:Generator_TableClassName="SettimanaDataTable" msprop:Generator_TableVarName="tableSettimana" msprop:Generator_TablePropName="Settimana" msprop:Generator_RowDeletingName="SettimanaRowDeleting" msprop:Generator_RowChangingName="SettimanaRowChanging" msprop:Generator_RowEvHandlerName="SettimanaRowChangeEventHandler" msprop:Generator_RowDeletedName="SettimanaRowDeleted" msprop:Generator_UserTableName="Settimana" msprop:Generator_RowChangedName="SettimanaRowChanged" msprop:Generator_RowEvArgName="SettimanaRowChangeEvent" msprop:Generator_RowClassName="SettimanaRow">
|
||||
<xs:element name="Settimana" msprop:Generator_TableClassName="SettimanaDataTable" msprop:Generator_TableVarName="tableSettimana" msprop:Generator_RowChangedName="SettimanaRowChanged" msprop:Generator_TablePropName="Settimana" msprop:Generator_RowDeletingName="SettimanaRowDeleting" msprop:Generator_RowChangingName="SettimanaRowChanging" msprop:Generator_RowEvHandlerName="SettimanaRowChangeEventHandler" msprop:Generator_RowDeletedName="SettimanaRowDeleted" msprop:Generator_RowClassName="SettimanaRow" msprop:Generator_UserTableName="Settimana" msprop:Generator_RowEvArgName="SettimanaRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Data" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnData" msprop:Generator_ColumnPropNameInRow="Data" msprop:Generator_ColumnPropNameInTable="DataColumn" msprop:Generator_UserColumnName="Data" type="xs:dateTime" minOccurs="0" />
|
||||
|
||||
@@ -6,9 +6,10 @@
|
||||
</autogenerated>-->
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-10" ViewPortY="-10" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<Shapes>
|
||||
<Shape ID="DesignTable:tblFiles" ZOrder="3" X="340" Y="324" Height="343" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
||||
<Shape ID="DesignTable:GiornoTipo" ZOrder="2" X="728" Y="314" Height="96" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="45" />
|
||||
<Shape ID="DesignTable:ListValues" ZOrder="1" X="714" Y="466" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:tblFiles" ZOrder="4" X="340" Y="324" Height="343" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
||||
<Shape ID="DesignTable:GiornoTipo" ZOrder="3" X="748" Y="229" Height="112" Width="194" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="53" />
|
||||
<Shape ID="DesignTable:ListValues" ZOrder="1" X="714" Y="458" Height="388" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="145" />
|
||||
<Shape ID="DesignTable:Settimana" ZOrder="2" X="47" Y="668" Height="112" Width="177" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="53" />
|
||||
</Shapes>
|
||||
<Connectors />
|
||||
</DiagramLayout>
|
||||
Reference in New Issue
Block a user