ok filtro data x MPP (visualizzazione, manca excel) --> da verificare elencoInterventi...

This commit is contained in:
Samuele E. Locatelli
2017-01-30 12:39:47 +01:00
parent 847227a56f
commit cce5912ede
33 changed files with 393 additions and 28217 deletions
+140 -21
View File
@@ -3482,6 +3482,10 @@ namespace GIM_data {
private global::System.Data.DataColumn columnconditio;
private global::System.Data.DataColumn columnunit;
private global::System.Data.DataColumn columnval;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public v_selPeriodiTradDataTable() {
@@ -3539,6 +3543,22 @@ namespace GIM_data {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn unitColumn {
get {
return this.columnunit;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public global::System.Data.DataColumn valColumn {
get {
return this.columnval;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Browsable(false)]
@@ -3576,12 +3596,14 @@ namespace GIM_data {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public v_selPeriodiTradRow Addv_selPeriodiTradRow(string value, string label, string conditio) {
public v_selPeriodiTradRow Addv_selPeriodiTradRow(string value, string label, string conditio, string unit, int val) {
v_selPeriodiTradRow rowv_selPeriodiTradRow = ((v_selPeriodiTradRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
value,
label,
conditio};
conditio,
unit,
val};
rowv_selPeriodiTradRow.ItemArray = columnValuesArray;
this.Rows.Add(rowv_selPeriodiTradRow);
return rowv_selPeriodiTradRow;
@@ -3607,6 +3629,8 @@ namespace GIM_data {
this.columnvalue = base.Columns["value"];
this.columnlabel = base.Columns["label"];
this.columnconditio = base.Columns["conditio"];
this.columnunit = base.Columns["unit"];
this.columnval = base.Columns["val"];
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -3618,6 +3642,10 @@ namespace GIM_data {
base.Columns.Add(this.columnlabel);
this.columnconditio = new global::System.Data.DataColumn("conditio", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnconditio);
this.columnunit = new global::System.Data.DataColumn("unit", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnunit);
this.columnval = new global::System.Data.DataColumn("val", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnval);
this.Constraints.Add(new global::System.Data.UniqueConstraint("v_selPeriodiTradKey1", new global::System.Data.DataColumn[] {
this.columnvalue,
this.columnconditio}, false));
@@ -3627,6 +3655,9 @@ namespace GIM_data {
this.columnlabel.MaxLength = 500;
this.columnconditio.AllowDBNull = false;
this.columnconditio.MaxLength = 3;
this.columnunit.AllowDBNull = false;
this.columnunit.MaxLength = 50;
this.columnval.AllowDBNull = false;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -7999,6 +8030,28 @@ namespace GIM_data {
this[this.tablev_selPeriodiTrad.conditioColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public string unit {
get {
return ((string)(this[this.tablev_selPeriodiTrad.unitColumn]));
}
set {
this[this.tablev_selPeriodiTrad.unitColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
public int val {
get {
return ((int)(this[this.tablev_selPeriodiTrad.valColumn]));
}
set {
this[this.tablev_selPeriodiTrad.valColumn] = value;
}
}
}
/// <summary>
@@ -11926,6 +11979,8 @@ namespace GIM_data.DS_utilityTableAdapters {
tableMapping.ColumnMappings.Add("value", "value");
tableMapping.ColumnMappings.Add("label", "label");
tableMapping.ColumnMappings.Add("conditio", "conditio");
tableMapping.ColumnMappings.Add("unit", "unit");
tableMapping.ColumnMappings.Add("val", "val");
this._adapter.TableMappings.Add(tableMapping);
}
@@ -11942,14 +11997,15 @@ namespace GIM_data.DS_utilityTableAdapters {
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[2];
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = "SELECT value, label, conditio FROM dbo.v_selPeriodiTrad";
this._commandCollection[0].CommandText = "SELECT * FROM dbo.v_selPeriodiTrad";
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[1].Connection = this.Connection;
this._commandCollection[1].CommandText = "SELECT conditio, label, value FROM v_selPeriodiTrad WHERE (conditio = @conditio) " +
"ORDER BY value";
this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@conditio", global::System.Data.SqlDbType.NVarChar, 3, global::System.Data.ParameterDirection.Input, 0, 0, "conditio", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].CommandText = "dbo.stp_vsp_getByConditio";
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("@conditio", 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("@tPeriodo", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -11980,13 +12036,19 @@ namespace GIM_data.DS_utilityTableAdapters {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
public virtual DS_utility.v_selPeriodiTradDataTable getByConditio(string conditio) {
public virtual DS_utility.v_selPeriodiTradDataTable getByConditio(string conditio, global::System.Nullable<int> tPeriodo) {
this.Adapter.SelectCommand = this.CommandCollection[1];
if ((conditio == null)) {
throw new global::System.ArgumentNullException("conditio");
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[0].Value = ((string)(conditio));
this.Adapter.SelectCommand.Parameters[1].Value = ((string)(conditio));
}
if ((tPeriodo.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[2].Value = ((int)(tPeriodo.Value));
}
else {
this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
}
DS_utility.v_selPeriodiTradDataTable dataTable = new DS_utility.v_selPeriodiTradDataTable();
this.Adapter.Fill(dataTable);
@@ -13076,20 +13138,30 @@ namespace GIM_data.DS_utilityTableAdapters {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
private void InitCommandCollection() {
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[2];
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[3];
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = "SELECT idxPending, codImpianto, nomeImpianto, codMacchina, nomeMacchina, data, de" +
"scrizione, descrPriorita, isFermo, descrTipo, idxTipo, idxMacchina, idxImpianto " +
"FROM dbo.v_mtzProgPendingExp";
this._commandCollection[0].CommandText = "SELECT idxPending, codImpianto, nomeImpianto, codMacchina, nomeMacchina, d" +
"ata, descrizione, descrPriorita, isFermo, descrTipo, idxTipo, idxMacchina, idxIm" +
"pianto\r\nFROM v_mtzProgPendingExp";
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[1].Connection = this.Connection;
this._commandCollection[1].CommandText = "SELECT codImpianto, codMacchina, data, descrPriorita, descrTipo, descrizione, idx" +
"Pending, isFermo, nomeImpianto, nomeMacchina FROM v_mtzProgPendingExp WHERE (dat" +
"a <= @dataMax) ORDER BY data";
this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@dataMax", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 0, 0, "data", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[1].CommandText = "dbo.stp_MPP_getByMaxData";
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("@dataMax", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[2].Connection = this.Connection;
this._commandCollection[2].CommandText = "dbo.stp_MPP_getBySearch";
this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
this._commandCollection[2].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[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ricerca", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxTipo", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxImpianto", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxMacchina", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@inizio", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@fine", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -13123,10 +13195,57 @@ namespace GIM_data.DS_utilityTableAdapters {
public virtual DS_utility.v_mtzProgPendingExpDataTable getByDataMax(global::System.Nullable<global::System.DateTime> dataMax) {
this.Adapter.SelectCommand = this.CommandCollection[1];
if ((dataMax.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[0].Value = ((System.DateTime)(dataMax.Value));
this.Adapter.SelectCommand.Parameters[1].Value = ((System.DateTime)(dataMax.Value));
}
else {
this.Adapter.SelectCommand.Parameters[0].Value = global::System.DBNull.Value;
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
}
DS_utility.v_mtzProgPendingExpDataTable dataTable = new DS_utility.v_mtzProgPendingExpDataTable();
this.Adapter.Fill(dataTable);
return dataTable;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
[global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
public virtual DS_utility.v_mtzProgPendingExpDataTable getBySearch(string ricerca, global::System.Nullable<int> idxTipo, global::System.Nullable<int> idxImpianto, global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> inizio, global::System.Nullable<global::System.DateTime> fine) {
this.Adapter.SelectCommand = this.CommandCollection[2];
if ((ricerca == null)) {
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
}
else {
this.Adapter.SelectCommand.Parameters[1].Value = ((string)(ricerca));
}
if ((idxTipo.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[2].Value = ((int)(idxTipo.Value));
}
else {
this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
}
if ((idxImpianto.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[3].Value = ((int)(idxImpianto.Value));
}
else {
this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
}
if ((idxMacchina.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[4].Value = ((int)(idxMacchina.Value));
}
else {
this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
}
if ((inizio.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[5].Value = ((System.DateTime)(inizio.Value));
}
else {
this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value;
}
if ((fine.HasValue == true)) {
this.Adapter.SelectCommand.Parameters[6].Value = ((System.DateTime)(fine.Value));
}
else {
this.Adapter.SelectCommand.Parameters[6].Value = global::System.DBNull.Value;
}
DS_utility.v_mtzProgPendingExpDataTable dataTable = new DS_utility.v_mtzProgPendingExpDataTable();
this.Adapter.Fill(dataTable);
+45 -15
View File
@@ -226,7 +226,7 @@ ORDER BY label</CommandText>
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.v_selPeriodiTrad" DbObjectType="View" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT value, label, conditio FROM dbo.v_selPeriodiTrad</CommandText>
<CommandText>SELECT * FROM dbo.v_selPeriodiTrad</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
@@ -236,14 +236,18 @@ ORDER BY label</CommandText>
<Mapping SourceColumn="value" DataSetColumn="value" />
<Mapping SourceColumn="label" DataSetColumn="label" />
<Mapping SourceColumn="conditio" DataSetColumn="conditio" />
<Mapping SourceColumn="unit" DataSetColumn="unit" />
<Mapping SourceColumn="val" DataSetColumn="val" />
</Mappings>
<Sources>
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.v_selPeriodiTrad" DbObjectType="View" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByConditio" GetMethodModifier="Public" GetMethodName="getByConditio" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByConditio" UserSourceName="getByConditio">
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.stp_vsp_getByConditio" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByConditio" GetMethodModifier="Public" GetMethodName="getByConditio" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByConditio" UserSourceName="getByConditio">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT conditio, label, value FROM v_selPeriodiTrad WHERE (conditio = @conditio) ORDER BY value</CommandText>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_vsp_getByConditio</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="conditio" ColumnName="conditio" DataSourceName="GIM.dbo.v_selPeriodiTrad" DataTypeServer="nvarchar(3)" DbType="String" Direction="Input" ParameterName="@conditio" Precision="0" ProviderType="NVarChar" Scale="0" Size="3" SourceColumn="conditio" SourceColumnNullMapping="false" SourceVersion="Current" />
<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="nvarchar" DbType="String" Direction="Input" ParameterName="@conditio" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@tPeriodo" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
@@ -441,7 +445,8 @@ ORDER BY label</CommandText>
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.v_mtzProgPendingExp" DbObjectType="View" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT idxPending, codImpianto, nomeImpianto, codMacchina, nomeMacchina, data, descrizione, descrPriorita, isFermo, descrTipo, idxTipo, idxMacchina, idxImpianto FROM dbo.v_mtzProgPendingExp</CommandText>
<CommandText>SELECT idxPending, codImpianto, nomeImpianto, codMacchina, nomeMacchina, data, descrizione, descrPriorita, isFermo, descrTipo, idxTipo, idxMacchina, idxImpianto
FROM v_mtzProgPendingExp</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
@@ -463,12 +468,29 @@ ORDER BY label</CommandText>
<Mapping SourceColumn="idxImpianto" DataSetColumn="idxImpianto" />
</Mappings>
<Sources>
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.v_mtzProgPendingExp" DbObjectType="View" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByDataMax" GetMethodModifier="Public" GetMethodName="getByDataMax" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByDataMax" UserSourceName="getByDataMax">
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.stp_MPP_getByMaxData" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByDataMax" GetMethodModifier="Public" GetMethodName="getByDataMax" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByDataMax" UserSourceName="getByDataMax">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT codImpianto, codMacchina, data, descrPriorita, descrTipo, descrizione, idxPending, isFermo, nomeImpianto, nomeMacchina FROM v_mtzProgPendingExp WHERE (data &lt;= @dataMax) ORDER BY data</CommandText>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_MPP_getByMaxData</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="dataMax" ColumnName="data" DataSourceName="GIM.dbo.v_mtzProgPendingExp" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@dataMax" Precision="0" ProviderType="DateTime" Scale="0" Size="8" SourceColumn="data" SourceColumnNullMapping="false" SourceVersion="Current" />
<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="datetime" DbType="DateTime" Direction="Input" ParameterName="@dataMax" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.stp_MPP_getBySearch" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getBySearch" GetMethodModifier="Public" GetMethodName="getBySearch" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getBySearch" UserSourceName="getBySearch">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_MPP_getBySearch</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="nvarchar" DbType="String" Direction="Input" ParameterName="@ricerca" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idxTipo" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idxImpianto" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idxMacchina" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@inizio" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@fine" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
@@ -845,6 +867,14 @@ ORDER BY label</CommandText>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="unit" msprop:Generator_ColumnVarNameInTable="columnunit" msprop:Generator_ColumnPropNameInRow="unit" msprop:Generator_ColumnPropNameInTable="unitColumn" msprop:Generator_UserColumnName="unit">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="val" msprop:Generator_ColumnVarNameInTable="columnval" msprop:Generator_ColumnPropNameInRow="val" msprop:Generator_ColumnPropNameInTable="valColumn" msprop:Generator_UserColumnName="val" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
@@ -1106,7 +1136,7 @@ ORDER BY label</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selAnTipoRis" msprop:Generator_TableClassName="v_selAnTipoRisDataTable" msprop:Generator_TableVarName="tablev_selAnTipoRis" msprop:Generator_RowChangedName="v_selAnTipoRisRowChanged" msprop:Generator_TablePropName="v_selAnTipoRis" msprop:Generator_RowDeletingName="v_selAnTipoRisRowDeleting" msprop:Generator_RowChangingName="v_selAnTipoRisRowChanging" msprop:Generator_RowEvHandlerName="v_selAnTipoRisRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selAnTipoRisRowDeleted" msprop:Generator_RowClassName="v_selAnTipoRisRow" msprop:Generator_UserTableName="v_selAnTipoRis" msprop:Generator_RowEvArgName="v_selAnTipoRisRowChangeEvent">
<xs:element name="v_selAnTipoRis" msprop:Generator_TableClassName="v_selAnTipoRisDataTable" msprop:Generator_TableVarName="tablev_selAnTipoRis" msprop:Generator_TablePropName="v_selAnTipoRis" msprop:Generator_RowDeletingName="v_selAnTipoRisRowDeleting" msprop:Generator_RowChangingName="v_selAnTipoRisRowChanging" msprop:Generator_RowEvHandlerName="v_selAnTipoRisRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selAnTipoRisRowDeleted" msprop:Generator_UserTableName="v_selAnTipoRis" msprop:Generator_RowChangedName="v_selAnTipoRisRowChanged" msprop:Generator_RowEvArgName="v_selAnTipoRisRowChangeEvent" msprop:Generator_RowClassName="v_selAnTipoRisRow">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value">
@@ -1126,7 +1156,7 @@ ORDER BY label</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selListVal" msprop:Generator_TableClassName="v_selListValDataTable" msprop:Generator_TableVarName="tablev_selListVal" msprop:Generator_TablePropName="v_selListVal" msprop:Generator_RowDeletingName="v_selListValRowDeleting" msprop:Generator_RowChangingName="v_selListValRowChanging" msprop:Generator_RowEvHandlerName="v_selListValRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selListValRowDeleted" msprop:Generator_UserTableName="v_selListVal" msprop:Generator_RowChangedName="v_selListValRowChanged" msprop:Generator_RowEvArgName="v_selListValRowChangeEvent" msprop:Generator_RowClassName="v_selListValRow">
<xs:element name="v_selListVal" msprop:Generator_TableClassName="v_selListValDataTable" msprop:Generator_TableVarName="tablev_selListVal" msprop:Generator_RowChangedName="v_selListValRowChanged" msprop:Generator_TablePropName="v_selListVal" msprop:Generator_RowDeletingName="v_selListValRowDeleting" msprop:Generator_RowChangingName="v_selListValRowChanging" msprop:Generator_RowEvHandlerName="v_selListValRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selListValRowDeleted" msprop:Generator_RowClassName="v_selListValRow" msprop:Generator_UserTableName="v_selListVal" msprop:Generator_RowEvArgName="v_selListValRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value" minOccurs="0">
@@ -1146,7 +1176,7 @@ ORDER BY label</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<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: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:complexType>
<xs:sequence>
<xs:element name="TableName" msprop:Generator_ColumnVarNameInTable="columnTableName" msprop:Generator_ColumnPropNameInRow="TableName" msprop:Generator_ColumnPropNameInTable="TableNameColumn" msprop:Generator_UserColumnName="TableName">
@@ -1181,7 +1211,7 @@ ORDER BY label</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selCodRicAmm" msprop:Generator_TableClassName="v_selCodRicAmmDataTable" msprop:Generator_TableVarName="tablev_selCodRicAmm" msprop:Generator_TablePropName="v_selCodRicAmm" msprop:Generator_RowDeletingName="v_selCodRicAmmRowDeleting" msprop:Generator_RowChangingName="v_selCodRicAmmRowChanging" msprop:Generator_RowEvHandlerName="v_selCodRicAmmRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selCodRicAmmRowDeleted" msprop:Generator_UserTableName="v_selCodRicAmm" msprop:Generator_RowChangedName="v_selCodRicAmmRowChanged" msprop:Generator_RowEvArgName="v_selCodRicAmmRowChangeEvent" msprop:Generator_RowClassName="v_selCodRicAmmRow">
<xs:element name="v_selCodRicAmm" msprop:Generator_TableClassName="v_selCodRicAmmDataTable" msprop:Generator_TableVarName="tablev_selCodRicAmm" msprop:Generator_RowChangedName="v_selCodRicAmmRowChanged" msprop:Generator_TablePropName="v_selCodRicAmm" msprop:Generator_RowDeletingName="v_selCodRicAmmRowDeleting" msprop:Generator_RowChangingName="v_selCodRicAmmRowChanging" msprop:Generator_RowEvHandlerName="v_selCodRicAmmRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selCodRicAmmRowDeleted" msprop:Generator_RowClassName="v_selCodRicAmmRow" msprop:Generator_UserTableName="v_selCodRicAmm" msprop:Generator_RowEvArgName="v_selCodRicAmmRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value">
@@ -1208,7 +1238,7 @@ ORDER BY label</CommandText>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="v_selGrpCodRicAmm" msprop:Generator_TableClassName="v_selGrpCodRicAmmDataTable" msprop:Generator_TableVarName="tablev_selGrpCodRicAmm" msprop:Generator_TablePropName="v_selGrpCodRicAmm" msprop:Generator_RowDeletingName="v_selGrpCodRicAmmRowDeleting" msprop:Generator_RowChangingName="v_selGrpCodRicAmmRowChanging" msprop:Generator_RowEvHandlerName="v_selGrpCodRicAmmRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selGrpCodRicAmmRowDeleted" msprop:Generator_UserTableName="v_selGrpCodRicAmm" msprop:Generator_RowChangedName="v_selGrpCodRicAmmRowChanged" msprop:Generator_RowEvArgName="v_selGrpCodRicAmmRowChangeEvent" msprop:Generator_RowClassName="v_selGrpCodRicAmmRow">
<xs:element name="v_selGrpCodRicAmm" msprop:Generator_TableClassName="v_selGrpCodRicAmmDataTable" msprop:Generator_TableVarName="tablev_selGrpCodRicAmm" msprop:Generator_RowChangedName="v_selGrpCodRicAmmRowChanged" msprop:Generator_TablePropName="v_selGrpCodRicAmm" msprop:Generator_RowDeletingName="v_selGrpCodRicAmmRowDeleting" msprop:Generator_RowChangingName="v_selGrpCodRicAmmRowChanging" msprop:Generator_RowEvHandlerName="v_selGrpCodRicAmmRowChangeEventHandler" msprop:Generator_RowDeletedName="v_selGrpCodRicAmmRowDeleted" msprop:Generator_RowClassName="v_selGrpCodRicAmmRow" msprop:Generator_UserTableName="v_selGrpCodRicAmm" msprop:Generator_RowEvArgName="v_selGrpCodRicAmmRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="value" msprop:Generator_ColumnVarNameInTable="columnvalue" msprop:Generator_ColumnPropNameInRow="value" msprop:Generator_ColumnPropNameInTable="valueColumn" msprop:Generator_UserColumnName="value" minOccurs="0">
+16 -16
View File
@@ -4,29 +4,29 @@
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-1" ViewPortY="-10" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="45" ViewPortY="-10" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:v_selImpianti" ZOrder="21" X="1171" Y="67" Height="134" Width="220" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selMacchine" ZOrder="5" X="360" Y="70" Height="172" Width="227" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selMacchine" ZOrder="7" X="360" Y="70" Height="172" Width="227" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selPrior" ZOrder="20" X="686" Y="79" Height="105" Width="199" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selAmbiti" ZOrder="19" X="944" Y="83" Height="105" Width="208" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selCausaliMacchine" ZOrder="11" X="946" Y="208" Height="172" Width="263" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selCausaliMacchine" ZOrder="12" X="946" Y="208" Height="172" Width="263" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selTipoGuasto" ZOrder="18" X="669" Y="524" Height="105" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selSemafori" ZOrder="17" X="666" Y="249" Height="105" Width="222" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_selFreq" ZOrder="16" X="662" Y="373" Height="130" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selStato" ZOrder="4" X="371" Y="296" Height="115" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selPeriodiTrad" ZOrder="15" X="358" Y="478" Height="139" Width="237" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="75" />
<Shape ID="DesignTable:v_elencoImpiantiMacchine" ZOrder="8" X="681" Y="645" Height="241" Width="295" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="194" />
<Shape ID="DesignTable:v_elencoIntervFilt" ZOrder="3" X="62" Y="482" Height="362" Width="245" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:sp_elencoIntMTBF_MTTR" ZOrder="14" X="365" Y="657" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:v_selFam" ZOrder="13" X="83" Y="61" Height="111" Width="195" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selOperMtz" ZOrder="12" X="68" Y="864" Height="122" Width="219" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_mtzProgPendingExp" ZOrder="6" X="991" Y="413" Height="324" Width="275" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:v_selAnTipoRis" ZOrder="10" X="379" Y="908" Height="115" Width="231" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selListVal" ZOrder="9" X="687" Y="902" Height="153" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:ListValues" ZOrder="7" X="1051" Y="758" Height="210" Width="202" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:v_selCodRicAmm" ZOrder="1" X="75" Y="181" Height="172" Width="244" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selGrpCodRicAmm" ZOrder="2" X="66" Y="358" Height="115" Width="265" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selStato" ZOrder="6" X="371" Y="296" Height="115" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selPeriodiTrad" ZOrder="2" X="358" Y="444" Height="191" Width="240" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:v_elencoImpiantiMacchine" ZOrder="9" X="681" Y="645" Height="241" Width="295" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="194" />
<Shape ID="DesignTable:v_elencoIntervFilt" ZOrder="5" X="62" Y="482" Height="362" Width="245" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:sp_elencoIntMTBF_MTTR" ZOrder="15" X="365" Y="657" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:v_selFam" ZOrder="14" X="83" Y="61" Height="111" Width="195" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selOperMtz" ZOrder="13" X="68" Y="864" Height="122" Width="219" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="58" />
<Shape ID="DesignTable:v_mtzProgPendingExp" ZOrder="1" X="991" Y="413" Height="343" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:v_selAnTipoRis" ZOrder="11" X="379" Y="908" Height="115" Width="231" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:v_selListVal" ZOrder="10" X="687" Y="902" Height="153" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
<Shape ID="DesignTable:ListValues" ZOrder="8" X="1051" Y="758" Height="210" Width="202" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:v_selCodRicAmm" ZOrder="3" X="75" Y="181" Height="172" Width="244" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:v_selGrpCodRicAmm" ZOrder="4" X="66" Y="358" Height="115" Width="265" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
</Shapes>
<Connectors />
</DiagramLayout>
Binary file not shown.
+25
View File
@@ -4917,6 +4917,31 @@
oggetto singleton
</summary>
</member>
<member name="T:SteamWare.datario.periodo">
<summary>
Tipo di periodo selezione date
</summary>
</member>
<member name="F:SteamWare.datario.periodo.nd">
<summary>
non definito
</summary>
</member>
<member name="F:SteamWare.datario.periodo.past">
<summary>
Solo periodo passato (+ presente)
</summary>
</member>
<member name="F:SteamWare.datario.periodo.future">
<summary>
Solo periodo futuro (+ presente)
</summary>
</member>
<member name="F:SteamWare.datario.periodo.all">
<summary>
tutto
</summary>
</member>
<member name="T:SteamWare.gestEmail">
<summary>
classe di gestione delle email
Binary file not shown.
@@ -23,3 +23,15 @@ C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\Projects\Web
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\Projects\WebGIM\GIM_data\obj\Debug\GIM_data.pdb
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\obj\Debug\GIM_data.csprojResolveAssemblyReference.cache
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\obj\Debug\GIM_data.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\bin\NLog.config
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\bin\GIM_data.dll.config
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\bin\GIM_data.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\bin\GIM_data.pdb
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\bin\SteamWare.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\bin\Flesk.ViewState.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\bin\ICSharpCode.SharpZipLib.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\bin\SteamWare.pdb
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\bin\SteamWare.xml
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\obj\Debug\GIM_data.csprojResolveAssemblyReference.cache
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\obj\Debug\GIM_data.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_data\obj\Debug\GIM_data.pdb
Binary file not shown.
@@ -2,7 +2,7 @@
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Src="~/WebUserControls/mod_periodoAnalisi.ascx" TagName="mod_periodoAnalisi" TagPrefix="uc1" %>
<div style="width: 100%; background-color: #cdcdcd; clear: both; font-size: 0.8em; height: 2em;" class="bg_plus">
<div style="background-color: #cdcdcd; clear: both; font-size: 0.8em; height: 2em;" class="bg_plus">
<div style="float: left;">
<asp:CheckBox runat="server" ID="chkMostraIntChiusi" AutoPostBack="true" OnCheckedChanged="chkMostraIntChiusi_CheckedChanged"
Checked="false" />
@@ -3,7 +3,7 @@
<%@ Register Src="~/WebUserControls/mod_periodoAnalisi.ascx" TagPrefix="uc1" TagName="mod_periodoAnalisi" %>
<div class="row txtMini" style="width: 100%; background: #cdcdcd; font-size: 0.8em;">
<div class="row txtMini" style="background: #cdcdcd; font-size: 0.8em;">
<div class="col-sm-2 text-left">
<div>
<asp:Label runat="server" ID="lblFiltTipo" />
@@ -31,13 +31,20 @@ public partial class WebUserControls_mod_filtraMtzProg : SteamWare.UserControl
mod_filtroTipo.eh_selValore += new EventHandler(mod_filtroTipo_eh_selValore);
mod_filtroMacchina.eh_selValore += new EventHandler(mod_filtroMacchina_eh_selValore);
mod_filtroImpianto.eh_selValore += new EventHandler(mod_filtroImpianto_eh_selValore);
mod_periodoAnalisi.eh_doUpdate += new EventHandler(Mod_periodoAnalisi_eh_doUpdate);
}
private void Mod_periodoAnalisi_eh_doUpdate(object sender, EventArgs e)
{
raiseEvent();
}
/// <summary>
/// verifica se sia possibile preimpostare i valori filtrati...
/// </summary>
private void checkSelVal()
{
if(memLayer.ML.isInSessionObject("idxMacchina_filt"))
if (memLayer.ML.isInSessionObject("idxMacchina_filt"))
{
mod_filtroMacchina.Visible = true;
}
@@ -155,4 +162,18 @@ public partial class WebUserControls_mod_filtraMtzProg : SteamWare.UserControl
mod_periodoAnalisi.Visible = value;
}
}
/// <summary>
/// Imposta periodo del selettore
/// </summary>
public datario.periodo periodo
{
get
{
return mod_periodoAnalisi.periodo;
}
set
{
mod_periodoAnalisi.periodo = value;
}
}
}
@@ -4,7 +4,7 @@
<asp:HyperLink ID="hlExportExcel" runat="server" Target="_blank" />
</div>
<div style="font-size: 8pt;">
<asp:GridView ID="grView" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" PageSize="10" CssClass="table table-striped" DataKeyNames="idxPending" DataSourceID="ods" OnDataBound="grView_DataBound" EnableModelValidation="True" OnPageIndexChanged="grView_PageIndexChanged">
<asp:GridView ID="grView" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" CssClass="table table-striped" DataKeyNames="idxPending" DataSourceID="ods" OnDataBound="grView_DataBound" OnPageIndexChanged="grView_PageIndexChanged">
<PagerStyle CssClass="active GridPager" />
<PagerSettings Mode="NumericFirstLast" />
<SelectedRowStyle CssClass="info" />
@@ -37,15 +37,16 @@
</Columns>
</asp:GridView>
<asp:Label ID="lblNumRec" runat="server" CssClass="txtMini" />
<asp:ObjectDataSource ID="ods" runat="server" SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_mtzProgPendingExpTableAdapter"
OldValuesParameterFormatString="Original_{0}" FilterExpression=" (codImpianto LIKE '%{0}%') OR (nomeImpianto LIKE '%{0}%') OR (codMacchina LIKE '%{0}%') OR (nomeMacchina LIKE '%{0}%') OR (descrizione LIKE '%{0}%') OR (descrPriorita LIKE '%{0}%') OR (descrTipo LIKE '%{0}%') ">
<FilterParameters>
<asp:SessionParameter DefaultValue="*" Name="ricerca" SessionField="valoreCercato" />
<asp:ObjectDataSource ID="ods" runat="server" SelectMethod="getBySearch" TypeName="GIM_data.DS_utilityTableAdapters.v_mtzProgPendingExpTableAdapter"
OldValuesParameterFormatString="original_{0}">
<SelectParameters>
<asp:SessionParameter DefaultValue="%" Name="ricerca" SessionField="valoreCercato" Type="String" />
<asp:SessionParameter DefaultValue="0" Name="idxTipo" SessionField="idxTipo_filt" Type="Int32" />
<asp:SessionParameter DefaultValue="0" Name="idxImpianto" SessionField="idxImpianto_filt" Type="Int32" />
<asp:SessionParameter DefaultValue="0" Name="idxMacchina" SessionField="idxMacchina_filt" Type="Int32" />
<asp:SessionParameter DefaultValue="0" Name="inizio" SessionField="_inizio" Type="DateTime" />
<asp:SessionParameter DefaultValue="0" Name="fine" SessionField="_fine" Type="DateTime" />
</FilterParameters>
<asp:SessionParameter DefaultValue="" Name="inizio" SessionField="_inizio" Type="DateTime" />
<asp:SessionParameter DefaultValue="" Name="fine" SessionField="_fine" Type="DateTime" />
</SelectParameters>
</asp:ObjectDataSource>
</div>
@@ -71,27 +71,6 @@ public partial class mod_mtzPrevPending : ApplicationUserControl
/// </summary>
private void checkFixOds()
{
ods.FilterExpression = "( codMacchina LIKE '%{0}%' OR nomeMacchina LIKE '%{0}%' OR descrizione LIKE '%{0}%' )";
if (memLayer.ML.isInSessionObject("idxTipo_filt"))
{
ods.FilterExpression += " AND (idxTipo = {1})";
}
if (memLayer.ML.isInSessionObject("idxImpianto_filt"))
{
ods.FilterExpression += " AND (idxImpianto = {2})";
}
if (memLayer.ML.isInSessionObject("idxMacchina_filt"))
{
ods.FilterExpression += " AND (idxMacchina = {3})";
}
if (memLayer.ML.isInSessionObject("_inizio"))
{
ods.FilterExpression += " AND (data >= {4})";
}
if (memLayer.ML.isInSessionObject("_fine"))
{
ods.FilterExpression += " AND (data <= {5})";
}
ods.DataBind();
}
/// <summary>
@@ -22,14 +22,16 @@
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ErrorMessage="!!!" ControlToValidate="txtFine" />
</div>
<div style="float: left;">
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"
<asp:DropDownList ID="ddlPeriodo" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlPeriodo_SelectedIndexChanged"
DataSourceID="odsPeriodi" DataTextField="label" DataValueField="value">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsPeriodi" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selPeriodiTradTableAdapter">
<SelectParameters>
<asp:SessionParameter DefaultValue="IT" Name="conditio" SessionField="lingua" Type="String" />
<asp:ControlParameter ControlID="hfTPer" DefaultValue="0" Type="Int32" Name="tPeriodo" PropertyName="Value" />
</SelectParameters>
</asp:ObjectDataSource>
<asp:HiddenField runat="server" ID="hfTPer" />
</div>
</div>
@@ -17,8 +17,7 @@ public partial class mod_periodoAnalisi : System.Web.UI.UserControl
protected intervalloDate _intervallo;
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
{ base.OnInit(e);
setIntervallo();
}
@@ -27,12 +26,12 @@ public partial class mod_periodoAnalisi : System.Web.UI.UserControl
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
protected void ddlPeriodo_SelectedIndexChanged(object sender, EventArgs e)
{
intervalloDate _intervallo = new intervalloDate();
// verifico cosa sia cambiato ed imposto date...
datario _datario = new datario();
switch (DropDownList1.SelectedValue)
switch (ddlPeriodo.SelectedValue)
{
case "1_today":
_intervallo = _datario.giornata(DateTime.Now);
@@ -94,8 +93,17 @@ public partial class mod_periodoAnalisi : System.Web.UI.UserControl
catch
{
_intervallo = new intervalloDate();
_intervallo.fine = DateTime.Now.Subtract(DateTime.Now.TimeOfDay).AddDays(1);
_intervallo.inizio = _intervallo.fine.AddMonths(-1);
// in base al tipo intervallo (futuro/all) decido cosa mostrare...
if(periodo== datario.periodo.future)
{
_intervallo.inizio = DateTime.Now.Subtract(DateTime.Now.TimeOfDay);
_intervallo.fine = _intervallo.inizio.AddDays(7);
}
else
{
_intervallo.fine = DateTime.Now.Subtract(DateTime.Now.TimeOfDay).AddDays(1);
_intervallo.inizio = _intervallo.fine.AddMonths(-1);
}
Session["_intervallo"] = _intervallo;
Session["_inizio"] = _intervallo.inizio;
Session["_fine"] = _intervallo.fine;
@@ -126,7 +134,7 @@ public partial class mod_periodoAnalisi : System.Web.UI.UserControl
protected void txtInizio_TextChanged(object sender, EventArgs e)
{
// imposto il selettore a discesa...
DropDownList1.SelectedIndex = 0;
ddlPeriodo.SelectedIndex = 0;
// se campo vuoto imposto oggi...
if (txtInizio.Text == "")
{
@@ -153,7 +161,7 @@ public partial class mod_periodoAnalisi : System.Web.UI.UserControl
protected void txtFine_TextChanged(object sender, EventArgs e)
{
// imposto il selettore a discesa...
DropDownList1.SelectedIndex = 0;
ddlPeriodo.SelectedIndex = 0;
// se campo vuoto imposto oggi...
if (txtFine.Text == "")
{
@@ -202,9 +210,43 @@ public partial class mod_periodoAnalisi : System.Web.UI.UserControl
public void setPeriodoFree()
{
DropDownList1.SelectedIndex = 0;
ddlPeriodo.SelectedIndex = 0;
}
protected datario.periodo _periodo { get; set; }
/// <summary>
/// Tipologia periodo mostrato...
/// </summary>
public datario.periodo periodo
{
get
{
return _periodo;
}
set
{
_periodo = value;
switch (_periodo)
{
case datario.periodo.past:
hfTPer.Value = "-1";
break;
case datario.periodo.future:
hfTPer.Value = "1";
break;
case datario.periodo.all:
case datario.periodo.nd:
default:
hfTPer.Value = "0";
break;
}
ddlPeriodo.DataBind();
}
}
#region gestione eventi
public event EventHandler eh_doUpdate;
+11 -2
View File
@@ -75,13 +75,13 @@ public partial class mod_periodoAnalisi {
protected global::System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator2;
/// <summary>
/// DropDownList1 control.
/// ddlPeriodo control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.DropDownList DropDownList1;
protected global::System.Web.UI.WebControls.DropDownList ddlPeriodo;
/// <summary>
/// odsPeriodi control.
@@ -91,4 +91,13 @@ public partial class mod_periodoAnalisi {
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource odsPeriodi;
/// <summary>
/// hfTPer control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.HiddenField hfTPer;
}
Binary file not shown.
+2
View File
@@ -9,6 +9,8 @@ public partial class elencoRichieste : UserPage
{
protected void Page_Load(object sender, EventArgs e)
{
mod_filtraMtzProg.showPeriodo = false;
//mod_filtraMtzProg.periodo = datario.periodo.all;
mod_filtraMtzProg.eh_newFiltroSel += new EventHandler(mod_filtraMtzProg1_eh_newFiltroSel);
mod_elencoRichieste1.eh_selValore += new EventHandler(mod_elencoRichieste1_eh_selValore);
((GIM_site.FullPage)Master).eh_Search_Submit += elencoRichieste_eh_Search_Submit;
+1 -2
View File
@@ -12,6 +12,7 @@ public partial class mtzProg : System.Web.UI.Page
if(!Page.IsPostBack)
{
mod_filtraMtzProg1.showPeriodo = (TabContainer1.ActiveTabIndex == 1);
mod_filtraMtzProg1.periodo = datario.periodo.future;
}
mod_elencoMtzProg1.eh_newReq += new EventHandler(mod_elencoMtzProg1_eh_newReq);
mod_elencoMtzProg1.eh_updateDone += new EventHandler(mod_elencoMtzProg1_eh_updateDone);
@@ -33,8 +34,6 @@ public partial class mtzProg : System.Web.UI.Page
/// <param name="e"></param>
void mod_filtraMtzProg1_eh_newFiltroSel(object sender, EventArgs e)
{
// richiamo update delle varie parti del mio modulo
// update della visualizzazione normale
mod_elencoMtzProg1.doUpdate();
@@ -1,3 +1,47 @@
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\obj\Debug\GIM_site.csprojResolveAssemblyReference.cache
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\obj\Debug\RdlCompile.cache
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\obj\Debug\RdlCompile.compiled
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\NLog.config
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\GIM_site.dll.config
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\GIM_site.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\GIM_site.pdb
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\AjaxControlToolkit.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\AjaxMin.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Antlr3.Runtime.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\AspNet.ScriptManager.bootstrap.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\AspNet.ScriptManager.jQuery.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\AspNet.ScriptManager.jQuery.UI.Combined.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Elmah.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\GIM_data.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\ImageResizer.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\ImageResizer.Plugins.DiskCache.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\ImageResizer.Plugins.SeamCarving.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Microsoft.AspNet.FriendlyUrls.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Microsoft.AspNet.Web.Optimization.WebForms.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Microsoft.ScriptManager.MSAjax.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Microsoft.ScriptManager.WebForms.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Microsoft.Web.Infrastructure.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Newtonsoft.Json.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\SteamWare.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\System.Web.Optimization.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\WebGrease.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Flesk.ViewState.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\ICSharpCode.SharpZipLib.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Microsoft.Build.Utilities.v3.5.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\ADODB.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\SteamWare.pdb
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\SteamWare.xml
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\GIM_data.pdb
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\ImageResizer.xml
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\ImageResizer.Plugins.DiskCache.xml
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\ImageResizer.Plugins.SeamCarving.xml
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Microsoft.AspNet.FriendlyUrls.xml
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Newtonsoft.Json.xml
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\System.Web.Optimization.xml
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\Microsoft.Build.Utilities.v3.5.xml
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\bin\it\Microsoft.Build.Utilities.v3.5.resources.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\obj\Debug\GIM_site.csprojResolveAssemblyReference.cache
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\obj\Debug\RdlCompile.cache
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\obj\Debug\RdlCompile.compiled
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\obj\Debug\GIM_site.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GIM_site\obj\Debug\GIM_site.pdb
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -15,3 +15,8 @@ C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\GimDB\obj\Debug\po
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\GimDB\obj\Debug\predeploy.sql
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\GimDB\obj\Debug\GimDB.dll
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\GimDB\obj\Debug\GimDB.pdb
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GimDB\bin\Output\GimDB.dacpac
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GimDB\bin\Output\GimDB.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GimDB\bin\Output\GimDB.pdb
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GimDB\obj\Debug\GimDB.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\GimDB\obj\Debug\GimDB.pdb
File diff suppressed because it is too large Load Diff
Binary file not shown.
@@ -13,3 +13,8 @@ C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\VersGen\bin\Debug\
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\VersGen\obj\Debug\VersGen.csprojResolveAssemblyReference.cache
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\VersGen\obj\Debug\VersGen.dll
C:\Users\samuele\Documents\VisualStudioProjects\WebGIM\WebGIM\VersGen\obj\Debug\VersGen.pdb
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\VersGen\bin\Debug\VersGen.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\VersGen\bin\Debug\VersGen.pdb
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\VersGen\obj\Debug\VersGen.csprojResolveAssemblyReference.cache
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\VersGen\obj\Debug\VersGen.dll
C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\WebGIM\WebGIM\VersGen\obj\Debug\VersGen.pdb
Binary file not shown.