Fix errore ricaricamento pagina in update menù top + update x gestione nuovo campo idxCausale
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -951,7 +951,7 @@ WHERE (numIntMtz = @Original_numIntMtz) AND (matrOp = @Original_matrOp)</Com
|
||||
</DeleteCommand>
|
||||
<InsertCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>INSERT INTO [MtzProgPending] ([idxIntPro], [idxMacchina], [data], [descrizione], [idxPriorita], [isFermo], [idxTipo]) VALUES (@idxIntPro, @idxMacchina, @data, @descrizione, @idxPriorita, @isFermo, @idxTipo)</CommandText>
|
||||
<CommandText>INSERT INTO [MtzProgPending] ([idxIntPro], [idxMacchina], [data], [descrizione], [idxPriorita], [isFermo], [idxTipo], [idxCausale]) VALUES (@idxIntPro, @idxMacchina, @data, @descrizione, @idxPriorita, @isFermo, @idxTipo, @idxCausale)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxIntPro" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxIntPro" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxMacchina" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxMacchina" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
@@ -960,19 +960,20 @@ WHERE (numIntMtz = @Original_numIntMtz) AND (matrOp = @Original_matrOp)</Com
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxPriorita" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPriorita" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@isFermo" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="isFermo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxTipo" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxTipo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxCausale" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxCausale" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</InsertCommand>
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>SELECT idxPending, idxIntPro, idxMacchina, data, descrizione, idxPriorita, isFermo, idxTipo
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>SELECT *
|
||||
FROM MtzProgPending</CommandText>
|
||||
<Parameters />
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
<UpdateCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>UPDATE [MtzProgPending] SET [idxIntPro] = @idxIntPro, [idxMacchina] = @idxMacchina, [data] = @data, [descrizione] = @descrizione, [idxPriorita] = @idxPriorita, [isFermo] = @isFermo, [idxTipo] = @idxTipo WHERE (([idxPending] = @Original_idxPending))</CommandText>
|
||||
<CommandText>UPDATE [MtzProgPending] SET [idxIntPro] = @idxIntPro, [idxMacchina] = @idxMacchina, [data] = @data, [descrizione] = @descrizione, [idxPriorita] = @idxPriorita, [isFermo] = @isFermo, [idxTipo] = @idxTipo, [idxCausale] = @idxCausale WHERE (([idxPending] = @Original_idxPending))</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxIntPro" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxIntPro" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxMacchina" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxMacchina" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
@@ -981,6 +982,7 @@ FROM MtzProgPending</CommandText>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxPriorita" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPriorita" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@isFermo" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="isFermo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxTipo" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxTipo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxCausale" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxCausale" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxPending" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPending" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
@@ -996,14 +998,16 @@ FROM MtzProgPending</CommandText>
|
||||
<Mapping SourceColumn="idxPriorita" DataSetColumn="idxPriorita" />
|
||||
<Mapping SourceColumn="isFermo" DataSetColumn="isFermo" />
|
||||
<Mapping SourceColumn="idxTipo" DataSetColumn="idxTipo" />
|
||||
<Mapping SourceColumn="idxCausale" DataSetColumn="idxCausale" />
|
||||
</Mappings>
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.MtzProgPending" DbObjectType="Table" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByDataScad" GetMethodModifier="Public" GetMethodName="getByDataScad" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByDataScad" UserSourceName="getByDataScad">
|
||||
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.stp_MPP_scadData" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByDataScad" GetMethodModifier="Public" GetMethodName="getByDataScad" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByDataScad" UserSourceName="getByDataScad">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>SELECT data, descrizione, idxIntPro, idxMacchina, idxPending, idxPriorita, idxTipo, isFermo FROM MtzProgPending WHERE (data < @dataScadenza)</CommandText>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_MPP_scadData</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="dataScadenza" ColumnName="data" DataSourceName="GIM.dbo.MtzProgPending" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@dataScadenza" 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="@dataScadenza" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
@@ -1023,7 +1027,7 @@ FROM MtzProgPending</CommandText>
|
||||
</DeleteCommand>
|
||||
<InsertCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>INSERT INTO [MtzProgrammata] ([idxMacchina], [inizio], [codFrequenza], [cadenza], [descrizione], [idxPriorita], [isFermo], [idxTipo]) VALUES (@idxMacchina, @inizio, @codFrequenza, @cadenza, @descrizione, @idxPriorita, @isFermo, @idxTipo)</CommandText>
|
||||
<CommandText>INSERT INTO [MtzProgrammata] ([idxMacchina], [inizio], [codFrequenza], [cadenza], [descrizione], [idxPriorita], [isFermo], [idxTipo], [idxCausale]) VALUES (@idxMacchina, @inizio, @codFrequenza, @cadenza, @descrizione, @idxPriorita, @isFermo, @idxTipo, @idxCausale)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxMacchina" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxMacchina" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@inizio" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="inizio" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
@@ -1033,19 +1037,20 @@ FROM MtzProgPending</CommandText>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxPriorita" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPriorita" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@isFermo" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="isFermo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxTipo" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxTipo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxCausale" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxCausale" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</InsertCommand>
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>SELECT idxIntPro, idxMacchina, inizio, codFrequenza, cadenza, descrizione, idxPriorita, isFermo, idxTipo
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>SELECT *
|
||||
FROM MtzProgrammata</CommandText>
|
||||
<Parameters />
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
<UpdateCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>UPDATE [MtzProgrammata] SET [idxMacchina] = @idxMacchina, [inizio] = @inizio, [codFrequenza] = @codFrequenza, [cadenza] = @cadenza, [descrizione] = @descrizione, [idxPriorita] = @idxPriorita, [isFermo] = @isFermo, [idxTipo] = @idxTipo WHERE (([idxIntPro] = @Original_idxIntPro))</CommandText>
|
||||
<CommandText>UPDATE [MtzProgrammata] SET [idxMacchina] = @idxMacchina, [inizio] = @inizio, [codFrequenza] = @codFrequenza, [cadenza] = @cadenza, [descrizione] = @descrizione, [idxPriorita] = @idxPriorita, [isFermo] = @isFermo, [idxTipo] = @idxTipo, [idxCausale] = @idxCausale WHERE (([idxIntPro] = @Original_idxIntPro))</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxMacchina" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxMacchina" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@inizio" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="inizio" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
@@ -1055,6 +1060,7 @@ FROM MtzProgrammata</CommandText>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxPriorita" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxPriorita" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@isFermo" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="isFermo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxTipo" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxTipo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@idxCausale" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxCausale" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_idxIntPro" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="idxIntPro" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
@@ -1071,6 +1077,7 @@ FROM MtzProgrammata</CommandText>
|
||||
<Mapping SourceColumn="idxPriorita" DataSetColumn="idxPriorita" />
|
||||
<Mapping SourceColumn="isFermo" DataSetColumn="isFermo" />
|
||||
<Mapping SourceColumn="idxTipo" DataSetColumn="idxTipo" />
|
||||
<Mapping SourceColumn="idxCausale" DataSetColumn="idxCausale" />
|
||||
</Mappings>
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.stp_MtzProg_getByKey" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByKey" GetMethodModifier="Public" GetMethodName="getByKey" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByKey" UserSourceName="getByKey">
|
||||
@@ -1084,11 +1091,13 @@ FROM MtzProgrammata</CommandText>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.MtzProgrammata" DbObjectType="Table" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getNotScheduled" GetMethodModifier="Public" GetMethodName="getNotScheduled" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getNotScheduled" UserSourceName="getNotScheduled">
|
||||
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.stp_MtzProg_getNotSched" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getNotScheduled" GetMethodModifier="Public" GetMethodName="getNotScheduled" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getNotScheduled" UserSourceName="getNotScheduled">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>SELECT MtzProgrammata.cadenza, MtzProgrammata.codFrequenza, MtzProgrammata.descrizione, MtzProgrammata.idxIntPro, MtzProgrammata.idxMacchina, MtzProgrammata.idxPriorita, MtzProgrammata.idxTipo, MtzProgrammata.inizio, MtzProgrammata.isFermo FROM MtzProgrammata LEFT OUTER JOIN MtzProgPending ON MtzProgrammata.idxIntPro = MtzProgPending.idxIntPro WHERE (MtzProgPending.idxPending IS NULL)</CommandText>
|
||||
<Parameters />
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_MtzProg_getNotSched</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" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
</DbSource>
|
||||
@@ -1106,6 +1115,7 @@ FROM MtzProgrammata</CommandText>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idxPriorita" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@isFermo" Precision="1" ProviderType="Bit" Scale="0" Size="1" 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="@idxCausale" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
@@ -1536,8 +1546,7 @@ WHERE (idxCausale = @Original_idxCausale)</CommandText>
|
||||
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.v_mtzProgExp" 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 idxIntPro, idxImpianto, idxMacchina, codImpianto, nomeImpianto, codMacchina, nomeMacchina, inizio, codFrequenza, frequenza, cadenza, descrizione, idxPriorita, descrPriorita, isFermo, idxTipo,
|
||||
descrTipo
|
||||
<CommandText>SELECT *
|
||||
FROM v_mtzProgExp</CommandText>
|
||||
<Parameters />
|
||||
</DbCommand>
|
||||
@@ -1562,6 +1571,8 @@ FROM v_mtzProgExp</CommandText>
|
||||
<Mapping SourceColumn="idxTipo" DataSetColumn="idxTipo" />
|
||||
<Mapping SourceColumn="descrTipo" DataSetColumn="descrTipo" />
|
||||
<Mapping SourceColumn="idxImpianto" DataSetColumn="idxImpianto" />
|
||||
<Mapping SourceColumn="idxCausale" DataSetColumn="idxCausale" />
|
||||
<Mapping SourceColumn="descrCausale" DataSetColumn="descrCausale" />
|
||||
</Mappings>
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="GIMConnectionString (Web.config)" DbObjectName="GIM.dbo.stp_MtzProg_delete" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="deleteQuery" Modifier="Public" Name="deleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="deleteQuery">
|
||||
@@ -1589,6 +1600,7 @@ FROM v_mtzProgExp</CommandText>
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@idxPriorita" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@isFermo" Precision="1" ProviderType="Bit" Scale="0" Size="1" 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="@idxCausale" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
@@ -2223,6 +2235,7 @@ FROM v_mtzProgExp</CommandText>
|
||||
<xs:element name="idxPriorita" msprop:Generator_ColumnVarNameInTable="columnidxPriorita" msprop:Generator_ColumnPropNameInRow="idxPriorita" msprop:Generator_ColumnPropNameInTable="idxPrioritaColumn" msprop:Generator_UserColumnName="idxPriorita" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="isFermo" msprop:Generator_ColumnVarNameInTable="columnisFermo" msprop:Generator_ColumnPropNameInRow="isFermo" msprop:Generator_ColumnPropNameInTable="isFermoColumn" msprop:Generator_UserColumnName="isFermo" type="xs:boolean" minOccurs="0" />
|
||||
<xs:element name="idxTipo" msprop:Generator_ColumnVarNameInTable="columnidxTipo" msprop:Generator_ColumnPropNameInRow="idxTipo" msprop:Generator_ColumnPropNameInTable="idxTipoColumn" msprop:Generator_UserColumnName="idxTipo" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="idxCausale" msprop:Generator_ColumnVarNameInTable="columnidxCausale" msprop:Generator_ColumnPropNameInRow="idxCausale" msprop:Generator_ColumnPropNameInTable="idxCausaleColumn" msprop:Generator_UserColumnName="idxCausale" type="xs:int" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
@@ -2250,6 +2263,7 @@ FROM v_mtzProgExp</CommandText>
|
||||
<xs:element name="idxPriorita" msprop:Generator_ColumnVarNameInTable="columnidxPriorita" msprop:Generator_ColumnPropNameInRow="idxPriorita" msprop:Generator_ColumnPropNameInTable="idxPrioritaColumn" msprop:Generator_UserColumnName="idxPriorita" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="isFermo" msprop:Generator_ColumnVarNameInTable="columnisFermo" msprop:Generator_ColumnPropNameInRow="isFermo" msprop:Generator_ColumnPropNameInTable="isFermoColumn" msprop:Generator_UserColumnName="isFermo" type="xs:boolean" minOccurs="0" />
|
||||
<xs:element name="idxTipo" msprop:Generator_ColumnVarNameInTable="columnidxTipo" msprop:Generator_ColumnPropNameInRow="idxTipo" msprop:Generator_ColumnPropNameInTable="idxTipoColumn" msprop:Generator_UserColumnName="idxTipo" type="xs:int" minOccurs="0" />
|
||||
<xs:element name="idxCausale" msprop:Generator_ColumnVarNameInTable="columnidxCausale" msprop:Generator_ColumnPropNameInRow="idxCausale" msprop:Generator_ColumnPropNameInTable="idxCausaleColumn" msprop:Generator_UserColumnName="idxCausale" type="xs:int" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
@@ -2367,7 +2381,7 @@ FROM v_mtzProgExp</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="v_mtzProgExp" msprop:Generator_TableClassName="v_mtzProgExpDataTable" msprop:Generator_TableVarName="tablev_mtzProgExp" msprop:Generator_RowChangedName="v_mtzProgExpRowChanged" msprop:Generator_TablePropName="v_mtzProgExp" msprop:Generator_RowDeletingName="v_mtzProgExpRowDeleting" msprop:Generator_RowChangingName="v_mtzProgExpRowChanging" msprop:Generator_RowEvHandlerName="v_mtzProgExpRowChangeEventHandler" msprop:Generator_RowDeletedName="v_mtzProgExpRowDeleted" msprop:Generator_RowClassName="v_mtzProgExpRow" msprop:Generator_UserTableName="v_mtzProgExp" msprop:Generator_RowEvArgName="v_mtzProgExpRowChangeEvent">
|
||||
<xs:element name="v_mtzProgExp" msprop:Generator_TableClassName="v_mtzProgExpDataTable" msprop:Generator_TableVarName="tablev_mtzProgExp" msprop:Generator_TablePropName="v_mtzProgExp" msprop:Generator_RowDeletingName="v_mtzProgExpRowDeleting" msprop:Generator_RowChangingName="v_mtzProgExpRowChanging" msprop:Generator_RowEvHandlerName="v_mtzProgExpRowChangeEventHandler" msprop:Generator_RowDeletedName="v_mtzProgExpRowDeleted" msprop:Generator_UserTableName="v_mtzProgExp" msprop:Generator_RowChangedName="v_mtzProgExpRowChanged" msprop:Generator_RowEvArgName="v_mtzProgExpRowChangeEvent" msprop:Generator_RowClassName="v_mtzProgExpRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="idxIntPro" msprop:Generator_ColumnVarNameInTable="columnidxIntPro" msprop:Generator_ColumnPropNameInRow="idxIntPro" msprop:Generator_ColumnPropNameInTable="idxIntProColumn" msprop:Generator_UserColumnName="idxIntPro" type="xs:int" />
|
||||
@@ -2441,10 +2455,18 @@ FROM v_mtzProgExp</CommandText>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="idxImpianto" msprop:Generator_ColumnVarNameInTable="columnidxImpianto" msprop:Generator_ColumnPropNameInRow="idxImpianto" msprop:Generator_ColumnPropNameInTable="idxImpiantoColumn" msprop:Generator_UserColumnName="idxImpianto" type="xs:int" />
|
||||
<xs:element name="idxCausale" msprop:Generator_ColumnVarNameInTable="columnidxCausale" msprop:Generator_ColumnPropNameInRow="idxCausale" msprop:Generator_ColumnPropNameInTable="idxCausaleColumn" msprop:Generator_UserColumnName="idxCausale" type="xs:int" />
|
||||
<xs:element name="descrCausale" msprop:Generator_ColumnVarNameInTable="columndescrCausale" msprop:Generator_ColumnPropNameInRow="descrCausale" msprop:Generator_ColumnPropNameInTable="descrCausaleColumn" msprop:Generator_UserColumnName="descrCausale" minOccurs="0">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ImpiegoRisorse" msprop:Generator_TableClassName="ImpiegoRisorseDataTable" msprop:Generator_TableVarName="tableImpiegoRisorse" msprop:Generator_RowChangedName="ImpiegoRisorseRowChanged" msprop:Generator_TablePropName="ImpiegoRisorse" msprop:Generator_RowDeletingName="ImpiegoRisorseRowDeleting" msprop:Generator_RowChangingName="ImpiegoRisorseRowChanging" msprop:Generator_RowEvHandlerName="ImpiegoRisorseRowChangeEventHandler" msprop:Generator_RowDeletedName="ImpiegoRisorseRowDeleted" msprop:Generator_RowClassName="ImpiegoRisorseRow" msprop:Generator_UserTableName="ImpiegoRisorse" msprop:Generator_RowEvArgName="ImpiegoRisorseRowChangeEvent">
|
||||
<xs:element name="ImpiegoRisorse" msprop:Generator_TableClassName="ImpiegoRisorseDataTable" msprop:Generator_TableVarName="tableImpiegoRisorse" msprop:Generator_TablePropName="ImpiegoRisorse" msprop:Generator_RowDeletingName="ImpiegoRisorseRowDeleting" msprop:Generator_RowChangingName="ImpiegoRisorseRowChanging" msprop:Generator_RowEvHandlerName="ImpiegoRisorseRowChangeEventHandler" msprop:Generator_RowDeletedName="ImpiegoRisorseRowDeleted" msprop:Generator_UserTableName="ImpiegoRisorse" msprop:Generator_RowChangedName="ImpiegoRisorseRowChanged" msprop:Generator_RowEvArgName="ImpiegoRisorseRowChangeEvent" msprop:Generator_RowClassName="ImpiegoRisorseRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="idxImpiego" msprop:Generator_ColumnVarNameInTable="columnidxImpiego" msprop:Generator_ColumnPropNameInRow="idxImpiego" msprop:Generator_ColumnPropNameInTable="idxImpiegoColumn" msprop:Generator_UserColumnName="idxImpiego" type="xs:int" />
|
||||
@@ -2469,7 +2491,7 @@ FROM v_mtzProgExp</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="AnagTipoRisorsa" msprop:Generator_TableClassName="AnagTipoRisorsaDataTable" msprop:Generator_TableVarName="tableAnagTipoRisorsa" msprop:Generator_RowChangedName="AnagTipoRisorsaRowChanged" msprop:Generator_TablePropName="AnagTipoRisorsa" msprop:Generator_RowDeletingName="AnagTipoRisorsaRowDeleting" msprop:Generator_RowChangingName="AnagTipoRisorsaRowChanging" msprop:Generator_RowEvHandlerName="AnagTipoRisorsaRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagTipoRisorsaRowDeleted" msprop:Generator_RowClassName="AnagTipoRisorsaRow" msprop:Generator_UserTableName="AnagTipoRisorsa" msprop:Generator_RowEvArgName="AnagTipoRisorsaRowChangeEvent">
|
||||
<xs:element name="AnagTipoRisorsa" msprop:Generator_TableClassName="AnagTipoRisorsaDataTable" msprop:Generator_TableVarName="tableAnagTipoRisorsa" msprop:Generator_TablePropName="AnagTipoRisorsa" msprop:Generator_RowDeletingName="AnagTipoRisorsaRowDeleting" msprop:Generator_RowChangingName="AnagTipoRisorsaRowChanging" msprop:Generator_RowEvHandlerName="AnagTipoRisorsaRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagTipoRisorsaRowDeleted" msprop:Generator_UserTableName="AnagTipoRisorsa" msprop:Generator_RowChangedName="AnagTipoRisorsaRowChanged" msprop:Generator_RowEvArgName="AnagTipoRisorsaRowChangeEvent" msprop:Generator_RowClassName="AnagTipoRisorsaRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="CodRisorsa" msprop:Generator_ColumnVarNameInTable="columnCodRisorsa" msprop:Generator_ColumnPropNameInRow="CodRisorsa" msprop:Generator_ColumnPropNameInTable="CodRisorsaColumn" msprop:Generator_UserColumnName="CodRisorsa">
|
||||
@@ -2503,7 +2525,7 @@ FROM v_mtzProgExp</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="v_allData" msprop:Generator_TableClassName="v_allDataDataTable" msprop:Generator_TableVarName="tablev_allData" msprop:Generator_TablePropName="v_allData" msprop:Generator_RowDeletingName="v_allDataRowDeleting" msprop:Generator_RowChangingName="v_allDataRowChanging" msprop:Generator_RowEvHandlerName="v_allDataRowChangeEventHandler" msprop:Generator_RowDeletedName="v_allDataRowDeleted" msprop:Generator_UserTableName="v_allData" msprop:Generator_RowChangedName="v_allDataRowChanged" msprop:Generator_RowEvArgName="v_allDataRowChangeEvent" msprop:Generator_RowClassName="v_allDataRow">
|
||||
<xs:element name="v_allData" msprop:Generator_TableClassName="v_allDataDataTable" msprop:Generator_TableVarName="tablev_allData" msprop:Generator_RowChangedName="v_allDataRowChanged" msprop:Generator_TablePropName="v_allData" msprop:Generator_RowDeletingName="v_allDataRowDeleting" msprop:Generator_RowChangingName="v_allDataRowChanging" msprop:Generator_RowEvHandlerName="v_allDataRowChangeEventHandler" msprop:Generator_RowDeletedName="v_allDataRowDeleted" msprop:Generator_RowClassName="v_allDataRow" msprop:Generator_UserTableName="v_allData" msprop:Generator_RowEvArgName="v_allDataRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="numIntMtz" msprop:Generator_ColumnVarNameInTable="columnnumIntMtz" msprop:Generator_ColumnPropNameInRow="numIntMtz" msprop:Generator_ColumnPropNameInTable="numIntMtzColumn" msprop:Generator_UserColumnName="numIntMtz" type="xs:int" />
|
||||
@@ -2581,7 +2603,7 @@ FROM v_mtzProgExp</CommandText>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ElencoIntervExt" msprop:Generator_TableClassName="ElencoIntervExtDataTable" msprop:Generator_TableVarName="tableElencoIntervExt" msprop:Generator_TablePropName="ElencoIntervExt" msprop:Generator_RowDeletingName="ElencoIntervExtRowDeleting" msprop:Generator_RowChangingName="ElencoIntervExtRowChanging" msprop:Generator_RowEvHandlerName="ElencoIntervExtRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoIntervExtRowDeleted" msprop:Generator_UserTableName="ElencoIntervExt" msprop:Generator_RowChangedName="ElencoIntervExtRowChanged" msprop:Generator_RowEvArgName="ElencoIntervExtRowChangeEvent" msprop:Generator_RowClassName="ElencoIntervExtRow">
|
||||
<xs:element name="ElencoIntervExt" msprop:Generator_TableClassName="ElencoIntervExtDataTable" msprop:Generator_TableVarName="tableElencoIntervExt" msprop:Generator_RowChangedName="ElencoIntervExtRowChanged" msprop:Generator_TablePropName="ElencoIntervExt" msprop:Generator_RowDeletingName="ElencoIntervExtRowDeleting" msprop:Generator_RowChangingName="ElencoIntervExtRowChanging" msprop:Generator_RowEvHandlerName="ElencoIntervExtRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoIntervExtRowDeleted" msprop:Generator_RowClassName="ElencoIntervExtRow" msprop:Generator_UserTableName="ElencoIntervExt" msprop:Generator_RowEvArgName="ElencoIntervExtRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="codImpianto" msprop:Generator_ColumnVarNameInTable="columncodImpianto" msprop:Generator_ColumnPropNameInRow="codImpianto" msprop:Generator_ColumnPropNameInTable="codImpiantoColumn" msprop:Generator_UserColumnName="codImpianto" minOccurs="0">
|
||||
@@ -2761,22 +2783,22 @@ FROM v_mtzProgExp</CommandText>
|
||||
</xs:element>
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<msdata:Relationship name="FK_AnagMacchine_AnagImpianti" msdata:parent="AnagImpianti" msdata:child="v_macchine" msdata:parentkey="idxImpianto" msdata:childkey="idxImpianto" msprop:Generator_UserChildTable="v_macchine" msprop:Generator_ChildPropName="Getv_macchineRows" msprop:Generator_UserRelationName="FK_AnagMacchine_AnagImpianti" msprop:Generator_ParentPropName="AnagImpiantiRow" msprop:Generator_RelationVarName="relationFK_AnagMacchine_AnagImpianti" msprop:Generator_UserParentTable="AnagImpianti" />
|
||||
<msdata:Relationship name="Macchine2FamMacchine_v_macchine" msdata:parent="v_selFamMacc" msdata:child="v_macchine" msdata:parentkey="idxMacchina" msdata:childkey="idxMacchina" msprop:Generator_UserChildTable="v_macchine" msprop:Generator_ChildPropName="Getv_macchineRows" msprop:Generator_UserRelationName="Macchine2FamMacchine_v_macchine" msprop:Generator_ParentPropName="v_selFamMaccRow" msprop:Generator_RelationVarName="relationMacchine2FamMacchine_v_macchine" msprop:Generator_UserParentTable="v_selFamMacc" />
|
||||
<msdata:Relationship name="AnagFamMacchine_v_selFamMacc" msdata:parent="AnagFamMacchine" msdata:child="v_selFamMacc" msdata:parentkey="idxFamMacchine" msdata:childkey="idxFamMacchine" msprop:Generator_UserChildTable="v_selFamMacc" msprop:Generator_ChildPropName="Getv_selFamMaccRows" msprop:Generator_UserRelationName="AnagFamMacchine_v_selFamMacc" msprop:Generator_ParentPropName="AnagFamMacchineRow" msprop:Generator_RelationVarName="relationAnagFamMacchine_v_selFamMacc" msprop:Generator_UserParentTable="AnagFamMacchine" />
|
||||
<msdata:Relationship name="FK_InterventiMtz_AnagAmbitoGuasto" msdata:parent="AnagAmbitoGuasto" msdata:child="v_intervExp" msdata:parentkey="idxAmbito" msdata:childkey="idxAmbito" msprop:Generator_UserChildTable="v_intervExp" msprop:Generator_ChildPropName="Getv_intervExpRows" msprop:Generator_UserRelationName="FK_InterventiMtz_AnagAmbitoGuasto" msprop:Generator_ParentPropName="AnagAmbitoGuastoRow" msprop:Generator_RelationVarName="relationFK_InterventiMtz_AnagAmbitoGuasto" msprop:Generator_UserParentTable="AnagAmbitoGuasto" />
|
||||
<msdata:Relationship name="FK_InterventiMtz_AnagImpianti" msdata:parent="AnagImpianti" msdata:child="v_intervExp" msdata:parentkey="idxImpianto" msdata:childkey="idxImpianto" msprop:Generator_UserChildTable="v_intervExp" msprop:Generator_ChildPropName="Getv_intervExpRows" msprop:Generator_UserRelationName="FK_InterventiMtz_AnagImpianti" msprop:Generator_ParentPropName="AnagImpiantiRow" msprop:Generator_RelationVarName="relationFK_InterventiMtz_AnagImpianti" msprop:Generator_UserParentTable="AnagImpianti" />
|
||||
<msdata:Relationship name="FK_InterventiMtz_AnagPriorita" msdata:parent="AnagPriorita" msdata:child="v_intervExp" msdata:parentkey="idxPriorita" msdata:childkey="idxPriorita" msprop:Generator_UserChildTable="v_intervExp" msprop:Generator_ChildPropName="Getv_intervExpRows" msprop:Generator_UserRelationName="FK_InterventiMtz_AnagPriorita" msprop:Generator_ParentPropName="AnagPrioritaRow" msprop:Generator_RelationVarName="relationFK_InterventiMtz_AnagPriorita" msprop:Generator_UserParentTable="AnagPriorita" />
|
||||
<msdata:Relationship name="FK_InterventiMtz_AnagTipoGuasto" msdata:parent="AnagTipoGuasto" msdata:child="v_intervExp" msdata:parentkey="idxTipo" msdata:childkey="idxTipo" msprop:Generator_UserChildTable="v_intervExp" msprop:Generator_ChildPropName="GetInterventiMtzRows" msprop:Generator_UserRelationName="FK_InterventiMtz_AnagTipoGuasto" msprop:Generator_ParentPropName="AnagTipoGuastoRow" msprop:Generator_RelationVarName="relationFK_InterventiMtz_AnagTipoGuasto" msprop:Generator_UserParentTable="AnagTipoGuasto" />
|
||||
<msdata:Relationship name="v_intervExp_InterventoOpMtz" msdata:parent="v_intervExp" msdata:child="InterventoOpMtz" msdata:parentkey="numIntMtz" msdata:childkey="numIntMtz" msprop:Generator_UserChildTable="InterventoOpMtz" msprop:Generator_ChildPropName="GetInterventoOpMtzRows" msprop:Generator_UserRelationName="v_intervExp_InterventoOpMtz" msprop:Generator_ParentPropName="v_intervExpRow" msprop:Generator_RelationVarName="relationv_intervExp_InterventoOpMtz" msprop:Generator_UserParentTable="v_intervExp" />
|
||||
<msdata:Relationship name="FK_MtzProgPending_MtzProgrammata" msdata:parent="MtzProgrammata" msdata:child="MtzProgPending" msdata:parentkey="idxIntPro" msdata:childkey="idxIntPro" msprop:Generator_UserChildTable="MtzProgPending" msprop:Generator_ChildPropName="GetMtzProgPendingRows" msprop:Generator_UserRelationName="FK_MtzProgPending_MtzProgrammata" msprop:Generator_ParentPropName="MtzProgrammataRow" msprop:Generator_RelationVarName="relationFK_MtzProgPending_MtzProgrammata" msprop:Generator_UserParentTable="MtzProgrammata" />
|
||||
<msdata:Relationship name="FK_FiltroImpianti_AnagImpianti" msdata:parent="AnagImpianti" msdata:child="FiltroImpianti" msdata:parentkey="idxImpianto" msdata:childkey="idxImpianto" msprop:Generator_UserChildTable="FiltroImpianti" msprop:Generator_ChildPropName="GetFiltroImpiantiRows" msprop:Generator_UserRelationName="FK_FiltroImpianti_AnagImpianti" msprop:Generator_ParentPropName="AnagImpiantiRow" msprop:Generator_RelationVarName="relationFK_FiltroImpianti_AnagImpianti" msprop:Generator_UserParentTable="AnagImpianti" />
|
||||
<msdata:Relationship name="v_macchine_FiltroMacchine" msdata:parent="v_macchine" msdata:child="FiltroMacchine" msdata:parentkey="idxMacchina" msdata:childkey="idxMacchina" msprop:Generator_UserChildTable="FiltroMacchine" msprop:Generator_ChildPropName="GetFiltroMacchineRows" msprop:Generator_UserRelationName="v_macchine_FiltroMacchine" msprop:Generator_ParentPropName="v_macchineRow" msprop:Generator_RelationVarName="relationv_macchine_FiltroMacchine" msprop:Generator_UserParentTable="v_macchine" />
|
||||
<msdata:Relationship name="FK_FiltroStati_AnagStati" msdata:parent="AnagStati" msdata:child="FiltroStati" msdata:parentkey="idxStato" msdata:childkey="idxStato" msprop:Generator_UserChildTable="FiltroStati" msprop:Generator_ChildPropName="GetFiltroStatiRows" msprop:Generator_UserRelationName="FK_FiltroStati_AnagStati" msprop:Generator_ParentPropName="AnagStatiRow" msprop:Generator_RelationVarName="relationFK_FiltroStati_AnagStati" msprop:Generator_UserParentTable="AnagStati" />
|
||||
<msdata:Relationship name="FK_AnagCausali_AnagFamMacchine" msdata:parent="AnagFamMacchine" msdata:child="AnagCausali" msdata:parentkey="idxFamMacchine" msdata:childkey="idxFamMacchine" msprop:Generator_UserChildTable="AnagCausali" msprop:Generator_ChildPropName="GetAnagCausaliRows" msprop:Generator_UserRelationName="FK_AnagCausali_AnagFamMacchine" msprop:Generator_ParentPropName="AnagFamMacchineRow" msprop:Generator_RelationVarName="relationFK_AnagCausali_AnagFamMacchine" msprop:Generator_UserParentTable="AnagFamMacchine" />
|
||||
<msdata:Relationship name="FK_InterventoOpMtz_AnagrOperMtz" msdata:parent="AnagrOperMtz" msdata:child="InterventoOpMtz" msdata:parentkey="matrOp" msdata:childkey="matrOp" msprop:Generator_UserChildTable="InterventoOpMtz" msprop:Generator_ChildPropName="GetInterventoOpMtzRows" msprop:Generator_UserRelationName="FK_InterventoOpMtz_AnagrOperMtz" msprop:Generator_ParentPropName="AnagrOperMtzRow" msprop:Generator_RelationVarName="relationFK_InterventoOpMtz_AnagrOperMtz" msprop:Generator_UserParentTable="AnagrOperMtz" />
|
||||
<msdata:Relationship name="FK_ImpiegoRisorse_AnagTipoRisorsa" msdata:parent="AnagTipoRisorsa" msdata:child="ImpiegoRisorse" msdata:parentkey="CodRisorsa" msdata:childkey="CodRisorsa" msprop:Generator_UserChildTable="ImpiegoRisorse" msprop:Generator_ChildPropName="GetImpiegoRisorseRows" msprop:Generator_UserRelationName="FK_ImpiegoRisorse_AnagTipoRisorsa" msprop:Generator_ParentPropName="AnagTipoRisorsaRow" msprop:Generator_RelationVarName="relationFK_ImpiegoRisorse_AnagTipoRisorsa" msprop:Generator_UserParentTable="AnagTipoRisorsa" />
|
||||
<msdata:Relationship name="v_intervExp_ImpiegoRisorse" msdata:parent="v_intervExp" msdata:child="ImpiegoRisorse" msdata:parentkey="numIntMtz" msdata:childkey="numIntMtz" msprop:Generator_UserChildTable="ImpiegoRisorse" msprop:Generator_ChildPropName="GetImpiegoRisorseRows" msprop:Generator_UserRelationName="v_intervExp_ImpiegoRisorse" msprop:Generator_RelationVarName="relationv_intervExp_ImpiegoRisorse" msprop:Generator_UserParentTable="v_intervExp" msprop:Generator_ParentPropName="v_intervExpRow" />
|
||||
<msdata:Relationship name="FK_AnagMacchine_AnagImpianti" msdata:parent="AnagImpianti" msdata:child="v_macchine" msdata:parentkey="idxImpianto" msdata:childkey="idxImpianto" msprop:Generator_UserChildTable="v_macchine" msprop:Generator_ChildPropName="Getv_macchineRows" msprop:Generator_UserRelationName="FK_AnagMacchine_AnagImpianti" msprop:Generator_RelationVarName="relationFK_AnagMacchine_AnagImpianti" msprop:Generator_UserParentTable="AnagImpianti" msprop:Generator_ParentPropName="AnagImpiantiRow" />
|
||||
<msdata:Relationship name="Macchine2FamMacchine_v_macchine" msdata:parent="v_selFamMacc" msdata:child="v_macchine" msdata:parentkey="idxMacchina" msdata:childkey="idxMacchina" msprop:Generator_UserChildTable="v_macchine" msprop:Generator_ChildPropName="Getv_macchineRows" msprop:Generator_UserRelationName="Macchine2FamMacchine_v_macchine" msprop:Generator_RelationVarName="relationMacchine2FamMacchine_v_macchine" msprop:Generator_UserParentTable="v_selFamMacc" msprop:Generator_ParentPropName="v_selFamMaccRow" />
|
||||
<msdata:Relationship name="AnagFamMacchine_v_selFamMacc" msdata:parent="AnagFamMacchine" msdata:child="v_selFamMacc" msdata:parentkey="idxFamMacchine" msdata:childkey="idxFamMacchine" msprop:Generator_UserChildTable="v_selFamMacc" msprop:Generator_ChildPropName="Getv_selFamMaccRows" msprop:Generator_UserRelationName="AnagFamMacchine_v_selFamMacc" msprop:Generator_RelationVarName="relationAnagFamMacchine_v_selFamMacc" msprop:Generator_UserParentTable="AnagFamMacchine" msprop:Generator_ParentPropName="AnagFamMacchineRow" />
|
||||
<msdata:Relationship name="FK_InterventiMtz_AnagAmbitoGuasto" msdata:parent="AnagAmbitoGuasto" msdata:child="v_intervExp" msdata:parentkey="idxAmbito" msdata:childkey="idxAmbito" msprop:Generator_UserChildTable="v_intervExp" msprop:Generator_ChildPropName="Getv_intervExpRows" msprop:Generator_UserRelationName="FK_InterventiMtz_AnagAmbitoGuasto" msprop:Generator_RelationVarName="relationFK_InterventiMtz_AnagAmbitoGuasto" msprop:Generator_UserParentTable="AnagAmbitoGuasto" msprop:Generator_ParentPropName="AnagAmbitoGuastoRow" />
|
||||
<msdata:Relationship name="FK_InterventiMtz_AnagImpianti" msdata:parent="AnagImpianti" msdata:child="v_intervExp" msdata:parentkey="idxImpianto" msdata:childkey="idxImpianto" msprop:Generator_UserChildTable="v_intervExp" msprop:Generator_ChildPropName="Getv_intervExpRows" msprop:Generator_UserRelationName="FK_InterventiMtz_AnagImpianti" msprop:Generator_RelationVarName="relationFK_InterventiMtz_AnagImpianti" msprop:Generator_UserParentTable="AnagImpianti" msprop:Generator_ParentPropName="AnagImpiantiRow" />
|
||||
<msdata:Relationship name="FK_InterventiMtz_AnagPriorita" msdata:parent="AnagPriorita" msdata:child="v_intervExp" msdata:parentkey="idxPriorita" msdata:childkey="idxPriorita" msprop:Generator_UserChildTable="v_intervExp" msprop:Generator_ChildPropName="Getv_intervExpRows" msprop:Generator_UserRelationName="FK_InterventiMtz_AnagPriorita" msprop:Generator_RelationVarName="relationFK_InterventiMtz_AnagPriorita" msprop:Generator_UserParentTable="AnagPriorita" msprop:Generator_ParentPropName="AnagPrioritaRow" />
|
||||
<msdata:Relationship name="FK_InterventiMtz_AnagTipoGuasto" msdata:parent="AnagTipoGuasto" msdata:child="v_intervExp" msdata:parentkey="idxTipo" msdata:childkey="idxTipo" msprop:Generator_UserChildTable="v_intervExp" msprop:Generator_ChildPropName="GetInterventiMtzRows" msprop:Generator_UserRelationName="FK_InterventiMtz_AnagTipoGuasto" msprop:Generator_RelationVarName="relationFK_InterventiMtz_AnagTipoGuasto" msprop:Generator_UserParentTable="AnagTipoGuasto" msprop:Generator_ParentPropName="AnagTipoGuastoRow" />
|
||||
<msdata:Relationship name="v_intervExp_InterventoOpMtz" msdata:parent="v_intervExp" msdata:child="InterventoOpMtz" msdata:parentkey="numIntMtz" msdata:childkey="numIntMtz" msprop:Generator_UserChildTable="InterventoOpMtz" msprop:Generator_ChildPropName="GetInterventoOpMtzRows" msprop:Generator_UserRelationName="v_intervExp_InterventoOpMtz" msprop:Generator_RelationVarName="relationv_intervExp_InterventoOpMtz" msprop:Generator_UserParentTable="v_intervExp" msprop:Generator_ParentPropName="v_intervExpRow" />
|
||||
<msdata:Relationship name="FK_MtzProgPending_MtzProgrammata" msdata:parent="MtzProgrammata" msdata:child="MtzProgPending" msdata:parentkey="idxIntPro" msdata:childkey="idxIntPro" msprop:Generator_UserChildTable="MtzProgPending" msprop:Generator_ChildPropName="GetMtzProgPendingRows" msprop:Generator_UserRelationName="FK_MtzProgPending_MtzProgrammata" msprop:Generator_RelationVarName="relationFK_MtzProgPending_MtzProgrammata" msprop:Generator_UserParentTable="MtzProgrammata" msprop:Generator_ParentPropName="MtzProgrammataRow" />
|
||||
<msdata:Relationship name="FK_FiltroImpianti_AnagImpianti" msdata:parent="AnagImpianti" msdata:child="FiltroImpianti" msdata:parentkey="idxImpianto" msdata:childkey="idxImpianto" msprop:Generator_UserChildTable="FiltroImpianti" msprop:Generator_ChildPropName="GetFiltroImpiantiRows" msprop:Generator_UserRelationName="FK_FiltroImpianti_AnagImpianti" msprop:Generator_RelationVarName="relationFK_FiltroImpianti_AnagImpianti" msprop:Generator_UserParentTable="AnagImpianti" msprop:Generator_ParentPropName="AnagImpiantiRow" />
|
||||
<msdata:Relationship name="v_macchine_FiltroMacchine" msdata:parent="v_macchine" msdata:child="FiltroMacchine" msdata:parentkey="idxMacchina" msdata:childkey="idxMacchina" msprop:Generator_UserChildTable="FiltroMacchine" msprop:Generator_ChildPropName="GetFiltroMacchineRows" msprop:Generator_UserRelationName="v_macchine_FiltroMacchine" msprop:Generator_RelationVarName="relationv_macchine_FiltroMacchine" msprop:Generator_UserParentTable="v_macchine" msprop:Generator_ParentPropName="v_macchineRow" />
|
||||
<msdata:Relationship name="FK_FiltroStati_AnagStati" msdata:parent="AnagStati" msdata:child="FiltroStati" msdata:parentkey="idxStato" msdata:childkey="idxStato" msprop:Generator_UserChildTable="FiltroStati" msprop:Generator_ChildPropName="GetFiltroStatiRows" msprop:Generator_UserRelationName="FK_FiltroStati_AnagStati" msprop:Generator_RelationVarName="relationFK_FiltroStati_AnagStati" msprop:Generator_UserParentTable="AnagStati" msprop:Generator_ParentPropName="AnagStatiRow" />
|
||||
<msdata:Relationship name="FK_AnagCausali_AnagFamMacchine" msdata:parent="AnagFamMacchine" msdata:child="AnagCausali" msdata:parentkey="idxFamMacchine" msdata:childkey="idxFamMacchine" msprop:Generator_UserChildTable="AnagCausali" msprop:Generator_ChildPropName="GetAnagCausaliRows" msprop:Generator_UserRelationName="FK_AnagCausali_AnagFamMacchine" msprop:Generator_RelationVarName="relationFK_AnagCausali_AnagFamMacchine" msprop:Generator_UserParentTable="AnagFamMacchine" msprop:Generator_ParentPropName="AnagFamMacchineRow" />
|
||||
<msdata:Relationship name="FK_InterventoOpMtz_AnagrOperMtz" msdata:parent="AnagrOperMtz" msdata:child="InterventoOpMtz" msdata:parentkey="matrOp" msdata:childkey="matrOp" msprop:Generator_UserChildTable="InterventoOpMtz" msprop:Generator_ChildPropName="GetInterventoOpMtzRows" msprop:Generator_UserRelationName="FK_InterventoOpMtz_AnagrOperMtz" msprop:Generator_RelationVarName="relationFK_InterventoOpMtz_AnagrOperMtz" msprop:Generator_UserParentTable="AnagrOperMtz" msprop:Generator_ParentPropName="AnagrOperMtzRow" />
|
||||
<msdata:Relationship name="FK_ImpiegoRisorse_AnagTipoRisorsa" msdata:parent="AnagTipoRisorsa" msdata:child="ImpiegoRisorse" msdata:parentkey="CodRisorsa" msdata:childkey="CodRisorsa" msprop:Generator_UserChildTable="ImpiegoRisorse" msprop:Generator_ChildPropName="GetImpiegoRisorseRows" msprop:Generator_UserRelationName="FK_ImpiegoRisorse_AnagTipoRisorsa" msprop:Generator_RelationVarName="relationFK_ImpiegoRisorse_AnagTipoRisorsa" msprop:Generator_UserParentTable="AnagTipoRisorsa" msprop:Generator_ParentPropName="AnagTipoRisorsaRow" />
|
||||
<msdata:Relationship name="v_intervExp_ImpiegoRisorse" msdata:parent="v_intervExp" msdata:child="ImpiegoRisorse" msdata:parentkey="numIntMtz" msdata:childkey="numIntMtz" msprop:Generator_UserChildTable="ImpiegoRisorse" msprop:Generator_ChildPropName="GetImpiegoRisorseRows" msprop:Generator_UserRelationName="v_intervExp_ImpiegoRisorse" msprop:Generator_ParentPropName="v_intervExpRow" msprop:Generator_RelationVarName="relationv_intervExp_ImpiegoRisorse" msprop:Generator_UserParentTable="v_intervExp" />
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
</xs:schema>
|
||||
+180
-39
@@ -5030,6 +5030,8 @@ namespace GIM_data {
|
||||
|
||||
private global::System.Data.DataColumn columnidxTipo;
|
||||
|
||||
private global::System.Data.DataColumn columnidxCausale;
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public MtzProgPendingDataTable() {
|
||||
@@ -5127,6 +5129,14 @@ 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 idxCausaleColumn {
|
||||
get {
|
||||
return this.columnidxCausale;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
@@ -5164,7 +5174,7 @@ namespace GIM_data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public MtzProgPendingRow AddMtzProgPendingRow(MtzProgrammataRow parentMtzProgrammataRowByFK_MtzProgPending_MtzProgrammata, int idxMacchina, System.DateTime data, string descrizione, int idxPriorita, bool isFermo, int idxTipo) {
|
||||
public MtzProgPendingRow AddMtzProgPendingRow(MtzProgrammataRow parentMtzProgrammataRowByFK_MtzProgPending_MtzProgrammata, int idxMacchina, System.DateTime data, string descrizione, int idxPriorita, bool isFermo, int idxTipo, int idxCausale) {
|
||||
MtzProgPendingRow rowMtzProgPendingRow = ((MtzProgPendingRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
null,
|
||||
@@ -5174,7 +5184,8 @@ namespace GIM_data {
|
||||
descrizione,
|
||||
idxPriorita,
|
||||
isFermo,
|
||||
idxTipo};
|
||||
idxTipo,
|
||||
idxCausale};
|
||||
if ((parentMtzProgrammataRowByFK_MtzProgPending_MtzProgrammata != null)) {
|
||||
columnValuesArray[1] = parentMtzProgrammataRowByFK_MtzProgPending_MtzProgrammata[0];
|
||||
}
|
||||
@@ -5215,6 +5226,7 @@ namespace GIM_data {
|
||||
this.columnidxPriorita = base.Columns["idxPriorita"];
|
||||
this.columnisFermo = base.Columns["isFermo"];
|
||||
this.columnidxTipo = base.Columns["idxTipo"];
|
||||
this.columnidxCausale = base.Columns["idxCausale"];
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -5236,6 +5248,8 @@ namespace GIM_data {
|
||||
base.Columns.Add(this.columnisFermo);
|
||||
this.columnidxTipo = new global::System.Data.DataColumn("idxTipo", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnidxTipo);
|
||||
this.columnidxCausale = new global::System.Data.DataColumn("idxCausale", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnidxCausale);
|
||||
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
|
||||
this.columnidxPending}, true));
|
||||
this.columnidxPending.AutoIncrement = true;
|
||||
@@ -5246,6 +5260,7 @@ namespace GIM_data {
|
||||
this.columnidxPending.Unique = true;
|
||||
this.columnidxIntPro.AllowDBNull = false;
|
||||
this.columndescrizione.MaxLength = 2500;
|
||||
this.columnidxCausale.AllowDBNull = false;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -5397,6 +5412,8 @@ namespace GIM_data {
|
||||
|
||||
private global::System.Data.DataColumn columnidxTipo;
|
||||
|
||||
private global::System.Data.DataColumn columnidxCausale;
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public MtzProgrammataDataTable() {
|
||||
@@ -5502,6 +5519,14 @@ 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 idxCausaleColumn {
|
||||
get {
|
||||
return this.columnidxCausale;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
@@ -5539,7 +5564,7 @@ namespace GIM_data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public MtzProgrammataRow AddMtzProgrammataRow(int idxMacchina, System.DateTime inizio, string codFrequenza, int cadenza, string descrizione, int idxPriorita, bool isFermo, int idxTipo) {
|
||||
public MtzProgrammataRow AddMtzProgrammataRow(int idxMacchina, System.DateTime inizio, string codFrequenza, int cadenza, string descrizione, int idxPriorita, bool isFermo, int idxTipo, int idxCausale) {
|
||||
MtzProgrammataRow rowMtzProgrammataRow = ((MtzProgrammataRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
null,
|
||||
@@ -5550,7 +5575,8 @@ namespace GIM_data {
|
||||
descrizione,
|
||||
idxPriorita,
|
||||
isFermo,
|
||||
idxTipo};
|
||||
idxTipo,
|
||||
idxCausale};
|
||||
rowMtzProgrammataRow.ItemArray = columnValuesArray;
|
||||
this.Rows.Add(rowMtzProgrammataRow);
|
||||
return rowMtzProgrammataRow;
|
||||
@@ -5589,6 +5615,7 @@ namespace GIM_data {
|
||||
this.columnidxPriorita = base.Columns["idxPriorita"];
|
||||
this.columnisFermo = base.Columns["isFermo"];
|
||||
this.columnidxTipo = base.Columns["idxTipo"];
|
||||
this.columnidxCausale = base.Columns["idxCausale"];
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -5612,6 +5639,8 @@ namespace GIM_data {
|
||||
base.Columns.Add(this.columnisFermo);
|
||||
this.columnidxTipo = new global::System.Data.DataColumn("idxTipo", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnidxTipo);
|
||||
this.columnidxCausale = new global::System.Data.DataColumn("idxCausale", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnidxCausale);
|
||||
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
|
||||
this.columnidxIntPro}, true));
|
||||
this.columnidxIntPro.AutoIncrement = true;
|
||||
@@ -5622,6 +5651,7 @@ namespace GIM_data {
|
||||
this.columnidxIntPro.Unique = true;
|
||||
this.columncodFrequenza.MaxLength = 2;
|
||||
this.columndescrizione.MaxLength = 2500;
|
||||
this.columnidxCausale.AllowDBNull = false;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -7781,6 +7811,10 @@ namespace GIM_data {
|
||||
|
||||
private global::System.Data.DataColumn columnidxImpianto;
|
||||
|
||||
private global::System.Data.DataColumn columnidxCausale;
|
||||
|
||||
private global::System.Data.DataColumn columndescrCausale;
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public v_mtzProgExpDataTable() {
|
||||
@@ -7950,6 +7984,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 idxCausaleColumn {
|
||||
get {
|
||||
return this.columnidxCausale;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public global::System.Data.DataColumn descrCausaleColumn {
|
||||
get {
|
||||
return this.columndescrCausale;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
@@ -8004,7 +8054,9 @@ namespace GIM_data {
|
||||
bool isFermo,
|
||||
int idxTipo,
|
||||
string descrTipo,
|
||||
int idxImpianto) {
|
||||
int idxImpianto,
|
||||
int idxCausale,
|
||||
string descrCausale) {
|
||||
v_mtzProgExpRow rowv_mtzProgExpRow = ((v_mtzProgExpRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
idxIntPro,
|
||||
@@ -8023,7 +8075,9 @@ namespace GIM_data {
|
||||
isFermo,
|
||||
idxTipo,
|
||||
descrTipo,
|
||||
idxImpianto};
|
||||
idxImpianto,
|
||||
idxCausale,
|
||||
descrCausale};
|
||||
rowv_mtzProgExpRow.ItemArray = columnValuesArray;
|
||||
this.Rows.Add(rowv_mtzProgExpRow);
|
||||
return rowv_mtzProgExpRow;
|
||||
@@ -8070,6 +8124,8 @@ namespace GIM_data {
|
||||
this.columnidxTipo = base.Columns["idxTipo"];
|
||||
this.columndescrTipo = base.Columns["descrTipo"];
|
||||
this.columnidxImpianto = base.Columns["idxImpianto"];
|
||||
this.columnidxCausale = base.Columns["idxCausale"];
|
||||
this.columndescrCausale = base.Columns["descrCausale"];
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -8109,6 +8165,10 @@ namespace GIM_data {
|
||||
base.Columns.Add(this.columndescrTipo);
|
||||
this.columnidxImpianto = new global::System.Data.DataColumn("idxImpianto", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnidxImpianto);
|
||||
this.columnidxCausale = new global::System.Data.DataColumn("idxCausale", typeof(int), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnidxCausale);
|
||||
this.columndescrCausale = new global::System.Data.DataColumn("descrCausale", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columndescrCausale);
|
||||
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
|
||||
this.columnidxIntPro}, true));
|
||||
this.columnidxIntPro.AllowDBNull = false;
|
||||
@@ -8123,6 +8183,8 @@ namespace GIM_data {
|
||||
this.columndescrPriorita.MaxLength = 50;
|
||||
this.columndescrTipo.MaxLength = 50;
|
||||
this.columnidxImpianto.AllowDBNull = false;
|
||||
this.columnidxCausale.AllowDBNull = false;
|
||||
this.columndescrCausale.MaxLength = 50;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -12148,6 +12210,17 @@ namespace GIM_data {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public int idxCausale {
|
||||
get {
|
||||
return ((int)(this[this.tableMtzProgPending.idxCausaleColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableMtzProgPending.idxCausaleColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public MtzProgrammataRow MtzProgrammataRow {
|
||||
@@ -12385,6 +12458,17 @@ namespace GIM_data {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public int idxCausale {
|
||||
get {
|
||||
return ((int)(this[this.tableMtzProgrammata.idxCausaleColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableMtzProgrammata.idxCausaleColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public bool IsidxMacchinaNull() {
|
||||
@@ -13246,6 +13330,33 @@ namespace GIM_data {
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public int idxCausale {
|
||||
get {
|
||||
return ((int)(this[this.tablev_mtzProgExp.idxCausaleColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tablev_mtzProgExp.idxCausaleColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public string descrCausale {
|
||||
get {
|
||||
try {
|
||||
return ((string)(this[this.tablev_mtzProgExp.descrCausaleColumn]));
|
||||
}
|
||||
catch (global::System.InvalidCastException e) {
|
||||
throw new global::System.Data.StrongTypingException("The value for column \'descrCausale\' in table \'v_mtzProgExp\' is DBNull.", e);
|
||||
}
|
||||
}
|
||||
set {
|
||||
this[this.tablev_mtzProgExp.descrCausaleColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public bool IsidxMacchinaNull() {
|
||||
@@ -13425,6 +13536,18 @@ namespace GIM_data {
|
||||
public void SetdescrTipoNull() {
|
||||
this[this.tablev_mtzProgExp.descrTipoColumn] = global::System.Convert.DBNull;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public bool IsdescrCausaleNull() {
|
||||
return this.IsNull(this.tablev_mtzProgExp.descrCausaleColumn);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public void SetdescrCausaleNull() {
|
||||
this[this.tablev_mtzProgExp.descrCausaleColumn] = global::System.Convert.DBNull;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -19942,6 +20065,7 @@ ORDER BY numIntMtz DESC";
|
||||
tableMapping.ColumnMappings.Add("idxPriorita", "idxPriorita");
|
||||
tableMapping.ColumnMappings.Add("isFermo", "isFermo");
|
||||
tableMapping.ColumnMappings.Add("idxTipo", "idxTipo");
|
||||
tableMapping.ColumnMappings.Add("idxCausale", "idxCausale");
|
||||
this._adapter.TableMappings.Add(tableMapping);
|
||||
this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.DeleteCommand.Connection = this.Connection;
|
||||
@@ -19951,8 +20075,8 @@ ORDER BY numIntMtz DESC";
|
||||
this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.InsertCommand.Connection = this.Connection;
|
||||
this._adapter.InsertCommand.CommandText = "INSERT INTO [MtzProgPending] ([idxIntPro], [idxMacchina], [data], [descrizione], " +
|
||||
"[idxPriorita], [isFermo], [idxTipo]) VALUES (@idxIntPro, @idxMacchina, @data, @d" +
|
||||
"escrizione, @idxPriorita, @isFermo, @idxTipo)";
|
||||
"[idxPriorita], [isFermo], [idxTipo], [idxCausale]) VALUES (@idxIntPro, @idxMacch" +
|
||||
"ina, @data, @descrizione, @idxPriorita, @isFermo, @idxTipo, @idxCausale)";
|
||||
this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxIntPro", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxIntPro", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxMacchina", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxMacchina", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
@@ -19961,12 +20085,10 @@ ORDER BY numIntMtz DESC";
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxPriorita", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxPriorita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@isFermo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isFermo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxTipo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxTipo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxCausale", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxCausale", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.UpdateCommand.Connection = this.Connection;
|
||||
this._adapter.UpdateCommand.CommandText = "UPDATE [MtzProgPending] SET [idxIntPro] = @idxIntPro, [idxMacchina] = @idxMacchin" +
|
||||
"a, [data] = @data, [descrizione] = @descrizione, [idxPriorita] = @idxPriorita, [" +
|
||||
"isFermo] = @isFermo, [idxTipo] = @idxTipo WHERE (([idxPending] = @Original_idxPe" +
|
||||
"nding))";
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [MtzProgPending] SET [idxIntPro] = @idxIntPro, [idxMacchina] = @idxMacchina, [data] = @data, [descrizione] = @descrizione, [idxPriorita] = @idxPriorita, [isFermo] = @isFermo, [idxTipo] = @idxTipo, [idxCausale] = @idxCausale WHERE (([idxPending] = @Original_idxPending))";
|
||||
this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxIntPro", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxIntPro", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxMacchina", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxMacchina", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
@@ -19975,6 +20097,7 @@ ORDER BY numIntMtz DESC";
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxPriorita", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxPriorita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@isFermo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isFermo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxTipo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxTipo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxCausale", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxCausale", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idxPending", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxPending", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
@@ -19991,15 +20114,14 @@ ORDER BY numIntMtz DESC";
|
||||
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 idxPending, idxIntPro, idxMacchina, data, descrizione, idxPriorita," +
|
||||
" isFermo, idxTipo\r\nFROM MtzProgPending";
|
||||
this._commandCollection[0].CommandText = "SELECT *\r\nFROM MtzProgPending";
|
||||
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 data, descrizione, idxIntPro, idxMacchina, idxPending, idxPriorita, idxTip" +
|
||||
"o, isFermo FROM MtzProgPending WHERE (data < @dataScadenza)";
|
||||
this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@dataScadenza", 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_scadData";
|
||||
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("@dataScadenza", 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()]
|
||||
@@ -20033,10 +20155,10 @@ ORDER BY numIntMtz DESC";
|
||||
public virtual DS_applicazione.MtzProgPendingDataTable getByDataScad(global::System.Nullable<global::System.DateTime> dataScadenza) {
|
||||
this.Adapter.SelectCommand = this.CommandCollection[1];
|
||||
if ((dataScadenza.HasValue == true)) {
|
||||
this.Adapter.SelectCommand.Parameters[0].Value = ((System.DateTime)(dataScadenza.Value));
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = ((System.DateTime)(dataScadenza.Value));
|
||||
}
|
||||
else {
|
||||
this.Adapter.SelectCommand.Parameters[0].Value = global::System.DBNull.Value;
|
||||
this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
|
||||
}
|
||||
DS_applicazione.MtzProgPendingDataTable dataTable = new DS_applicazione.MtzProgPendingDataTable();
|
||||
this.Adapter.Fill(dataTable);
|
||||
@@ -20098,7 +20220,7 @@ ORDER BY numIntMtz DESC";
|
||||
[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.Insert, true)]
|
||||
public virtual int Insert(int idxIntPro, global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> data, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo) {
|
||||
public virtual int Insert(int idxIntPro, global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> data, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo, int idxCausale) {
|
||||
this.Adapter.InsertCommand.Parameters[0].Value = ((int)(idxIntPro));
|
||||
if ((idxMacchina.HasValue == true)) {
|
||||
this.Adapter.InsertCommand.Parameters[1].Value = ((int)(idxMacchina.Value));
|
||||
@@ -20136,6 +20258,7 @@ ORDER BY numIntMtz DESC";
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
|
||||
}
|
||||
this.Adapter.InsertCommand.Parameters[7].Value = ((int)(idxCausale));
|
||||
global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
|
||||
if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
@@ -20156,7 +20279,7 @@ ORDER BY numIntMtz DESC";
|
||||
[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.Update, true)]
|
||||
public virtual int Update(int idxIntPro, global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> data, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo, int Original_idxPending) {
|
||||
public virtual int Update(int idxIntPro, global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> data, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo, int idxCausale, int Original_idxPending) {
|
||||
this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(idxIntPro));
|
||||
if ((idxMacchina.HasValue == true)) {
|
||||
this.Adapter.UpdateCommand.Parameters[1].Value = ((int)(idxMacchina.Value));
|
||||
@@ -20194,7 +20317,8 @@ ORDER BY numIntMtz DESC";
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value;
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[7].Value = ((int)(Original_idxPending));
|
||||
this.Adapter.UpdateCommand.Parameters[7].Value = ((int)(idxCausale));
|
||||
this.Adapter.UpdateCommand.Parameters[8].Value = ((int)(Original_idxPending));
|
||||
global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
|
||||
if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
@@ -20314,6 +20438,7 @@ ORDER BY numIntMtz DESC";
|
||||
tableMapping.ColumnMappings.Add("idxPriorita", "idxPriorita");
|
||||
tableMapping.ColumnMappings.Add("isFermo", "isFermo");
|
||||
tableMapping.ColumnMappings.Add("idxTipo", "idxTipo");
|
||||
tableMapping.ColumnMappings.Add("idxCausale", "idxCausale");
|
||||
this._adapter.TableMappings.Add(tableMapping);
|
||||
this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.DeleteCommand.Connection = this.Connection;
|
||||
@@ -20322,9 +20447,7 @@ ORDER BY numIntMtz DESC";
|
||||
this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idxIntPro", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxIntPro", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.InsertCommand.Connection = this.Connection;
|
||||
this._adapter.InsertCommand.CommandText = "INSERT INTO [MtzProgrammata] ([idxMacchina], [inizio], [codFrequenza], [cadenza]," +
|
||||
" [descrizione], [idxPriorita], [isFermo], [idxTipo]) VALUES (@idxMacchina, @iniz" +
|
||||
"io, @codFrequenza, @cadenza, @descrizione, @idxPriorita, @isFermo, @idxTipo)";
|
||||
this._adapter.InsertCommand.CommandText = @"INSERT INTO [MtzProgrammata] ([idxMacchina], [inizio], [codFrequenza], [cadenza], [descrizione], [idxPriorita], [isFermo], [idxTipo], [idxCausale]) VALUES (@idxMacchina, @inizio, @codFrequenza, @cadenza, @descrizione, @idxPriorita, @isFermo, @idxTipo, @idxCausale)";
|
||||
this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxMacchina", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxMacchina", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@inizio", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "inizio", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
@@ -20334,9 +20457,10 @@ ORDER BY numIntMtz DESC";
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxPriorita", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxPriorita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@isFermo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isFermo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxTipo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxTipo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxCausale", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxCausale", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.UpdateCommand.Connection = this.Connection;
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [MtzProgrammata] SET [idxMacchina] = @idxMacchina, [inizio] = @inizio, [codFrequenza] = @codFrequenza, [cadenza] = @cadenza, [descrizione] = @descrizione, [idxPriorita] = @idxPriorita, [isFermo] = @isFermo, [idxTipo] = @idxTipo WHERE (([idxIntPro] = @Original_idxIntPro))";
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [MtzProgrammata] SET [idxMacchina] = @idxMacchina, [inizio] = @inizio, [codFrequenza] = @codFrequenza, [cadenza] = @cadenza, [descrizione] = @descrizione, [idxPriorita] = @idxPriorita, [isFermo] = @isFermo, [idxTipo] = @idxTipo, [idxCausale] = @idxCausale WHERE (([idxIntPro] = @Original_idxIntPro))";
|
||||
this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxMacchina", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxMacchina", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@inizio", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "inizio", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
@@ -20346,6 +20470,7 @@ ORDER BY numIntMtz DESC";
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxPriorita", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxPriorita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@isFermo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isFermo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxTipo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxTipo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxCausale", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxCausale", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idxIntPro", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idxIntPro", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
@@ -20362,8 +20487,7 @@ ORDER BY numIntMtz DESC";
|
||||
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[4];
|
||||
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[0].Connection = this.Connection;
|
||||
this._commandCollection[0].CommandText = "SELECT idxIntPro, idxMacchina, inizio, codFrequenza, cadenza, descrizione," +
|
||||
" idxPriorita, isFermo, idxTipo\r\nFROM MtzProgrammata";
|
||||
this._commandCollection[0].CommandText = "SELECT *\r\nFROM MtzProgrammata";
|
||||
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[1].Connection = this.Connection;
|
||||
@@ -20373,8 +20497,9 @@ ORDER BY numIntMtz DESC";
|
||||
this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxIntPro", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, 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 = @"SELECT MtzProgrammata.cadenza, MtzProgrammata.codFrequenza, MtzProgrammata.descrizione, MtzProgrammata.idxIntPro, MtzProgrammata.idxMacchina, MtzProgrammata.idxPriorita, MtzProgrammata.idxTipo, MtzProgrammata.inizio, MtzProgrammata.isFermo FROM MtzProgrammata LEFT OUTER JOIN MtzProgPending ON MtzProgrammata.idxIntPro = MtzProgPending.idxIntPro WHERE (MtzProgPending.idxPending IS NULL)";
|
||||
this._commandCollection[2].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[2].CommandText = "dbo.stp_MtzProg_getNotSched";
|
||||
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[3] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[3].Connection = this.Connection;
|
||||
this._commandCollection[3].CommandText = "dbo.stp_MtzProg_update";
|
||||
@@ -20388,6 +20513,7 @@ ORDER BY numIntMtz DESC";
|
||||
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxPriorita", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@isFermo", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
this._commandCollection[3].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[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxCausale", 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()]
|
||||
@@ -20497,7 +20623,7 @@ ORDER BY numIntMtz DESC";
|
||||
[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.Insert, true)]
|
||||
public virtual int Insert(global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> inizio, string codFrequenza, global::System.Nullable<int> cadenza, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo) {
|
||||
public virtual int Insert(global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> inizio, string codFrequenza, global::System.Nullable<int> cadenza, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo, int idxCausale) {
|
||||
if ((idxMacchina.HasValue == true)) {
|
||||
this.Adapter.InsertCommand.Parameters[0].Value = ((int)(idxMacchina.Value));
|
||||
}
|
||||
@@ -20546,6 +20672,7 @@ ORDER BY numIntMtz DESC";
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
|
||||
}
|
||||
this.Adapter.InsertCommand.Parameters[8].Value = ((int)(idxCausale));
|
||||
global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
|
||||
if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
@@ -20566,7 +20693,7 @@ ORDER BY numIntMtz DESC";
|
||||
[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.Update, true)]
|
||||
public virtual int Update(global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> inizio, string codFrequenza, global::System.Nullable<int> cadenza, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo, int Original_idxIntPro) {
|
||||
public virtual int Update(global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> inizio, string codFrequenza, global::System.Nullable<int> cadenza, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo, int idxCausale, int Original_idxIntPro) {
|
||||
if ((idxMacchina.HasValue == true)) {
|
||||
this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(idxMacchina.Value));
|
||||
}
|
||||
@@ -20615,7 +20742,8 @@ ORDER BY numIntMtz DESC";
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value;
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[8].Value = ((int)(Original_idxIntPro));
|
||||
this.Adapter.UpdateCommand.Parameters[8].Value = ((int)(idxCausale));
|
||||
this.Adapter.UpdateCommand.Parameters[9].Value = ((int)(Original_idxIntPro));
|
||||
global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
|
||||
if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
@@ -20635,7 +20763,7 @@ ORDER BY numIntMtz DESC";
|
||||
[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")]
|
||||
public virtual int updateQuery(global::System.Nullable<int> idxIntPro, global::System.Nullable<global::System.DateTime> inizio, string codFrequenza, global::System.Nullable<int> cadenza, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo) {
|
||||
public virtual int updateQuery(global::System.Nullable<int> idxIntPro, global::System.Nullable<global::System.DateTime> inizio, string codFrequenza, global::System.Nullable<int> cadenza, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo, global::System.Nullable<int> idxCausale) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3];
|
||||
if ((idxIntPro.HasValue == true)) {
|
||||
command.Parameters[1].Value = ((int)(idxIntPro.Value));
|
||||
@@ -20685,6 +20813,12 @@ ORDER BY numIntMtz DESC";
|
||||
else {
|
||||
command.Parameters[8].Value = global::System.DBNull.Value;
|
||||
}
|
||||
if ((idxCausale.HasValue == true)) {
|
||||
command.Parameters[9].Value = ((int)(idxCausale.Value));
|
||||
}
|
||||
else {
|
||||
command.Parameters[9].Value = global::System.DBNull.Value;
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
|
||||
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
@@ -23141,6 +23275,8 @@ ORDER BY numIntMtz DESC";
|
||||
tableMapping.ColumnMappings.Add("idxTipo", "idxTipo");
|
||||
tableMapping.ColumnMappings.Add("descrTipo", "descrTipo");
|
||||
tableMapping.ColumnMappings.Add("idxImpianto", "idxImpianto");
|
||||
tableMapping.ColumnMappings.Add("idxCausale", "idxCausale");
|
||||
tableMapping.ColumnMappings.Add("descrCausale", "descrCausale");
|
||||
this._adapter.TableMappings.Add(tableMapping);
|
||||
}
|
||||
|
||||
@@ -23157,9 +23293,7 @@ ORDER BY numIntMtz DESC";
|
||||
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 idxIntPro, idxImpianto, idxMacchina, codImpianto, nomeImpianto, codMacchina, nomeMacchina, inizio, codFrequenza, frequenza, cadenza, descrizione, idxPriorita, descrPriorita, isFermo, idxTipo,
|
||||
descrTipo
|
||||
FROM v_mtzProgExp";
|
||||
this._commandCollection[0].CommandText = "SELECT *\r\nFROM v_mtzProgExp";
|
||||
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
|
||||
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[1].Connection = this.Connection;
|
||||
@@ -23180,6 +23314,7 @@ FROM v_mtzProgExp";
|
||||
this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idxPriorita", 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("@isFermo", global::System.Data.SqlDbType.Bit, 1, global::System.Data.ParameterDirection.Input, 1, 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("@idxCausale", 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()]
|
||||
@@ -23237,7 +23372,7 @@ FROM v_mtzProgExp";
|
||||
[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")]
|
||||
public virtual int insertQuery(global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> inizio, string codFrequenza, global::System.Nullable<int> cadenza, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo) {
|
||||
public virtual int insertQuery(global::System.Nullable<int> idxMacchina, global::System.Nullable<global::System.DateTime> inizio, string codFrequenza, global::System.Nullable<int> cadenza, string descrizione, global::System.Nullable<int> idxPriorita, global::System.Nullable<bool> isFermo, global::System.Nullable<int> idxTipo, global::System.Nullable<int> idxCausale) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[2];
|
||||
if ((idxMacchina.HasValue == true)) {
|
||||
command.Parameters[1].Value = ((int)(idxMacchina.Value));
|
||||
@@ -23287,6 +23422,12 @@ FROM v_mtzProgExp";
|
||||
else {
|
||||
command.Parameters[8].Value = global::System.DBNull.Value;
|
||||
}
|
||||
if ((idxCausale.HasValue == true)) {
|
||||
command.Parameters[9].Value = ((int)(idxCausale.Value));
|
||||
}
|
||||
else {
|
||||
command.Parameters[9].Value = global::System.DBNull.Value;
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
|
||||
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
!= global::System.Data.ConnectionState.Open)) {
|
||||
|
||||
@@ -214,8 +214,8 @@
|
||||
<Folder Include="App_Data\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\..\SteamWareLibrary\SteamWare\SteamWare.csproj">
|
||||
<Project>{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}</Project>
|
||||
<ProjectReference Include="..\..\..\..\Steamware\SteamWareLib\SteamWare.csproj">
|
||||
<Project>{2872dcfe-8b46-43b2-baa0-842a816a2dd5}</Project>
|
||||
<Name>SteamWare</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<ProjectView>ShowAllFiles</ProjectView>
|
||||
<UseIISExpress>false</UseIISExpress>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
|
||||
Binary file not shown.
@@ -1,15 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
|
||||
autoReload="true"
|
||||
throwExceptions="false"
|
||||
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
|
||||
|
||||
<!--
|
||||
See https://github.com/nlog/nlog/wiki/Configuration-file
|
||||
<!-- optional, add some variables
|
||||
https://github.com/nlog/NLog/wiki/Configuration-file#variables
|
||||
-->
|
||||
<variable name="myvar" value="myvalue"/>
|
||||
|
||||
<!--
|
||||
See https://github.com/nlog/nlog/wiki/Configuration-file
|
||||
for information on customizing logging rules and outputs.
|
||||
-->
|
||||
<targets>
|
||||
<!-- add your targets here -->
|
||||
|
||||
|
||||
<!--
|
||||
add your targets here
|
||||
See https://github.com/nlog/NLog/wiki/Targets for possible targets.
|
||||
See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers.
|
||||
-->
|
||||
|
||||
<!--
|
||||
Write events to a file with the date in the filename.
|
||||
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
|
||||
layout="${longdate} ${uppercase:${level}} ${message}" />
|
||||
-->
|
||||
@@ -17,9 +32,10 @@
|
||||
|
||||
<rules>
|
||||
<!-- add your logging rules here -->
|
||||
|
||||
|
||||
<!--
|
||||
<logger name="*" minlevel="Trace" writeTo="f" />
|
||||
Write all events with minimal level of Debug (So Debug, Info, Warn, Error and Fatal, but not Trace) to "f"
|
||||
<logger name="*" minlevel="Debug" writeTo="f" />
|
||||
-->
|
||||
</rules>
|
||||
</nlog>
|
||||
</nlog>
|
||||
|
||||
Binary file not shown.
@@ -585,6 +585,16 @@
|
||||
<param name="tipo">The tipo.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="E:SteamWare.ApplicationUserControl.eh_ucev">
|
||||
<summary>
|
||||
event handler generico
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.ApplicationUserControl.raiseEvent(SteamWare.ucEvType)">
|
||||
<summary>
|
||||
sollevo evento selezione
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.authProxy">
|
||||
<summary>
|
||||
classe gestione auth
|
||||
@@ -669,6 +679,61 @@
|
||||
<param name="UsrName"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:SteamWare.BillingProxy">
|
||||
<summary>
|
||||
classe di wrap verso i TableAdapter dell'area billing
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.BillingProxy.#ctor">
|
||||
<summary>
|
||||
metodo protected di avvio della classe
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.BillingProxy.avvioTableAdapters">
|
||||
<summary>
|
||||
procedura di avvio dei tableAdapter
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.BillingProxy.setupConnectionString">
|
||||
<summary>
|
||||
effettua setup dei connection strings da web.config delal singola applicazione
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taClienti">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taCostiAss">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taDocs">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taRows">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taScad">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taVAT">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.man">
|
||||
<summary>
|
||||
classe singleton x la gestione dei tableadapters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.calcoli">
|
||||
<summary>
|
||||
classe con funzioni specifiche di calcolo
|
||||
@@ -1388,7 +1453,13 @@
|
||||
<param name="AuthKey"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "M:SteamWare.devicesAuthProxy.reqResetAuthKey(System.String,System.String)" -->
|
||||
<member name="M:SteamWare.devicesAuthProxy.reqResetAuthKey(System.String,System.String)">
|
||||
<summary>
|
||||
registra su DB la richiesta di reset della auth key dell'utente ed opzionalmente invia email ad admin
|
||||
</summary>
|
||||
<param name="email"></param>
|
||||
<param name="adminEmail">opzionale, se != "" invia email all'indirizzo dell'admin x reset</param>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.sendEmailResetHashPassword(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
invia email ad utente con url x reset hash password
|
||||
@@ -1885,6 +1956,311 @@
|
||||
Used to sort self-referenced table's rows
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing">
|
||||
<summary>
|
||||
Represents a strongly typed in-memory cache of data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selTipoDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selCliDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.DocumentiDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.RigheDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selIVADataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.VATDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.clientiDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.ScadenzeDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoIPSDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.FattureAperteDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.PagamentiDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoMargDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.CostiAssorbitiDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selTipoRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selCliRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.DocumentiRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.RigheRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selIVARow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.VATRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.clientiRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.ScadenzeRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoIPSRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.FattureAperteRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.PagamentiRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoMargRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.CostiAssorbitiRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selTipoRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selCliRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.DocumentiRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.RigheRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selIVARowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.VATRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.clientiRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.ScadenzeRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoIPSRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.FattureAperteRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.PagamentiRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoMargRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.CostiAssorbitiRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.selTipoTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.selCliTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.DocumentiTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.RigheTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.selIVATableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.VATTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.clientiTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.ScadenzeTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.StatoIPSTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.FattureAperteTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.PagamentiTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.StatoMargTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.CostiAssorbitiTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.TableAdapterManager">
|
||||
<summary>
|
||||
TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateUpdatedRows(SteamWare.DS_Billing,System.Collections.Generic.List{System.Data.DataRow},System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Update rows in top-down order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateInsertedRows(SteamWare.DS_Billing,System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Insert rows in top-down order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateDeletedRows(SteamWare.DS_Billing,System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Delete rows in bottom-up order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.GetRealUpdatedRows(System.Data.DataRow[],System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateAll(SteamWare.DS_Billing)">
|
||||
<summary>
|
||||
Update all changes to the dataset.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateOrderOption">
|
||||
<summary>
|
||||
Update Order Option
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.TableAdapterManager.SelfReferenceComparer">
|
||||
<summary>
|
||||
Used to sort self-referenced table's rows
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_devices">
|
||||
<summary>
|
||||
Represents a strongly typed in-memory cache of data.
|
||||
@@ -2075,6 +2451,91 @@
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility">
|
||||
<summary>
|
||||
Represents a strongly typed in-memory cache of data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.ListValuesDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.v_selListValDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.ListValuesRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.v_selListValRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.ListValuesRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.v_selListValRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.ListValuesTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.v_selListValTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.TableAdapterManager">
|
||||
<summary>
|
||||
TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateUpdatedRows(SteamWare.DS_Utility,System.Collections.Generic.List{System.Data.DataRow},System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Update rows in top-down order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateInsertedRows(SteamWare.DS_Utility,System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Insert rows in top-down order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateDeletedRows(SteamWare.DS_Utility,System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Delete rows in bottom-up order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.GetRealUpdatedRows(System.Data.DataRow[],System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateAll(SteamWare.DS_Utility)">
|
||||
<summary>
|
||||
Update all changes to the dataset.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateOrderOption">
|
||||
<summary>
|
||||
Update Order Option
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.SelfReferenceComparer">
|
||||
<summary>
|
||||
Used to sort self-referenced table's rows
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.loginMode">
|
||||
<summary>
|
||||
enumeratore modalità login
|
||||
@@ -3198,6 +3659,20 @@
|
||||
<param name="nomeParam"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.CRD(System.String)">
|
||||
<summary>
|
||||
shot-form di confReadDouble: legge dalla config un valore double
|
||||
</summary>
|
||||
<param name="nomeParam"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.confReadDouble(System.String)">
|
||||
<summary>
|
||||
legge dalla config un valore int
|
||||
</summary>
|
||||
<param name="nomeParam"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.QSS(System.String)">
|
||||
<summary>
|
||||
recupera valore querystring STRING
|
||||
@@ -3799,7 +4274,7 @@
|
||||
modalità operativa controllo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.UserControl.escaleInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<member name="M:SteamWare.UserControl.escapeInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<summary>
|
||||
escape dei parametri input dell'ODS
|
||||
</summary>
|
||||
@@ -4091,7 +4566,7 @@
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.isAuth">
|
||||
<summary>
|
||||
è un boolean che indica se in session ci siano user/dominio e quindi utente autenticato in rpecedenza...
|
||||
è un boolean che indica se in session ci siano user/dominio e quindi utente autenticato in precedenza...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.user_std.isPageEnabled(System.String)">
|
||||
@@ -4475,6 +4950,16 @@
|
||||
<param name="smtpCli"></param>
|
||||
<param name="logDir"></param>
|
||||
</member>
|
||||
<member name="M:SteamWare.gestEmail.mandaEmailNoLog(System.String,System.String,System.String,System.String,System.Net.Mail.AlternateView[])">
|
||||
<summary>
|
||||
procedura invio email
|
||||
</summary>
|
||||
<param name="_mailFrom">email mittente</param>
|
||||
<param name="_mailTo">email destinatario</param>
|
||||
<param name="_oggetto">oggetto dell'email</param>
|
||||
<param name="_corpo">corpo del messaggio</param>
|
||||
<param name="_allegati">allegati del messaggio</param>
|
||||
</member>
|
||||
<member name="M:SteamWare.gestEmail.mandaEmailNoLog(System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
procedura invio email
|
||||
@@ -4492,6 +4977,17 @@
|
||||
<param name="_mailTo">email destinatario</param>
|
||||
<param name="_oggetto">oggetto dell'email</param>
|
||||
<param name="_corpo">corpo del messaggio</param>
|
||||
<param name="_allegati">allegati del messaggio</param>
|
||||
</member>
|
||||
<member name="M:SteamWare.gestEmail.mandaEmail(System.String,System.String,System.String,System.String,System.Net.Mail.AlternateView[])">
|
||||
<summary>
|
||||
procedura invio email + scrittura in log!
|
||||
</summary>
|
||||
<param name="_mailFrom">email mittente</param>
|
||||
<param name="_mailTo">email destinatario</param>
|
||||
<param name="_oggetto">oggetto dell'email</param>
|
||||
<param name="_corpo">corpo del messaggio</param>
|
||||
<param name="_allegati">allegati del messaggio</param>
|
||||
</member>
|
||||
<member name="F:SteamWare.gestEmail.ge">
|
||||
<summary>
|
||||
@@ -4715,7 +5211,7 @@
|
||||
</member>
|
||||
<member name="T:SteamWare.urlUtils">
|
||||
<summary>
|
||||
classi helper gestioen URL
|
||||
classi helper gestione URL
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.urlUtils.callUrl(System.String,System.Boolean)">
|
||||
@@ -4747,6 +5243,30 @@
|
||||
<param name="Passphrase"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.SteamCrypto.getHashStringMD5(System.String)">
|
||||
<summary>
|
||||
genera hash di una stringa in MD5 (es x hash gravatar)
|
||||
</summary>
|
||||
<param name="Message"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.SteamCrypto.GetMd5Hash(System.Security.Cryptography.MD5,System.String)">
|
||||
<summary>
|
||||
Crea un hash MD5
|
||||
</summary>
|
||||
<param name="md5Hash"></param>
|
||||
<param name="input"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.SteamCrypto.VerifyMd5Hash(System.Security.Cryptography.MD5,System.String,System.String)">
|
||||
<summary>
|
||||
Verify a hash against a string.
|
||||
</summary>
|
||||
<param name="md5Hash"></param>
|
||||
<param name="input"></param>
|
||||
<param name="hash"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:SteamWare.percentuali">
|
||||
<summary>
|
||||
classe gestione valori percentuali per semplificare edit utente (moltiplicati x 100 appunto)
|
||||
|
||||
Binary file not shown.
@@ -155,10 +155,10 @@ public class mtzProgr
|
||||
/// <param name="riga"></param>
|
||||
protected void insMtzPend(GIM_data.DS_applicazione.MtzProgrammataRow riga)
|
||||
{
|
||||
mtzProgr.obj.taMtzPend.Insert(riga.idxIntPro, riga.idxMacchina, riga.inizio, riga.descrizione, riga.idxPriorita, riga.isFermo, riga.idxTipo);
|
||||
mtzProgr.obj.taMtzPend.Insert(riga.idxIntPro, riga.idxMacchina, riga.inizio, riga.descrizione, riga.idxPriorita, riga.isFermo, riga.idxTipo, riga.idxCausale);
|
||||
}
|
||||
/// <summary>
|
||||
/// genera la richiesta di manutenzione dalla richeista pending associata
|
||||
/// genera la richiesta di manutenzione dalla richiesta pending associata
|
||||
/// </summary>
|
||||
/// <param name="riga"></param>
|
||||
/// <returns></returns>
|
||||
@@ -172,7 +172,6 @@ public class mtzProgr
|
||||
int turno = Convert.ToInt32(Math.Ceiling((double)Convert.ToDouble(DateTime.Now.AddHours(-shift + 1).Hour) / durataTurno));
|
||||
int idxAmbito = 7; //mtz programmata...
|
||||
int idxImpianto = 0;
|
||||
int idxCausale = 1;
|
||||
try
|
||||
{
|
||||
idxImpianto = TA_app.obj.taMacchine.getByIdxMacchina(riga.idxMacchina)[0].idxImpianto;
|
||||
@@ -182,7 +181,7 @@ public class mtzProgr
|
||||
logger.lg.scriviLog(string.Format("Errore nel recuperare impianto relativo alla macchina {0}, eccezione {1}", riga.idxMacchina, e), tipoLog.EXCEPTION);
|
||||
}
|
||||
// inserisco
|
||||
TA_app.obj.taInterventiMtz.sp_insRichiesta(adesso, adesso.AddHours(-shift + 1), turno, "PROG", riga.data, idxAmbito, riga.idxPriorita, riga.isFermo, riga.idxTipo, idxImpianto, riga.idxMacchina, riga.descrizione, idxCausale, true, ref answ);
|
||||
TA_app.obj.taInterventiMtz.sp_insRichiesta(adesso, adesso.AddHours(-shift + 1), turno, "PROG", riga.data, idxAmbito, riga.idxPriorita, riga.isFermo, riga.idxTipo, idxImpianto, riga.idxMacchina, riga.descrizione, riga.idxCausale, true, ref answ);
|
||||
return (int)answ;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -76,6 +76,9 @@
|
||||
.textL {
|
||||
text-align: left;
|
||||
}
|
||||
.tSmall {
|
||||
font-size: smaller;
|
||||
}
|
||||
.textEv_1 {
|
||||
background-color: #cdffcd;
|
||||
text-align: center;
|
||||
|
||||
@@ -96,6 +96,9 @@
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.tSmall{
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
.textEv_1 {
|
||||
background-color: #cdffcd;
|
||||
|
||||
@@ -861,8 +861,8 @@
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\VersGen\WebGIM.cs">
|
||||
<Link>WebGIM.cs</Link>
|
||||
<Compile Include="..\VersGen\VersGen.cs">
|
||||
<Link>VersGen.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="adminDB.aspx.cs">
|
||||
<DependentUpon>adminDB.aspx</DependentUpon>
|
||||
@@ -1777,8 +1777,8 @@
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\..\SteamWareLibrary\SteamWare\SteamWare.csproj">
|
||||
<Project>{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}</Project>
|
||||
<ProjectReference Include="..\..\..\..\Steamware\SteamWareLib\SteamWare.csproj">
|
||||
<Project>{2872dcfe-8b46-43b2-baa0-842a816a2dd5}</Project>
|
||||
<Name>SteamWare</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\GIM_data\GIM_data.csproj">
|
||||
|
||||
@@ -2,7 +2,10 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<ProjectView>ShowAllFiles</ProjectView>
|
||||
<NameOfLastUsedPublishProfile>Somaschini-ITA</NameOfLastUsedPublishProfile>
|
||||
<NameOfLastUsedPublishProfile>WinLab</NameOfLastUsedPublishProfile>
|
||||
<UseIISExpress>false</UseIISExpress>
|
||||
<IISExpressAnonymousAuthentication>disabled</IISExpressAnonymousAuthentication>
|
||||
<IISExpressWindowsAuthentication>enabled</IISExpressWindowsAuthentication>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
|
||||
@@ -115,6 +115,9 @@
|
||||
<add key="_smtpCli" value="localhost" />
|
||||
<add key="echoLemmi" value="false" />
|
||||
<add key="allowDelete" value="true" />
|
||||
<!--selezioni default-->
|
||||
<add key="defPriorMtzPred" value="2" />
|
||||
<add key="defCauMtzPred" value="59" />
|
||||
<!--(Macro) Moduli abilitati-->
|
||||
<add key="enModMag" value="true" />
|
||||
<!--abilitazione mod-->
|
||||
|
||||
@@ -1,74 +1,57 @@
|
||||
<%@ Control Language="C#" AutoEventWireup="true" Inherits="mod_dettMtzProg" CodeBehind="mod_dettMtzProg.ascx.cs" %>
|
||||
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
|
||||
<%@ Register Src="mod_filtro.ascx" TagName="mod_filtro" TagPrefix="uc1" %>
|
||||
<table style="background-color: #DFDFDF;">
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<div style="float: left;">
|
||||
<h3>
|
||||
<asp:Label ID="lblInsNewIntPro" runat="server" />
|
||||
</h3>
|
||||
</div>
|
||||
<div style="float: right; padding-top: 20px;">
|
||||
<uc1:mod_filtro ID="mod_filtroImpianto" runat="server" css="txtMini" Oneh_selValore="eh_selectedImpianto" />
|
||||
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
|
||||
</asp:ObjectDataSource>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>
|
||||
|
||||
<div style="background-color: #DFDFDF; padding: 0.2em;">
|
||||
<div class="row">
|
||||
<div class="col-sm-5 col-md-6">
|
||||
<h3>
|
||||
<asp:Label ID="lblInsNewIntPro" runat="server" />
|
||||
</h3>
|
||||
</div>
|
||||
<div class="col-sm-7 col-md-6 text-right tSmall">
|
||||
<uc1:mod_filtro ID="mod_filtroImpianto" runat="server" css="txtMini" Oneh_selValore="eh_selectedImpianto" />
|
||||
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter"></asp:ObjectDataSource>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-md-5">
|
||||
<asp:Label runat="server" ID="lblDescrMtzPro" /><br />
|
||||
<asp:TextBox runat="server" ID="txtDescrizione" TextMode="MultiLine" Rows="15" Width="420px"
|
||||
CssClass="textEv_1Left" />
|
||||
<asp:RequiredFieldValidator ID="rfvDescrizione" runat="server" ErrorMessage="!!!"
|
||||
ControlToValidate="txtDescrizione" ValidationGroup="inserimento" Display="Dynamic"></asp:RequiredFieldValidator>
|
||||
</td>
|
||||
<td rowspan="2" style="width: 400px;">
|
||||
</div>
|
||||
<div class="col-sm-6 col-md-7 text-right">
|
||||
<div style="float: left;">
|
||||
<asp:Label runat="server" ID="lblMacchineInteressate" />
|
||||
</div>
|
||||
<div style="float: right;">
|
||||
</div>
|
||||
<div style="float: right;">
|
||||
<asp:Label runat="server" ID="lblTxtCerca" ></asp:Label>
|
||||
<asp:Label runat="server" ID="lblTxtCerca"></asp:Label>
|
||||
<asp:TextBox runat="server" ID="txtCercaMacchine" Width="8em" Text="*" OnTextChanged="txtCercaMacchine_TextChanged" />
|
||||
</div>
|
||||
<div>
|
||||
<asp:ListBox ID="listMacchine" runat="server" AutoPostBack="True" DataSourceID="odsMacchine"
|
||||
SelectionMode="Multiple" DataTextField="label" DataValueField="value" Height="400px"
|
||||
Width="400px" BackColor="#ddeeff" Font-Size="8pt"></asp:ListBox>
|
||||
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter"
|
||||
FilterExpression="label LIKE '%{0}%'">
|
||||
<FilterParameters>
|
||||
<asp:ControlParameter ControlID="txtCercaMacchine" DefaultValue="*" Type="String"
|
||||
Name="txtCercaMacchine" />
|
||||
</FilterParameters>
|
||||
</asp:ObjectDataSource>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" style="margin-bottom: 1em;">
|
||||
<div class="col-sm-6 col-md-5">
|
||||
<div style="clear: both;">
|
||||
<asp:TextBox runat="server" ID="txtDescrizione" TextMode="MultiLine" Rows="10" Width="100%"
|
||||
CssClass="textEv_1Left" />
|
||||
<asp:RequiredFieldValidator ID="rfvDescrizione" runat="server" ErrorMessage="!!!"
|
||||
ControlToValidate="txtDescrizione" ValidationGroup="inserimento" Display="Dynamic"></asp:RequiredFieldValidator>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="bloccoDiv" style="clear: both;">
|
||||
<div style="float: left; margin-right: 10px; width: 200px;">
|
||||
<asp:Label runat="server" ID="lblInizioMtzPro" /><br />
|
||||
<asp:TextBox runat="server" ID="txtDataInizio" Width="6em" CssClass="textEv_1" />
|
||||
<asp:TextBox runat="server" ID="txtDataInizio" Width="10em" CssClass="textEv_1" />
|
||||
<asp:RequiredFieldValidator ID="rfvData" runat="server" ErrorMessage="!!!" ControlToValidate="txtDataInizio"
|
||||
ValidationGroup="inserimento" Display="Dynamic"></asp:RequiredFieldValidator>
|
||||
<cc1:CalendarExtender ID="CalendarExtender1" runat="server" FirstDayOfWeek="Monday"
|
||||
TargetControlID="txtDataInizio" Format="dd/MM/yy">
|
||||
</cc1:CalendarExtender>
|
||||
TargetControlID="txtDataInizio" Format="dd/MM/yy"></cc1:CalendarExtender>
|
||||
</div>
|
||||
<div>
|
||||
<asp:Label runat="server" ID="lblPrior" /><br />
|
||||
<asp:DropDownList runat="server" ID="ddlPrior" DataSourceID="odsPrior" DataTextField="label"
|
||||
DataValueField="value" CssClass="textEv_1" OnDataBound="ddlPrior_DataBound" />
|
||||
<asp:ObjectDataSource ID="odsPrior" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selPriorTableAdapter">
|
||||
</asp:ObjectDataSource>
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selPriorTableAdapter"></asp:ObjectDataSource>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bloccoDiv" style="clear: both;">
|
||||
@@ -81,8 +64,7 @@
|
||||
DataTextField="label" DataValueField="value">
|
||||
</asp:DropDownList>
|
||||
<asp:ObjectDataSource ID="odsTipo" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selTipoGuastoTableAdapter">
|
||||
</asp:ObjectDataSource>
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selTipoGuastoTableAdapter"></asp:ObjectDataSource>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bloccoDiv" style="clear: both;">
|
||||
@@ -92,22 +74,44 @@
|
||||
DataTextField="label" DataValueField="value">
|
||||
</asp:DropDownList>
|
||||
<asp:ObjectDataSource ID="odsFreq" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selFreqTableAdapter">
|
||||
</asp:ObjectDataSource>
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selFreqTableAdapter"></asp:ObjectDataSource>
|
||||
</div>
|
||||
<div>
|
||||
<asp:Label runat="server" ID="lblCadenza" /><br />
|
||||
<asp:Label runat="server" ID="lblCadenza"><%: traduci("lblCadenza") %></asp:Label><br />
|
||||
<asp:TextBox runat="server" ID="txtCadenza" Width="2em" CssClass="textEv_1" />
|
||||
<asp:RequiredFieldValidator ID="rfvCad" runat="server" ErrorMessage="!!!" ControlToValidate="txtCadenza"
|
||||
ValidationGroup="inserimento" Display="Dynamic"></asp:RequiredFieldValidator>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" align="center">
|
||||
<asp:Button ID="btnCreaMtzPro" runat="server" OnClick="btnCreaMtzPro_Click" ValidationGroup="inserimento" />
|
||||
<div style="clear: both;">
|
||||
<div style="float: left; margin-right: 10px; width: 200px;">
|
||||
<asp:Label runat="server" ID="lblCausale"><%: traduci("lblCausale") %></asp:Label><br />
|
||||
<asp:DropDownList runat="server" ID="ddlCausale" CssClass="textEv_1" DataSourceID="odsCausali"
|
||||
DataTextField="label" DataValueField="value" OnDataBound="ddlCausale_DataBound">
|
||||
</asp:DropDownList>
|
||||
<asp:ObjectDataSource ID="odsCausali" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selCausaliMacchineTableAdapter"></asp:ObjectDataSource>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6 col-md-7 text-right">
|
||||
<div>
|
||||
<asp:ListBox ID="listMacchine" runat="server" AutoPostBack="True" DataSourceID="odsMacchine" SelectionMode="Multiple" DataTextField="label" DataValueField="value" Rows="24 " Width="100%" BackColor="#ddeeff" Font-Size="8pt"></asp:ListBox>
|
||||
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter"
|
||||
FilterExpression="label LIKE '%{0}%'">
|
||||
<FilterParameters>
|
||||
<asp:ControlParameter ControlID="txtCercaMacchine" DefaultValue="*" Type="String"
|
||||
Name="txtCercaMacchine" />
|
||||
</FilterParameters>
|
||||
</asp:ObjectDataSource>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 text-center">
|
||||
<asp:Button ID="btnCreaMtzPro" runat="server" CssClass="btn btn-success" OnClick="btnCreaMtzPro_Click" ValidationGroup="inserimento" />
|
||||
<asp:ValidationSummary ID="valSummary" runat="server" ValidationGroup="inserimento" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -76,7 +76,7 @@ public partial class mod_dettMtzProg : System.Web.UI.UserControl
|
||||
/// <param name="p"></param>
|
||||
private void creaInterventoMtzPro(int idx)
|
||||
{
|
||||
TA_app.obj.taMtzPro.insertQuery(idx, Convert.ToDateTime(txtDataInizio.Text), ddlFreq.SelectedValue, Convert.ToInt32(txtCadenza.Text), txtDescrizione.Text.Trim(), Convert.ToInt32(ddlPrior.SelectedValue), chkImpFermo.Checked, Convert.ToInt32(ddlTipo.SelectedValue));
|
||||
TA_app.obj.taMtzPro.insertQuery(idx, Convert.ToDateTime(txtDataInizio.Text), ddlFreq.SelectedValue, Convert.ToInt32(txtCadenza.Text), txtDescrizione.Text.Trim(), Convert.ToInt32(ddlPrior.SelectedValue), chkImpFermo.Checked, Convert.ToInt32(ddlTipo.SelectedValue), Convert.ToInt32(ddlCausale.SelectedValue));
|
||||
}
|
||||
/// <summary>
|
||||
/// aggiorna selezione di default
|
||||
@@ -85,7 +85,11 @@ public partial class mod_dettMtzProg : System.Web.UI.UserControl
|
||||
/// <param name="e"></param>
|
||||
protected void ddlPrior_DataBound(object sender, EventArgs e)
|
||||
{
|
||||
ddlPrior.SelectedIndex = 2;
|
||||
ddlPrior.SelectedIndex = memLayer.ML.CRI("defPriorMtzPred");
|
||||
}
|
||||
protected void ddlCausale_DataBound(object sender, EventArgs e)
|
||||
{
|
||||
ddlCausale.SelectedValue = memLayer.ML.CRS("defCauMtzPred");
|
||||
}
|
||||
|
||||
protected override void OnInit(EventArgs e)
|
||||
@@ -130,4 +134,5 @@ public partial class mod_dettMtzProg : System.Web.UI.UserControl
|
||||
{
|
||||
checkFixOds();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
+49
-22
@@ -47,24 +47,6 @@ public partial class mod_dettMtzProg {
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Label lblDescrMtzPro;
|
||||
|
||||
/// <summary>
|
||||
/// txtDescrizione 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.TextBox txtDescrizione;
|
||||
|
||||
/// <summary>
|
||||
/// rfvDescrizione 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.RequiredFieldValidator rfvDescrizione;
|
||||
|
||||
/// <summary>
|
||||
/// lblMacchineInteressate control.
|
||||
/// </summary>
|
||||
@@ -93,22 +75,22 @@ public partial class mod_dettMtzProg {
|
||||
protected global::System.Web.UI.WebControls.TextBox txtCercaMacchine;
|
||||
|
||||
/// <summary>
|
||||
/// listMacchine control.
|
||||
/// txtDescrizione 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.ListBox listMacchine;
|
||||
protected global::System.Web.UI.WebControls.TextBox txtDescrizione;
|
||||
|
||||
/// <summary>
|
||||
/// odsMacchine control.
|
||||
/// rfvDescrizione 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.ObjectDataSource odsMacchine;
|
||||
protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvDescrizione;
|
||||
|
||||
/// <summary>
|
||||
/// lblInizioMtzPro control.
|
||||
@@ -263,6 +245,51 @@ public partial class mod_dettMtzProg {
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.RequiredFieldValidator rfvCad;
|
||||
|
||||
/// <summary>
|
||||
/// lblCausale 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.Label lblCausale;
|
||||
|
||||
/// <summary>
|
||||
/// ddlCausale 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 ddlCausale;
|
||||
|
||||
/// <summary>
|
||||
/// odsCausali 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.ObjectDataSource odsCausali;
|
||||
|
||||
/// <summary>
|
||||
/// listMacchine 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.ListBox listMacchine;
|
||||
|
||||
/// <summary>
|
||||
/// odsMacchine 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.ObjectDataSource odsMacchine;
|
||||
|
||||
/// <summary>
|
||||
/// btnCreaMtzPro control.
|
||||
/// </summary>
|
||||
|
||||
@@ -14,79 +14,90 @@
|
||||
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" RenderMode="Inline">
|
||||
<ContentTemplate>
|
||||
<asp:Panel runat="server" ID="pnlMassEdit" Visible="false" BackColor="#BCDD89" Height="150px">
|
||||
<div style="font-size: 0.8em;">
|
||||
<div class="divSx" style="margin-right: 10px; width: 400px;">
|
||||
<div class="divSx">
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkInizioMtzPro" AutoPostBack="true" OnCheckedChanged="chkInizioMtzPro_CheckedChanged" />
|
||||
<asp:Panel ID="pnlInizio" runat="server" Visible="false">
|
||||
<asp:TextBox runat="server" ID="txtDataInizio" Width="6em" CssClass="textEv_1" />
|
||||
<cc1:CalendarExtender ID="CalendarExtender1" runat="server" FirstDayOfWeek="Monday"
|
||||
TargetControlID="txtDataInizio" Format="dd/MM/yy"></cc1:CalendarExtender>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkPrior" AutoPostBack="true" OnCheckedChanged="chkPrior_CheckedChanged" />
|
||||
<asp:Panel ID="pnlPrior" runat="server" Visible="false">
|
||||
<asp:DropDownList runat="server" ID="ddlPrior" DataSourceID="odsPrior" DataTextField="label"
|
||||
DataValueField="value" CssClass="textEv_1" OnDataBound="ddlPrior_DataBound" />
|
||||
<asp:ObjectDataSource ID="odsPrior" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selPriorTableAdapter"></asp:ObjectDataSource>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div style="font-size: 0.8em;" class="row">
|
||||
<div class="col-sm-3">
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkInizioMtzPro" AutoPostBack="true" OnCheckedChanged="chkInizioMtzPro_CheckedChanged" />
|
||||
<asp:Panel ID="pnlInizio" runat="server" Visible="false" HorizontalAlign="right">
|
||||
<asp:TextBox runat="server" ID="txtDataInizio" Width="10em" CssClass="textEv_1" />
|
||||
<cc1:CalendarExtender ID="CalendarExtender1" runat="server" FirstDayOfWeek="Monday" TargetControlID="txtDataInizio" Format="dd/MM/yy"></cc1:CalendarExtender>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkSetFermo" AutoPostBack="true" OnCheckedChanged="chkSetFermo_CheckedChanged" />
|
||||
<asp:Panel ID="pnlSetFermo" runat="server" Visible="false" HorizontalAlign="right">
|
||||
<asp:CheckBox runat="server" ID="chkImpFermo" Font-Bold="true" Font-Size="8pt" />
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkFreq" AutoPostBack="true" OnCheckedChanged="chkFreq_CheckedChanged" />
|
||||
<asp:Panel ID="pnlFreq" runat="server" Visible="false" HorizontalAlign="right">
|
||||
<asp:DropDownList runat="server" ID="ddlFreq" CssClass="textEv_1" DataSourceID="odsFreq"
|
||||
DataTextField="label" DataValueField="value">
|
||||
</asp:DropDownList>
|
||||
<asp:ObjectDataSource ID="odsFreq" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selFreqTableAdapter"></asp:ObjectDataSource>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkCausale" AutoPostBack="true" OnCheckedChanged="chkCausale_CheckedChanged" />
|
||||
<asp:Panel ID="pnlCausale" runat="server" Visible="false" HorizontalAlign="right">
|
||||
<asp:DropDownList runat="server" ID="ddlCausale" CssClass="textEv_1" DataSourceID="odsCausali"
|
||||
DataTextField="label" DataValueField="value" OnDataBound="ddlCausale_DataBound">
|
||||
</asp:DropDownList>
|
||||
<asp:ObjectDataSource ID="odsCausali" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selCausaliMacchineTableAdapter"></asp:ObjectDataSource>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkPrior" AutoPostBack="true" OnCheckedChanged="chkPrior_CheckedChanged" />
|
||||
<asp:Panel ID="pnlPrior" runat="server" Visible="false" HorizontalAlign="right">
|
||||
<asp:DropDownList runat="server" ID="ddlPrior" DataSourceID="odsPrior" DataTextField="label"
|
||||
DataValueField="value" CssClass="textEv_1" OnDataBound="ddlPrior_DataBound" />
|
||||
<asp:ObjectDataSource ID="odsPrior" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selPriorTableAdapter"></asp:ObjectDataSource>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkTipoGuasto" AutoPostBack="true" OnCheckedChanged="chkTipoGuasto_CheckedChanged" />
|
||||
<asp:Panel ID="pnlTipoGuasto" runat="server" Visible="false" HorizontalAlign="right">
|
||||
<asp:DropDownList runat="server" ID="ddlTipo" CssClass="textEv_1" DataSourceID="odsTipo"
|
||||
DataTextField="label" DataValueField="value">
|
||||
</asp:DropDownList>
|
||||
<asp:ObjectDataSource ID="odsTipo" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selTipoGuastoTableAdapter"></asp:ObjectDataSource>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div class="divSx">
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkSetFermo" AutoPostBack="true" OnCheckedChanged="chkSetFermo_CheckedChanged" />
|
||||
<asp:Panel ID="pnlSetFermo" runat="server" Visible="false">
|
||||
<asp:CheckBox runat="server" ID="chkImpFermo" Font-Bold="true" Font-Size="8pt" />
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkTipoGuasto" AutoPostBack="true" OnCheckedChanged="chkTipoGuasto_CheckedChanged" />
|
||||
<asp:Panel ID="pnlTipoGuasto" runat="server" Visible="false">
|
||||
<asp:DropDownList runat="server" ID="ddlTipo" CssClass="textEv_1" DataSourceID="odsTipo"
|
||||
DataTextField="label" DataValueField="value">
|
||||
</asp:DropDownList>
|
||||
<asp:ObjectDataSource ID="odsTipo" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selTipoGuastoTableAdapter"></asp:ObjectDataSource>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
</div>
|
||||
<div class="divSx">
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkFreq" AutoPostBack="true" OnCheckedChanged="chkFreq_CheckedChanged" />
|
||||
<asp:Panel ID="pnlFreq" runat="server" Visible="false">
|
||||
<asp:DropDownList runat="server" ID="ddlFreq" CssClass="textEv_1" DataSourceID="odsFreq"
|
||||
DataTextField="label" DataValueField="value">
|
||||
</asp:DropDownList>
|
||||
<asp:ObjectDataSource ID="odsFreq" runat="server" OldValuesParameterFormatString="original_{0}"
|
||||
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selFreqTableAdapter"></asp:ObjectDataSource>
|
||||
</asp:Panel>
|
||||
</div>
|
||||
<div class="divSx" style="width: 200px;">
|
||||
<asp:CheckBox runat="server" ID="chkCadenza" AutoPostBack="true" OnCheckedChanged="chkCadenza_CheckedChanged" />
|
||||
<asp:Panel ID="pnlCadenza" runat="server" Visible="false">
|
||||
<asp:Panel ID="pnlCadenza" runat="server" Visible="false" HorizontalAlign="right">
|
||||
<asp:TextBox runat="server" ID="txtCadenza" Width="2em" CssClass="textEv_1" />
|
||||
</asp:Panel>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="divSx" style="margin-right: 10px; width: 30em;">
|
||||
<asp:CheckBox runat="server" ID="chkDescrMtzPro" AutoPostBack="true" OnCheckedChanged="chkDescrMtzPro_CheckedChanged" />
|
||||
<asp:Panel ID="pnlDescrMtzPro" runat="server" Visible="false">
|
||||
<asp:TextBox runat="server" ID="txtDescrizione" TextMode="MultiLine" Rows="7" Width="30em"
|
||||
CssClass="textEv_1Left" />
|
||||
</asp:Panel>
|
||||
<div class="col-sm-4">
|
||||
<div class="divSx" style="margin-right: 10px; width: 30em;">
|
||||
<asp:CheckBox runat="server" ID="chkDescrMtzPro" AutoPostBack="true" OnCheckedChanged="chkDescrMtzPro_CheckedChanged" />
|
||||
<asp:Panel ID="pnlDescrMtzPro" runat="server" Visible="false" HorizontalAlign="right">
|
||||
<asp:TextBox runat="server" ID="txtDescrizione" TextMode="MultiLine" Rows="7" Width="30em"
|
||||
CssClass="textEv_1Left" />
|
||||
</asp:Panel>
|
||||
</div>
|
||||
</div>
|
||||
<div class="divSx" style="margin-right: 10px;">
|
||||
<asp:Label runat="server" ID="lblIstrMtzPrg" Text="..." />
|
||||
<br />
|
||||
<asp:Button ID="btnEditConfirm" runat="server" Height="28px" OnClick="btnEditConfirm_Click"
|
||||
Enabled="false" />
|
||||
<br />
|
||||
<asp:Button ID="btnEditCancel" runat="server" Height="28px" OnClick="btnEditCancel_Click"
|
||||
Enabled="false" />
|
||||
<div class="col-sm-2">
|
||||
<div class="divSx" style="margin-right: 10px;">
|
||||
<asp:Label runat="server" ID="lblIstrMtzPrg" Text="..." />
|
||||
<br />
|
||||
<asp:Button ID="btnEditConfirm" runat="server" CssClass="btn btn-success" OnClick="btnEditConfirm_Click"
|
||||
Enabled="false" />
|
||||
<br />
|
||||
<asp:Button ID="btnEditCancel" runat="server" CssClass="btn btn-warning" OnClick="btnEditCancel_Click"
|
||||
Enabled="false" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</asp:Panel>
|
||||
@@ -151,6 +162,12 @@
|
||||
</ItemTemplate>
|
||||
<ItemStyle HorizontalAlign="Center"></ItemStyle>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="lblCausale" SortExpression="idxCausale" ItemStyle-HorizontalAlign="Center">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblCausale" runat="server" Text='<%# Eval("idxCausale") %>' ToolTip='<%# Eval("descrCausale") %>' />
|
||||
</ItemTemplate>
|
||||
<ItemStyle HorizontalAlign="Center"></ItemStyle>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField ShowHeader="False" ItemStyle-HorizontalAlign="Center">
|
||||
<HeaderTemplate>
|
||||
</HeaderTemplate>
|
||||
@@ -171,16 +188,9 @@
|
||||
DeleteMethod="deleteQuery" InsertMethod="Insert" UpdateMethod="Update">
|
||||
<FilterParameters>
|
||||
<asp:SessionParameter DefaultValue="*" Name="ricerca" SessionField="valoreCercato" />
|
||||
<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:ControlParameter ControlID="mod_filtroTipo" DefaultValue="0" Name="idxTipo"
|
||||
PropertyName="valoreInt" Type="Int32" />
|
||||
<asp:ControlParameter ControlID="mod_filtroMacchina" DefaultValue="0" Name="idxMacchina"
|
||||
PropertyName="valoreInt" Type="Int32" />--%>
|
||||
<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" />
|
||||
</FilterParameters>
|
||||
<DeleteParameters>
|
||||
<asp:Parameter Name="Original_idxIntPro" Type="Int32" />
|
||||
|
||||
@@ -36,6 +36,7 @@ public partial class mod_elencoMtzProg : ApplicationUserControl
|
||||
chkTipoGuasto.Text = traduci("chkTipoGuasto");
|
||||
chkFreq.Text = traduci("lblFreq");
|
||||
chkCadenza.Text = traduci("lblCadenza");
|
||||
chkCausale.Text = traduci("lblCausale");
|
||||
chkDescrMtzPro.Text = traduci("chkDescrMtzPro");
|
||||
lblIstrMtzPrg.Text = traduci("lblIstrMtzPrg");
|
||||
}
|
||||
@@ -146,10 +147,16 @@ public partial class mod_elencoMtzProg : ApplicationUserControl
|
||||
{
|
||||
try
|
||||
{
|
||||
lb = (LinkButton)cella.Controls[0];
|
||||
lb.Text = traduci(lb.Text);
|
||||
if (cella.Controls.Count > 0)
|
||||
{
|
||||
if (cella.Controls[0].GetType().ToString() == "LinkButton")
|
||||
{
|
||||
lb = (LinkButton)cella.Controls[0];
|
||||
lb.Text = traduci(lb.Text);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch
|
||||
catch(Exception exc)
|
||||
{ }
|
||||
}
|
||||
int totRecord = grView.Rows.Count + grView.PageSize * (grView.PageCount - 1);
|
||||
@@ -326,7 +333,16 @@ public partial class mod_elencoMtzProg : ApplicationUserControl
|
||||
/// <param name="e"></param>
|
||||
protected void ddlPrior_DataBound(object sender, EventArgs e)
|
||||
{
|
||||
ddlPrior.SelectedIndex = 2;
|
||||
ddlPrior.SelectedIndex = memLayer.ML.CRI("defPriorMtzPred");
|
||||
}
|
||||
/// <summary>
|
||||
/// aggiorna selezione di default
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void ddlCausale_DataBound(object sender, EventArgs e)
|
||||
{
|
||||
ddlCausale.SelectedValue = memLayer.ML.CRS("defCauMtzPred");
|
||||
}
|
||||
|
||||
#region gestione checkBox edit campi
|
||||
@@ -361,6 +377,11 @@ public partial class mod_elencoMtzProg : ApplicationUserControl
|
||||
pnlCadenza.Visible = chkCadenza.Checked;
|
||||
setBtnEdit();
|
||||
}
|
||||
protected void chkCausale_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
pnlCausale.Visible = chkCausale.Checked;
|
||||
setBtnEdit();
|
||||
}
|
||||
protected void chkDescrMtzPro_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
pnlDescrMtzPro.Visible = chkDescrMtzPro.Checked;
|
||||
@@ -430,8 +451,12 @@ public partial class mod_elencoMtzProg : ApplicationUserControl
|
||||
{
|
||||
rigaMtzPro.descrizione = txtDescrizione.Text;
|
||||
}
|
||||
if (chkCausale.Checked)
|
||||
{
|
||||
rigaMtzPro.idxCausale = Convert.ToInt32(ddlCausale.SelectedValue);
|
||||
}
|
||||
// aggiorno i valori!
|
||||
mtzProgr.obj.taMtzProg.updateQuery(rigaMtzPro.idxIntPro, rigaMtzPro.inizio, rigaMtzPro.codFrequenza, rigaMtzPro.cadenza, rigaMtzPro.descrizione, rigaMtzPro.idxPriorita, rigaMtzPro.isFermo, rigaMtzPro.idxTipo);
|
||||
mtzProgr.obj.taMtzProg.updateQuery(rigaMtzPro.idxIntPro, rigaMtzPro.inizio, rigaMtzPro.codFrequenza, rigaMtzPro.cadenza, rigaMtzPro.descrizione, rigaMtzPro.idxPriorita, rigaMtzPro.isFermo, rigaMtzPro.idxTipo, rigaMtzPro.idxCausale);
|
||||
}
|
||||
catch
|
||||
{ }
|
||||
|
||||
+108
-72
@@ -92,42 +92,6 @@ public partial class mod_elencoMtzProg {
|
||||
/// </remarks>
|
||||
protected global::AjaxControlToolkit.CalendarExtender CalendarExtender1;
|
||||
|
||||
/// <summary>
|
||||
/// chkPrior 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.CheckBox chkPrior;
|
||||
|
||||
/// <summary>
|
||||
/// pnlPrior 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.Panel pnlPrior;
|
||||
|
||||
/// <summary>
|
||||
/// ddlPrior 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 ddlPrior;
|
||||
|
||||
/// <summary>
|
||||
/// odsPrior 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.ObjectDataSource odsPrior;
|
||||
|
||||
/// <summary>
|
||||
/// chkSetFermo control.
|
||||
/// </summary>
|
||||
@@ -155,42 +119,6 @@ public partial class mod_elencoMtzProg {
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.CheckBox chkImpFermo;
|
||||
|
||||
/// <summary>
|
||||
/// chkTipoGuasto 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.CheckBox chkTipoGuasto;
|
||||
|
||||
/// <summary>
|
||||
/// pnlTipoGuasto 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.Panel pnlTipoGuasto;
|
||||
|
||||
/// <summary>
|
||||
/// ddlTipo 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 ddlTipo;
|
||||
|
||||
/// <summary>
|
||||
/// odsTipo 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.ObjectDataSource odsTipo;
|
||||
|
||||
/// <summary>
|
||||
/// chkFreq control.
|
||||
/// </summary>
|
||||
@@ -227,6 +155,114 @@ public partial class mod_elencoMtzProg {
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.ObjectDataSource odsFreq;
|
||||
|
||||
/// <summary>
|
||||
/// chkCausale 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.CheckBox chkCausale;
|
||||
|
||||
/// <summary>
|
||||
/// pnlCausale 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.Panel pnlCausale;
|
||||
|
||||
/// <summary>
|
||||
/// ddlCausale 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 ddlCausale;
|
||||
|
||||
/// <summary>
|
||||
/// odsCausali 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.ObjectDataSource odsCausali;
|
||||
|
||||
/// <summary>
|
||||
/// chkPrior 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.CheckBox chkPrior;
|
||||
|
||||
/// <summary>
|
||||
/// pnlPrior 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.Panel pnlPrior;
|
||||
|
||||
/// <summary>
|
||||
/// ddlPrior 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 ddlPrior;
|
||||
|
||||
/// <summary>
|
||||
/// odsPrior 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.ObjectDataSource odsPrior;
|
||||
|
||||
/// <summary>
|
||||
/// chkTipoGuasto 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.CheckBox chkTipoGuasto;
|
||||
|
||||
/// <summary>
|
||||
/// pnlTipoGuasto 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.Panel pnlTipoGuasto;
|
||||
|
||||
/// <summary>
|
||||
/// ddlTipo 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 ddlTipo;
|
||||
|
||||
/// <summary>
|
||||
/// odsTipo 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.ObjectDataSource odsTipo;
|
||||
|
||||
/// <summary>
|
||||
/// chkCadenza control.
|
||||
/// </summary>
|
||||
|
||||
@@ -18,7 +18,7 @@ namespace GIM_site.WebUserControls
|
||||
/// <param name="e"></param>
|
||||
protected override void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
base.Page_Load(sender, e);
|
||||
base.Page_Load(sender, e);
|
||||
if (!Page.IsPostBack)
|
||||
{
|
||||
// se l'utente NON c'è torno a login...
|
||||
@@ -166,7 +166,7 @@ namespace GIM_site.WebUserControls
|
||||
{
|
||||
SteamWare.memLayer.ML.setSessionVal(kvp.Key, kvp.Value, true);
|
||||
}
|
||||
|
||||
|
||||
Response.Redirect(_paginaCorrente);
|
||||
|
||||
}
|
||||
@@ -184,16 +184,6 @@ namespace GIM_site.WebUserControls
|
||||
/// verifica se la pagina abbia abilitato il search
|
||||
/// </summary>
|
||||
public bool pageHasSearch { get; set; }
|
||||
#if false
|
||||
public bool pageHasSearch
|
||||
{
|
||||
get
|
||||
{
|
||||
return memLayer.ML.BoolSessionObj("pageHasSearch");
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
/// <summary>
|
||||
/// modifica campo ricerca...
|
||||
/// </summary>
|
||||
@@ -202,7 +192,7 @@ namespace GIM_site.WebUserControls
|
||||
protected void txtSearch_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
// salvo in sessione
|
||||
memLayer.ML.setSessionVal("valoreCercato", txtSearch.Text.Trim());
|
||||
memLayer.ML.setSessionVal("valoreCercato", txtSearch.Text.Trim(), true);
|
||||
// raise dell'evento
|
||||
if (eh_nuovaRicerca != null)
|
||||
{
|
||||
@@ -220,7 +210,7 @@ namespace GIM_site.WebUserControls
|
||||
}
|
||||
set
|
||||
{
|
||||
memLayer.ML.setSessionVal("valoreCercato", value);
|
||||
memLayer.ML.setSessionVal("valoreCercato", value, true);
|
||||
txtSearch.Text = value;
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -115,6 +115,9 @@
|
||||
<add key="_smtpCli" value="localhost" />
|
||||
<add key="echoLemmi" value="false" />
|
||||
<add key="allowDelete" value="true" />
|
||||
<!--selezioni default-->
|
||||
<add key="defPriorMtzPred" value="2" />
|
||||
<add key="defCauMtzPred" value="59" />
|
||||
<!--(Macro) Moduli abilitati-->
|
||||
<add key="enModMag" value="true" />
|
||||
<!--abilitazione mod-->
|
||||
|
||||
Binary file not shown.
@@ -1,15 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
|
||||
autoReload="true"
|
||||
throwExceptions="false"
|
||||
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
|
||||
|
||||
<!--
|
||||
See https://github.com/nlog/nlog/wiki/Configuration-file
|
||||
<!-- optional, add some variables
|
||||
https://github.com/nlog/NLog/wiki/Configuration-file#variables
|
||||
-->
|
||||
<variable name="myvar" value="myvalue"/>
|
||||
|
||||
<!--
|
||||
See https://github.com/nlog/nlog/wiki/Configuration-file
|
||||
for information on customizing logging rules and outputs.
|
||||
-->
|
||||
<targets>
|
||||
<!-- add your targets here -->
|
||||
|
||||
|
||||
<!--
|
||||
add your targets here
|
||||
See https://github.com/nlog/NLog/wiki/Targets for possible targets.
|
||||
See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers.
|
||||
-->
|
||||
|
||||
<!--
|
||||
Write events to a file with the date in the filename.
|
||||
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
|
||||
layout="${longdate} ${uppercase:${level}} ${message}" />
|
||||
-->
|
||||
@@ -17,9 +32,10 @@
|
||||
|
||||
<rules>
|
||||
<!-- add your logging rules here -->
|
||||
|
||||
|
||||
<!--
|
||||
<logger name="*" minlevel="Trace" writeTo="f" />
|
||||
Write all events with minimal level of Debug (So Debug, Info, Warn, Error and Fatal, but not Trace) to "f"
|
||||
<logger name="*" minlevel="Debug" writeTo="f" />
|
||||
-->
|
||||
</rules>
|
||||
</nlog>
|
||||
</nlog>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -585,6 +585,16 @@
|
||||
<param name="tipo">The tipo.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="E:SteamWare.ApplicationUserControl.eh_ucev">
|
||||
<summary>
|
||||
event handler generico
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.ApplicationUserControl.raiseEvent(SteamWare.ucEvType)">
|
||||
<summary>
|
||||
sollevo evento selezione
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.authProxy">
|
||||
<summary>
|
||||
classe gestione auth
|
||||
@@ -669,6 +679,61 @@
|
||||
<param name="UsrName"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:SteamWare.BillingProxy">
|
||||
<summary>
|
||||
classe di wrap verso i TableAdapter dell'area billing
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.BillingProxy.#ctor">
|
||||
<summary>
|
||||
metodo protected di avvio della classe
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.BillingProxy.avvioTableAdapters">
|
||||
<summary>
|
||||
procedura di avvio dei tableAdapter
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.BillingProxy.setupConnectionString">
|
||||
<summary>
|
||||
effettua setup dei connection strings da web.config delal singola applicazione
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taClienti">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taCostiAss">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taDocs">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taRows">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taScad">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.taVAT">
|
||||
<summary>
|
||||
tableAdapter documenti
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.BillingProxy.man">
|
||||
<summary>
|
||||
classe singleton x la gestione dei tableadapters
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.calcoli">
|
||||
<summary>
|
||||
classe con funzioni specifiche di calcolo
|
||||
@@ -1388,7 +1453,13 @@
|
||||
<param name="AuthKey"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "M:SteamWare.devicesAuthProxy.reqResetAuthKey(System.String,System.String)" -->
|
||||
<member name="M:SteamWare.devicesAuthProxy.reqResetAuthKey(System.String,System.String)">
|
||||
<summary>
|
||||
registra su DB la richiesta di reset della auth key dell'utente ed opzionalmente invia email ad admin
|
||||
</summary>
|
||||
<param name="email"></param>
|
||||
<param name="adminEmail">opzionale, se != "" invia email all'indirizzo dell'admin x reset</param>
|
||||
</member>
|
||||
<member name="M:SteamWare.devicesAuthProxy.sendEmailResetHashPassword(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
invia email ad utente con url x reset hash password
|
||||
@@ -1885,6 +1956,311 @@
|
||||
Used to sort self-referenced table's rows
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing">
|
||||
<summary>
|
||||
Represents a strongly typed in-memory cache of data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selTipoDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selCliDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.DocumentiDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.RigheDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selIVADataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.VATDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.clientiDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.ScadenzeDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoIPSDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.FattureAperteDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.PagamentiDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoMargDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.CostiAssorbitiDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selTipoRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selCliRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.DocumentiRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.RigheRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selIVARow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.VATRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.clientiRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.ScadenzeRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoIPSRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.FattureAperteRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.PagamentiRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoMargRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.CostiAssorbitiRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selTipoRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selCliRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.DocumentiRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.RigheRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.selIVARowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.VATRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.clientiRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.ScadenzeRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoIPSRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.FattureAperteRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.PagamentiRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.StatoMargRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Billing.CostiAssorbitiRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.selTipoTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.selCliTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.DocumentiTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.RigheTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.selIVATableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.VATTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.clientiTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.ScadenzeTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.StatoIPSTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.FattureAperteTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.PagamentiTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.StatoMargTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.CostiAssorbitiTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.TableAdapterManager">
|
||||
<summary>
|
||||
TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateUpdatedRows(SteamWare.DS_Billing,System.Collections.Generic.List{System.Data.DataRow},System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Update rows in top-down order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateInsertedRows(SteamWare.DS_Billing,System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Insert rows in top-down order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateDeletedRows(SteamWare.DS_Billing,System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Delete rows in bottom-up order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.GetRealUpdatedRows(System.Data.DataRow[],System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateAll(SteamWare.DS_Billing)">
|
||||
<summary>
|
||||
Update all changes to the dataset.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.TableAdapterManager.UpdateOrderOption">
|
||||
<summary>
|
||||
Update Order Option
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_BillingTableAdapters.TableAdapterManager.SelfReferenceComparer">
|
||||
<summary>
|
||||
Used to sort self-referenced table's rows
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_devices">
|
||||
<summary>
|
||||
Represents a strongly typed in-memory cache of data.
|
||||
@@ -2075,6 +2451,91 @@
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility">
|
||||
<summary>
|
||||
Represents a strongly typed in-memory cache of data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.ListValuesDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.v_selListValDataTable">
|
||||
<summary>
|
||||
Represents the strongly named DataTable class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.ListValuesRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.v_selListValRow">
|
||||
<summary>
|
||||
Represents strongly named DataRow class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.ListValuesRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_Utility.v_selListValRowChangeEvent">
|
||||
<summary>
|
||||
Row event argument class
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.ListValuesTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.v_selListValTableAdapter">
|
||||
<summary>
|
||||
Represents the connection and commands used to retrieve and save data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.TableAdapterManager">
|
||||
<summary>
|
||||
TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateUpdatedRows(SteamWare.DS_Utility,System.Collections.Generic.List{System.Data.DataRow},System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Update rows in top-down order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateInsertedRows(SteamWare.DS_Utility,System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Insert rows in top-down order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateDeletedRows(SteamWare.DS_Utility,System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Delete rows in bottom-up order.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.GetRealUpdatedRows(System.Data.DataRow[],System.Collections.Generic.List{System.Data.DataRow})">
|
||||
<summary>
|
||||
Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateAll(SteamWare.DS_Utility)">
|
||||
<summary>
|
||||
Update all changes to the dataset.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.UpdateOrderOption">
|
||||
<summary>
|
||||
Update Order Option
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.DS_UtilityTableAdapters.TableAdapterManager.SelfReferenceComparer">
|
||||
<summary>
|
||||
Used to sort self-referenced table's rows
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:SteamWare.loginMode">
|
||||
<summary>
|
||||
enumeratore modalità login
|
||||
@@ -3198,6 +3659,20 @@
|
||||
<param name="nomeParam"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.CRD(System.String)">
|
||||
<summary>
|
||||
shot-form di confReadDouble: legge dalla config un valore double
|
||||
</summary>
|
||||
<param name="nomeParam"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.confReadDouble(System.String)">
|
||||
<summary>
|
||||
legge dalla config un valore int
|
||||
</summary>
|
||||
<param name="nomeParam"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.QSS(System.String)">
|
||||
<summary>
|
||||
recupera valore querystring STRING
|
||||
@@ -3799,7 +4274,7 @@
|
||||
modalità operativa controllo
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.UserControl.escaleInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<member name="M:SteamWare.UserControl.escapeInputParam(System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs)">
|
||||
<summary>
|
||||
escape dei parametri input dell'ODS
|
||||
</summary>
|
||||
@@ -4091,7 +4566,7 @@
|
||||
</member>
|
||||
<member name="P:SteamWare.user_std.isAuth">
|
||||
<summary>
|
||||
è un boolean che indica se in session ci siano user/dominio e quindi utente autenticato in rpecedenza...
|
||||
è un boolean che indica se in session ci siano user/dominio e quindi utente autenticato in precedenza...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.user_std.isPageEnabled(System.String)">
|
||||
@@ -4475,6 +4950,16 @@
|
||||
<param name="smtpCli"></param>
|
||||
<param name="logDir"></param>
|
||||
</member>
|
||||
<member name="M:SteamWare.gestEmail.mandaEmailNoLog(System.String,System.String,System.String,System.String,System.Net.Mail.AlternateView[])">
|
||||
<summary>
|
||||
procedura invio email
|
||||
</summary>
|
||||
<param name="_mailFrom">email mittente</param>
|
||||
<param name="_mailTo">email destinatario</param>
|
||||
<param name="_oggetto">oggetto dell'email</param>
|
||||
<param name="_corpo">corpo del messaggio</param>
|
||||
<param name="_allegati">allegati del messaggio</param>
|
||||
</member>
|
||||
<member name="M:SteamWare.gestEmail.mandaEmailNoLog(System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
procedura invio email
|
||||
@@ -4492,6 +4977,17 @@
|
||||
<param name="_mailTo">email destinatario</param>
|
||||
<param name="_oggetto">oggetto dell'email</param>
|
||||
<param name="_corpo">corpo del messaggio</param>
|
||||
<param name="_allegati">allegati del messaggio</param>
|
||||
</member>
|
||||
<member name="M:SteamWare.gestEmail.mandaEmail(System.String,System.String,System.String,System.String,System.Net.Mail.AlternateView[])">
|
||||
<summary>
|
||||
procedura invio email + scrittura in log!
|
||||
</summary>
|
||||
<param name="_mailFrom">email mittente</param>
|
||||
<param name="_mailTo">email destinatario</param>
|
||||
<param name="_oggetto">oggetto dell'email</param>
|
||||
<param name="_corpo">corpo del messaggio</param>
|
||||
<param name="_allegati">allegati del messaggio</param>
|
||||
</member>
|
||||
<member name="F:SteamWare.gestEmail.ge">
|
||||
<summary>
|
||||
@@ -4715,7 +5211,7 @@
|
||||
</member>
|
||||
<member name="T:SteamWare.urlUtils">
|
||||
<summary>
|
||||
classi helper gestioen URL
|
||||
classi helper gestione URL
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.urlUtils.callUrl(System.String,System.Boolean)">
|
||||
@@ -4747,6 +5243,30 @@
|
||||
<param name="Passphrase"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.SteamCrypto.getHashStringMD5(System.String)">
|
||||
<summary>
|
||||
genera hash di una stringa in MD5 (es x hash gravatar)
|
||||
</summary>
|
||||
<param name="Message"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.SteamCrypto.GetMd5Hash(System.Security.Cryptography.MD5,System.String)">
|
||||
<summary>
|
||||
Crea un hash MD5
|
||||
</summary>
|
||||
<param name="md5Hash"></param>
|
||||
<param name="input"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.SteamCrypto.VerifyMd5Hash(System.Security.Cryptography.MD5,System.String,System.String)">
|
||||
<summary>
|
||||
Verify a hash against a string.
|
||||
</summary>
|
||||
<param name="md5Hash"></param>
|
||||
<param name="input"></param>
|
||||
<param name="hash"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:SteamWare.percentuali">
|
||||
<summary>
|
||||
classe gestione valori percentuali per semplificare edit utente (moltiplicati x 100 appunto)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -29,42 +29,15 @@
|
||||
<cc1:TabPanel runat="server" HeaderText="Programmazione Intervento" ID="TabProgrammaMtz">
|
||||
<ContentTemplate>
|
||||
<uc2:mod_dettMtzProg ID="mod_dettMtzProg1" runat="server" Visible="False" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<uc1:mod_elencoMtzProg ID="mod_elencoMtzProg1" runat="server" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<uc3:mod_fixCal ID="mod_fixCal1" runat="server" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</ContentTemplate>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</cc1:TabPanel>
|
||||
</ContentTemplate>
|
||||
</cc1:TabPanel>
|
||||
<cc1:TabPanel runat="server" HeaderText="Interventi in scadenza" ID="TabScadenzeMtz">
|
||||
<ContentTemplate>
|
||||
<uc4:mod_mtzPrevPending ID="mod_mtzPrevPending1" runat="server" />
|
||||
|
||||
</ContentTemplate>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</cc1:TabPanel>
|
||||
</ContentTemplate>
|
||||
</cc1:TabPanel>
|
||||
</cc1:TabContainer>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("1.7.300.534")]
|
||||
[assembly: AssemblyFileVersion("1.7.300.534")]
|
||||
[assembly: AssemblyCopyright("Steamware © 2006-2016")]
|
||||
[assembly: AssemblyVersion("1.8.1701.577")]
|
||||
[assembly: AssemblyFileVersion("1.8.1701.577")]
|
||||
[assembly: AssemblyCopyright("Steamware © 2006-2017")]
|
||||
[assembly: AssemblyCompany("Steamware")]
|
||||
@@ -48,16 +48,16 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="WebGIM.cs">
|
||||
<Compile Include="VersGen.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>WebGIM.tt</DependentUpon>
|
||||
<DependentUpon>VersGen.tt</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="WebGIM.tt">
|
||||
<None Include="VersGen.tt">
|
||||
<Generator>TextTemplatingFileGenerator</Generator>
|
||||
<LastGenOutput>WebGIM.cs</LastGenOutput>
|
||||
<LastGenOutput>VersGen.cs</LastGenOutput>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("1.7.300.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyFileVersion("1.7.300.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyVersion("1.8.1701.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyFileVersion("1.8.1701.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyCopyright("Steamware © 2006-<#= DateTime.Now.Year #>")]
|
||||
[assembly: AssemblyCompany("Steamware")]
|
||||
<#+
|
||||
Binary file not shown.
Binary file not shown.
+19
-19
@@ -1,10 +1,8 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.23107.0
|
||||
VisualStudioVersion = 14.0.25420.1
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SteamWare", "..\..\..\SteamWareLibrary\SteamWare\SteamWare.csproj", "{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GIM_site", "GIM_site\GIM_site.csproj", "{02C16B9B-9E89-42A7-A59C-E85A21E102F3}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GIM_data", "GIM_data\GIM_data.csproj", "{F66427C8-882A-4EF8-B42F-EF142906DC8C}"
|
||||
@@ -13,6 +11,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VersGen", "VersGen\VersGen.
|
||||
EndProject
|
||||
Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "GimDB", "..\..\..\..\Visual Studio 2015\Projects\WebGIM\Projects\GimDB\GimDB.sqlproj", "{A3141577-5116-4FFB-8C3E-557644CA98E0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SteamWare", "..\..\..\Steamware\SteamWareLib\SteamWare.csproj", "{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(Performance) = preSolution
|
||||
HasPerformanceSessions = true
|
||||
@@ -28,22 +28,6 @@ Global
|
||||
WinLab|Any CPU = WinLab|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Alumat|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Alumat|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.IIS01|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.IIS01|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.IIS02|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.IIS02|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Somaschini|Any CPU.ActiveCfg = SomaschiniUSA|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Somaschini|Any CPU.Build.0 = SomaschiniUSA|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.SomaschiniUSA|Any CPU.ActiveCfg = SomaschiniUSA|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.SomaschiniUSA|Any CPU.Build.0 = SomaschiniUSA|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.WinLab|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.WinLab|Any CPU.Build.0 = Release|Any CPU
|
||||
{02C16B9B-9E89-42A7-A59C-E85A21E102F3}.Alumat|Any CPU.ActiveCfg = Alumat|Any CPU
|
||||
{02C16B9B-9E89-42A7-A59C-E85A21E102F3}.Alumat|Any CPU.Build.0 = Alumat|Any CPU
|
||||
{02C16B9B-9E89-42A7-A59C-E85A21E102F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
@@ -116,6 +100,22 @@ Global
|
||||
{A3141577-5116-4FFB-8C3E-557644CA98E0}.WinLab|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A3141577-5116-4FFB-8C3E-557644CA98E0}.WinLab|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A3141577-5116-4FFB-8C3E-557644CA98E0}.WinLab|Any CPU.Deploy.0 = Debug|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Alumat|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Alumat|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.IIS01|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.IIS01|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.IIS02|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.IIS02|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Somaschini|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.Somaschini|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.SomaschiniUSA|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.SomaschiniUSA|Any CPU.Build.0 = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.WinLab|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2872DCFE-8B46-43B2-BAA0-842A816A2DD5}.WinLab|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
||||
BIN
Binary file not shown.
+10
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<system.web>
|
||||
<pages>
|
||||
<controls>
|
||||
<add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
|
||||
</controls>
|
||||
</pages>
|
||||
</system.web>
|
||||
</configuration>
|
||||
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
+23233
File diff suppressed because it is too large
Load Diff
Binary file not shown.
+23346
File diff suppressed because it is too large
Load Diff
Binary file not shown.
+23541
File diff suppressed because it is too large
Load Diff
Binary file not shown.
+16759
File diff suppressed because it is too large
Load Diff
Binary file not shown.
+16759
File diff suppressed because it is too large
Load Diff
Binary file not shown.
+15945
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
|
||||
autoReload="true"
|
||||
throwExceptions="false"
|
||||
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
|
||||
|
||||
<!-- optional, add some variables
|
||||
https://github.com/nlog/NLog/wiki/Configuration-file#variables
|
||||
-->
|
||||
<variable name="myvar" value="myvalue"/>
|
||||
|
||||
<!--
|
||||
See https://github.com/nlog/nlog/wiki/Configuration-file
|
||||
for information on customizing logging rules and outputs.
|
||||
-->
|
||||
<targets>
|
||||
|
||||
<!--
|
||||
add your targets here
|
||||
See https://github.com/nlog/NLog/wiki/Targets for possible targets.
|
||||
See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers.
|
||||
-->
|
||||
|
||||
<!--
|
||||
Write events to a file with the date in the filename.
|
||||
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
|
||||
layout="${longdate} ${uppercase:${level}} ${message}" />
|
||||
-->
|
||||
</targets>
|
||||
|
||||
<rules>
|
||||
<!-- add your logging rules here -->
|
||||
|
||||
<!--
|
||||
Write all events with minimal level of Debug (So Debug, Info, Warn, Error and Fatal, but not Trace) to "f"
|
||||
<logger name="*" minlevel="Debug" writeTo="f" />
|
||||
-->
|
||||
</rules>
|
||||
</nlog>
|
||||
@@ -0,0 +1,12 @@
|
||||
param($installPath, $toolsPath, $package, $project)
|
||||
|
||||
$configItem = $project.ProjectItems.Item("NLog.config")
|
||||
|
||||
# set 'Copy To Output Directory' to 'Copy if newer'
|
||||
$copyToOutput = $configItem.Properties.Item("CopyToOutputDirectory")
|
||||
$copyToOutput.Value = 1
|
||||
|
||||
# set 'Build Action' to 'Content'
|
||||
$buildAction = $configItem.Properties.Item("BuildAction")
|
||||
$buildAction.Value = 2
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user