fix x selezione di 1 formato x foglio excel

This commit is contained in:
Samuele E. Locatelli
2015-03-19 12:01:30 +01:00
parent f785da1082
commit d6e085df38
33 changed files with 63 additions and 3916 deletions
Binary file not shown.
Binary file not shown.
+1
View File
@@ -609,6 +609,7 @@
<None Include="Properties\PublishProfiles\WinLab.pubxml" />
<Content Include="setupTgt.bat" />
<Content Include="Reports\WebGIM_PowerPivot.xlsx" />
<Content Include="Reports\WebGIM_PivotExcel.xlsx" />
<None Include="sql\Applicazione\V1.3\GIM_0200.sql" />
<None Include="sql\Voc\SomVoc_0200.sql" />
<None Include="sql\Applicazione\V1.3\GIM_0205.sql" />
@@ -72,38 +72,48 @@
</div>
</div>
</div>
<div style="font-size: 8pt; clear: both; text-align: center; vertical-align: top; padding: 20px 2px; background-color: #E5E2E1; height:160px;">
<div style="border: 1px solid gray; float: left; height:160px;">
<div style="float: left; width: 250px; margin: 2px 10px;">
<h3>
<asp:Label runat="server" ID="lblReportInterventi" />
</h3>
<asp:HyperLink runat="server" ID="hlElencoInterventi_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
<div style="font-size: 8pt; clear: both; text-align: center; vertical-align: top; padding: 20px 2px; background-color: #E5E2E1; height: 180px;">
<div style="border: 1px solid gray; float: left; height: 180px;">
<div style="clear: both; height: 160px;">
<div style="float: left; width: 250px; margin: 2px 10px;">
<h3>
<asp:Label runat="server" ID="lblReportInterventi" />
</h3>
<asp:HyperLink runat="server" ID="hlElencoInterventi_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
</div>
<div style="float: left; width: 250px; margin: 2px 10px;">
<h3>
<asp:Label runat="server" ID="lblReportMTBFMTTR" />
</h3>
<asp:HyperLink runat="server" ID="hlMTBF_MTTR_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
</div>
</div>
<div style="float: left; width: 250px; margin: 2px 10px;">
<h3>
<asp:Label runat="server" ID="lblReportMTBFMTTR" />
</h3>
<asp:HyperLink runat="server" ID="hlMTBF_MTTR_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
</div>
<div style="clear: both;">
<div style="clear: both; border-top: 1px solid gray; border-bottom: 1px solid gray; background:#CDCDCD; height: 20px; vertical-align: bottom">
<asp:HyperLink runat="server" ID="lnkGuidaPerReport" Target="_blank" />
</div>
</div>
<div style="border: 1px solid gray; float: left; height:160px;">
<div style="float: left; width: 250px; margin: 2px 10px;">
<h3>
<asp:Label runat="server" ID="lblExcelExportAllData" Text='<%= traduci("lblExcelExportAllData") %>' />
</h3>
<asp:HyperLink runat="server" ID="hlExcelExportAllData" ImageUrl="~/images/csvExportSmall.png" Target="_blank" NavigateUrl="~/ExcelExportAllData.aspx" ToolTip='<%: traduci("hlExcelExportAllData") %>' />
<div style="border: 1px solid gray; float: left; height: 180px;">
<div style="clear: both; height: 160px;">
<div style="float: left; width: 250px; margin: 2px 10px;">
<h3>
<asp:Label runat="server" ID="lblExcelExportAllData" Text='<%= traduci("lblExcelExportAllData") %>' />
</h3>
<asp:HyperLink runat="server" ID="hlExcelExportAllData" ImageUrl="~/images/csvExportSmall.png" Target="_blank" NavigateUrl="~/ExcelExportAllData.aspx" ToolTip='<%: traduci("hlExcelExportAllData") %>' />
</div>
<div style="float: left; width: 250px; margin: 2px 10px;">
<h3>
<asp:Label runat="server" ID="lblExcelPowerPivot" Text='<%: traduci("lblExcelPowerPivot") %>' />
</h3>
<asp:HyperLink runat="server" ID="hlExcelPowerPivot" ImageUrl="~/images/powerPivotSmall.png" Target="_blank" NavigateUrl="~/Reports/WebGIM_PowerPivot.xlsx" ToolTip='<%: traduci("hlExcelPowerPivot") %>' />
<div>
<asp:RadioButtonList runat="server" ID="rblFormato" RepeatLayout="Flow" RepeatDirection="Horizontal" AutoPostBack="True" OnSelectedIndexChanged="rblFormato_SelectedIndexChanged">
<asp:ListItem Selected="True" Text="Excel 2013 PRO" Value="PRO"></asp:ListItem>
<asp:ListItem Text="Excel std" Value="STD"></asp:ListItem>
</asp:RadioButtonList>
</div>
</div>
</div>
<div style="float: left; width: 250px; margin: 2px 10px;">
<h3>
<asp:Label runat="server" ID="lblExcelPowerPivot" Text='<%: traduci("lblExcelPowerPivot") %>' />
</h3>
<asp:HyperLink runat="server" ID="hlExcelPowerPivot" ImageUrl="~/images/powerPivotSmall.png" Target="_blank" NavigateUrl="~/Reports/WebGIM_PowerPivot.xlsx" ToolTip='<%: traduci("hlExcelPowerPivot") %>' />
</div>
<div style="clear: both;">
<div style="clear: both; border-top: 1px solid gray; border-bottom: 1px solid gray; background:#CDCDCD; height: 20px; vertical-align: bottom">
<asp:Label runat="server" ID="lblExcelInstruction" />
</div>
</div>
@@ -246,6 +246,18 @@ public partial class mod_reportInterventi : System.Web.UI.UserControl
#endregion
protected void rblFormato_SelectedIndexChanged(object sender, EventArgs e)
{
if (rblFormato.SelectedValue == "PRO")
{
hlExcelPowerPivot.NavigateUrl = "~/Reports/WebGIM_PowerPivot.xlsx";
}
else
{
hlExcelPowerPivot.NavigateUrl = "~/Reports/WebGIM_PivotExcel.xlsx";
}
}
#endregion
@@ -218,6 +218,15 @@ public partial class mod_reportInterventi {
/// </remarks>
protected global::System.Web.UI.WebControls.HyperLink hlExcelPowerPivot;
/// <summary>
/// rblFormato 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.RadioButtonList rblFormato;
/// <summary>
/// lblExcelInstruction control.
/// </summary>
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,767 +0,0 @@
<%@ Control Language="C#" AutoEventWireup="true" Inherits="mod_dettaglioIntervento"
CodeBehind="mod_dettaglioIntervento.ascx.cs" %>
<%@ Register Src="~/WebUserControls/mod_interventoOpMtz.ascx" TagName="mod_interventoOpMtz"
TagPrefix="uc1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Src="~/WebUserControls/mod_dataOra.ascx" TagName="mod_dataOra" TagPrefix="uc2" %>
<div style="text-align: center; width: 100%;">
<div style="float: left; margin: 2px;">
<asp:LinkButton ID="btnElenco" runat="server" OnClick="btnElenco_Click" />
</div>
<div style="float: right;">
<asp:Button ID="btnCancel" runat="server" Width="150px" OnClick="btnCancel_Click" />
<cc1:ConfirmButtonExtender ID="cbeCancel" runat="server" TargetControlID="btnCancel" />
</div>
<div style="margin: 2px;">
<asp:Button ID="btnCompilaMtz" runat="server" Width="150px" OnClick="btnCompilaMtz_Click" />
<asp:Button ID="btnEditFull" runat="server" Width="150px" OnClick="btnEditFull_Click" />
</div>
</div>
<asp:FormView ID="frmView_default" runat="server" DataKeyNames="numIntMtz" DataSourceID="ods_default"
Width="100%">
<ItemTemplate>
<div id="divReadOnly">
<div id="divUp" style="background-color: #E5E2E1; padding: 10px; border-top: solid 2px orange;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblNumIntMtz" Text='<%# traduci("numIntMtz") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOra" Text='<%# traduci("lblDataOraRich") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOraGuasto" Text='<%# traduci("lblDataOraGuasto") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataLav" Text='<%# traduci("lblDataLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblTurnoLav" Text='<%# traduci("lblTurnoLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblMatr" Text='<%# traduci("lblMatr") %>' Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="numIntMtzLabel" runat="server" Text='<%# Eval("numIntMtz") %>' CssClass="fixedVal"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="richiestaLabel" runat="server" Text='<%# Eval("richiesta") %>' CssClass="fixedVal"
ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="guastoLabel" runat="server" Text='<%# Eval("guasto") %>' CssClass="fixedVal"
ReadOnly="true" Width="110px" />
</td>
<td>
<asp:TextBox ID="dataLavLabel" runat="server" Text='<%# Eval("dataLav","{0:dd/MM/yy}") %>'
CssClass="fixedVal" ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="turnoLavLabel" runat="server" Text='<%# Eval("turnoLav") %>' CssClass="fixedVal"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="matrLabel" runat="server" Text='<%# Eval("matr") %>' CssClass="fixedVal"
ReadOnly="true" Width="105px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblIsFermo" Text='<%# traduci("lblIsFermo") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDettagliGuasto" Text='<%# traduci("lblDettagliGuasto") %>'
Font-Size="X-Small" />
</tr>
<tr>
<td>
<asp:CheckBox ID="isFermoCheckBox" runat="server" Checked='<%# Eval("isFermo") %>'
Enabled="false" />
</td>
<td colspan="5">
<asp:TextBox ID="descrAmbitoGuastoLabel" runat="server" Text='<%# Eval("descrAmbitoGuasto") %>'
CssClass="fixedVal" ReadOnly="true" />
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblImpianto" Text='<%# traduci("lblImpianto") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listImpianti" runat="server" DataSourceID="odsImpianti" DataTextField="label"
DataValueField="value" AutoPostBack="true" Width="400px" BackColor="Silver" Font-Size="8pt"
SelectedValue='<%# Eval("idxImpianto") %>' Enabled="false">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblMacchina" Text='<%# traduci("lblMacchina") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listMacchine" runat="server" AutoPostBack="True" DataSourceID="odsMacchine"
DataTextField="label" DataValueField="value" Width="400px" BackColor="Silver"
Font-Size="8pt" SelectedValue='<%# Eval("idxMacchina") %>' Enabled="false">
</asp:DropDownList>
<%--<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="listImpianti" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="padding-top: 15px;">
<asp:Label runat="server" ID="lblDescrCausale" Text='<%# traduci("lblDescrCausale") %>'
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:TextBox ID="descrCausaleLabel" runat="server" Text='<%# Eval("descrCausale") %>'
CssClass="fixedValLeft" ReadOnly="true" Width="530px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblDescrPriorita" Text='<%# traduci("lblDescrPriorita") %>'
Font-Size="X-Small" />
</td>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrizioneGen" Text='<%# traduci("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr style="vertical-align: top;">
<td>
<asp:TextBox ID="descrPrioritaLabel" runat="server" Text='<%# Eval("descrPriorita") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td colspan="5">
<asp:TextBox ID="descrizioneLabel" runat="server" Text='<%# Eval("descrizione") %>'
CssClass="fixedValLeft" ReadOnly="true" Height="100px" Width="530px" TextMode="MultiLine" />
</td>
</tr>
<tr>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrTipo" Text='<%# traduci("lblDescrTipo") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="descrTipoLabel" runat="server" Text='<%# Eval("descrTipo") %>' CssClass="fixedVal"
ReadOnly="true" />
</td>
</tr>
</table>
</div>
<div id="divDown" style="background-color: #FFFFFF; border-top: solid 2px orange;
padding: 10px;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblPresaInCarico" Text='<%# traduci("lblPresaInCarico") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblInizioIntervento" Text='<%# traduci("lblInizioIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblFineIntervento" Text='<%# traduci("lblFineIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDescrStato" Text='<%# traduci("lblDescrStato") %>'
Font-Size="X-Small" />
</td>
<td style="text-align: center;">
<asp:Label runat="server" ID="lblInterventi" Text='<%# traduci ("lblInterventi") %>'
Font-Size="X-Small"></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="presaInCaricoLabel" runat="server" Text='<%# Eval("presaInCarico") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td>
<asp:TextBox ID="inizioInterventoLabel" runat="server" Text='<%# Eval("inizioIntervento") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td>
<asp:TextBox ID="fineInterventoLabel" runat="server" Text='<%# Eval("fineIntervento") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td>
<asp:DropDownList runat="server" ID="ddlStato" CssClass="fixedVal" SelectedValue='<%# Eval("idxStato") %>'
DataSourceID="odsStato" DataTextField="label" DataValueField="value" Enabled="false">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsStato" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
</asp:ObjectDataSource>
</td>
<td rowspan="3" style="vertical-align: top; padding-left: 30px;">
<uc1:mod_interventoOpMtz ID="mod_interventoOpMtz3" runat="server" vistaModulo="selezione" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrGuasto" Text='<%# traduci ("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblIsPreventivabile" Text='<%# traduci("lblIsPreventivabile") %>'
Font-Size="X-Small" />
<asp:CheckBox ID="isPreventivabileCheckBox" runat="server" Checked='<%# Eval("isPreventivabile") %>'
Enabled="false" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="descrizioneInterventoLabel" runat="server" Text='<%# Eval("descrizioneIntervento") %>'
CssClass="fixedValLeft" ReadOnly="true" Height="100px" Width="500px" TextMode="MultiLine" />
</td>
</tr>
</table>
</div>
</div>
</ItemTemplate>
<EditItemTemplate>
<div id="divEditDefault">
<div style="float: right;">
<asp:Button ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update"
Text='<%# traduci("Update") %>' Width="150px" />
</div>
<div id="divUp" style="background-color: #E5E2E1; padding: 10px; border-top: solid 2px orange;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblNumIntMtz" Text='<%# traduci("numIntMtz") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOra" Text='<%# traduci("lblDataOraRich") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="Label1" Text='<%# traduci("lblDataOraGuasto") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataLav" Text='<%# traduci("lblDataLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblTurnoLav" Text='<%# traduci("lblTurnoLav") %>' Font-Size="X-Small"><span id="ctl00_ctl00_lblTurnoLav" style="font-size:X-Small;">[lblTurnoLav]</span></asp:Label>
</td>
<td>
<asp:Label runat="server" ID="lblMatr" Text='<%# traduci("lblMatr") %>' Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="numIntMtzLabel" runat="server" Text='<%# Eval("numIntMtz") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="richiestaLabel" runat="server" Text='<%# Eval("richiesta") %>' CssClass="textEv_Read"
ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="guastoLabel" runat="server" Text='<%# Eval("guasto") %>' CssClass="textEv_Read"
ReadOnly="true" Width="110px" />
</td>
<td>
<asp:TextBox ID="dataLavLabel" runat="server" Text='<%# Eval("dataLav","{0:dd/MM/yy}") %>'
CssClass="textEv_Read" ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="turnoLavLabel" runat="server" Text='<%# Eval("turnoLav") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="matrLabel" runat="server" Text='<%# Eval("matr") %>' CssClass="textEv_Read"
ReadOnly="true" Width="105px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblIsFermo" Text='<%# traduci("lblIsFermo") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDettagliGuasto" Text='<%# traduci("lblDettagliGuasto") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:CheckBox ID="isFermoCheckBox" runat="server" Checked='<%# Eval("isFermo") %>'
Enabled="false" />
</td>
<td colspan="5">
<asp:TextBox ID="descrAmbitoGuastoLabel" runat="server" Text='<%# Eval("descrAmbitoGuasto") %>'
CssClass="textEv_Read" ReadOnly="true" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblImpianto" Text='<%# traduci("lblImpianto") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listImpianti" runat="server" DataSourceID="odsImpianti" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#deeff7" Font-Size="8pt" SelectedValue='<%# Eval("idxImpianto") %>'
Enabled="false">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblMacchina" Text='<%# traduci("lblMacchina") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listMacchine" runat="server" DataSourceID="odsMacchine" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#deeff7" Font-Size="8pt" SelectedValue='<%# Eval("idxMacchina") %>'
Enabled="false">
</asp:DropDownList>
<%--<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="listImpianti" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="padding-top: 15px;">
<asp:Label runat="server" ID="lblDescrCausale" Text='<%# traduci("lblDescrCausale") %>'
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:TextBox ID="descrCausaleLabel" runat="server" Text='<%# Eval("descrCausale") %>'
CssClass="textEv_ReadLeft" ReadOnly="true" Width="530px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblDescrPriorita" Text='<%# traduci("lblDescrPriorita") %>'
Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrizioneGen" Text='<%# traduci("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr style="vertical-align: top;">
<td>
<asp:TextBox ID="descrPrioritaLabel" runat="server" Text='<%# Eval("descrPriorita") %>'
CssClass="textEv_Read" ReadOnly="true" />
</td>
<td colspan="5">
<asp:TextBox ID="descrizioneLabel" runat="server" Text='<%# Eval("descrizione") %>'
CssClass="textEv_ReadLeft" ReadOnly="true" Height="100px" Width="530px" TextMode="MultiLine" />
</td>
</tr>
<tr>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrTipo" Text='<%# traduci("lblDescrTipo") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="descrTipoLabel" runat="server" Text='<%# Eval("descrTipo") %>' CssClass="textEv_Read"
ReadOnly="true" />
</td>
</tr>
</table>
</div>
<div id="divDown" style="background-color: #FFFFFF; border-top: solid 2px orange;
padding: 10px;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblPresaInCarico" Text='<%# traduci("lblPresaInCarico") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblInizioIntervento" Text='<%# traduci("lblInizioIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblFineIntervento" Text='<%# traduci("lblFineIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDescrStato" Text='<%# traduci("lblDescrStato") %>'
Font-Size="X-Small" />
</td>
<td style="text-align: center;">
<asp:Label runat="server" ID="lblInterventi" Text='<%# traduci ("lblInterventi") %>'
Font-Size="X-Small"></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Eval("presaInCarico") %>' CssClass="textEv_Read"
ReadOnly="true" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra2" runat="server" valore='<%# Bind("inizioIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra3" runat="server" valore='<%# Bind("fineIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<asp:DropDownList runat="server" ID="ddlStato" CssClass="textEv_1" SelectedValue='<%# Bind("idxStato") %>'
DataSourceID="odsStato" DataTextField="label" DataValueField="value">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsStato" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
</asp:ObjectDataSource>
</td>
<td rowspan="3" style="vertical-align: top; padding-left: 30px;">
<uc1:mod_interventoOpMtz ID="mod_interventoOpMtz2" runat="server" vistaModulo="editing" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrGuasto" Text='<%# traduci ("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblIsPreventivabile" Text='<%# traduci("lblIsPreventivabile") %>'
Font-Size="X-Small" />
<asp:CheckBox ID="isPreventivabileCheckBox" runat="server" Checked='<%# Bind("isPreventivabile") %>'
Enabled="true" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="descrizioneInterventoLabel" runat="server" Text='<%# Bind("descrizioneIntervento") %>'
Height="100px" Width="500px" CssClass="textEv_1Left" TextMode="MultiLine" />
</td>
</tr>
</table>
</div>
</div>
</EditItemTemplate>
</asp:FormView>
<asp:FormView ID="frmView_full" runat="server" DataKeyNames="numIntMtz" Visible="False"
DataSourceID="ods_full" Width="100%">
<EditItemTemplate>
<div id="divEditFull">
<div id="btnCancel" style="float: right;">
<asp:Button ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update"
Text='<%# traduci("Update") %>' Width="150px" />
</div>
<div id="divUp" style="background-color: #E5E2E1; padding: 10px; border-top: solid 2px orange;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblNumIntMtz" Text='<%# traduci("numIntMtz") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOra" Text='<%# traduci("lblDataOraRich") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOraGuasto" Text='<%# traduci("lblDataOraGuasto") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataLav" Text='<%# traduci("lblDataLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblTurnoLav" Text='<%# traduci("lblTurnoLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblMatr" Text='<%# traduci("lblMatr") %>' Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="numIntMtzLabel" runat="server" Text='<%# Eval("numIntMtz") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="richiestaLabel" runat="server" Text='<%# Eval("richiesta") %>' CssClass="textEv_Read"
ReadOnly="true" Width="105px" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra4" runat="server" valore='<%# Bind("guasto") %>'
css="textEv_2" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<asp:TextBox ID="dataLavLabel" runat="server" Text='<%# Eval("dataLav","{0:dd/MM/yy}") %>'
CssClass="textEv_Read" ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="turnoLavLabel" runat="server" Text='<%# Eval("turnoLav") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="matrLabel" runat="server" Text='<%# Bind("matr") %>' CssClass="textEv_2"
Width="105px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblIsFermo" Text='<%# traduci("lblIsFermo") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDettagliGuasto" Text='<%# traduci("lblDettagliGuasto") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:CheckBox ID="isFermoCheckBox" runat="server" Checked='<%# Bind("isFermo") %>'
Enabled="true" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblAmbito" />
<asp:DropDownList runat="server" ID="ddlAmbito" Font-Bold="True" Font-Size="10pt"
CssClass="textEv_2" DataSourceID="odsAmbiti" DataTextField="label" DataValueField="value"
SelectedValue='<%# Bind("idxAmbito") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsAmbiti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selAmbitiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblImpianto" Text='<%# traduci("lblImpianto") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listImpianti" runat="server" DataSourceID="odsImpianti" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#cdffcd" Font-Size="8pt" SelectedValue='<%# Bind("idxImpianto") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblMacchina" Text='<%# traduci("lblMacchina") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listMacchine" runat="server" DataSourceID="odsMacchine" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#cdffcd" Font-Size="8pt" SelectedValue='<%# Bind("idxMacchina") %>'>
</asp:DropDownList>
<%--<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="listImpianti" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="padding-top: 15px;">
<asp:Label runat="server" ID="lblDescrCausale" Text='<%# traduci("lblDescrCausale") %>'
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:Label runat="server" ID="lblCausale" Text='<%# Eval("idxCausale") %>' Visible="false" />
<asp:DropDownList ID="listCausali" runat="server" AutoPostBack="True" DataSourceID="odsCausali"
DataTextField="label" DataValueField="value" Width="400px" BackColor="#cdffcd"
Font-Size="8pt" SelectedValue='<%# Bind("idxCausale") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsCausali" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="getByConditioAndCurr" TypeName="GIM_data.DS_utilityTableAdapters.v_selCausaliMacchineTableAdapter" OnDataBinding="odsCausali_DataBinding">
<SelectParameters>
<asp:ControlParameter ControlID="listMacchine" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
<asp:ControlParameter ControlID="lblCausale" DefaultValue="0" Name="currVal" PropertyName="Text" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblDescrPriorita" Text='<%# traduci("lblDescrPriorita") %>'
Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrizioneGen" Text='<%# traduci("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr style="vertical-align: top;">
<td>
<asp:Label runat="server" ID="lblPrior" /><br />
<asp:DropDownList runat="server" ID="ddlPrior" DataSourceID="odsPrior" DataTextField="label"
DataValueField="value" CssClass="textEv_2" SelectedValue='<%# Bind("idxPriorita") %>' />
<asp:ObjectDataSource ID="odsPrior" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selPriorTableAdapter">
</asp:ObjectDataSource>
</td>
<td colspan="5">
<asp:TextBox ID="txtDescrizione" runat="server" Text='<%# Bind("descrizione") %>'
CssClass="textEv_2Left" Height="100px" Width="530px" TextMode="MultiLine" />
<asp:RequiredFieldValidator ID="rfvDescrizione" runat="server" ErrorMessage="Obbligatorio !!!"
ControlToValidate="txtDescrizione" Display="Dynamic"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td colspan="6">
<asp:Label runat="server" ID="lblDescrTipo" Text='<%# traduci("lblDescrTipo") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblTipoGuasto" /><br />
<asp:DropDownList runat="server" ID="ddlTipo" Font-Bold="True" Font-Size="10pt" CssClass="textEv_2"
DataSourceID="odsTipo" DataTextField="label" DataValueField="value" SelectedValue='<%# Bind("idxTipo") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsTipo" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selTipoGuastoTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
</table>
</div>
<div id="divDown" style="background-color: #FFFFFF; border-top: solid 2px orange;
padding: 10px;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblPresaInCarico" Text='<%# traduci("lblPresaInCarico") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblInizioIntervento" Text='<%# traduci("lblInizioIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblFineIntervento" Text='<%# traduci("lblFineIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDescrStato" Text='<%# traduci("lblDescrStato") %>'
Font-Size="X-Small" />
</td>
<td style="text-align: center;">
<asp:Label runat="server" ID="lblInterventi" Text='<%# traduci ("lblInterventi") %>'
Font-Size="X-Small"></asp:Label>
</td>
</tr>
<tr>
<td>
<%--<uc2:mod_dataOra ID="mod_dataOra10" runat="server" valore='<%# Bind("presaInCarico") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />--%>
<asp:TextBox ID="presaInCaricoLabel" runat="server" Text='<%# Bind("presaInCarico") %>'
CssClass="textEv_Read" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra2" runat="server" valore='<%# Bind("inizioIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra3" runat="server" valore='<%# Bind("fineIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<asp:DropDownList runat="server" ID="ddlStato" CssClass="textEv_1" SelectedValue='<%# Bind("idxStato") %>'
DataSourceID="odsStato" DataTextField="label" DataValueField="value">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsStato" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
</asp:ObjectDataSource>
</td>
<td rowspan="3" style="vertical-align: top; padding-left: 30px;">
<uc1:mod_interventoOpMtz ID="mod_interventoOpMtz4" runat="server" vistaModulo="editing" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrGuasto" Text='<%# traduci ("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblIsPreventivabile" Text='<%# traduci("lblIsPreventivabile") %>'
Font-Size="X-Small" />
<asp:CheckBox ID="isPreventivabileCheckBox" runat="server" Checked='<%# Bind("isPreventivabile") %>'
Enabled="true" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="descrizioneInterventoLabel" runat="server" Text='<%# Bind("descrizioneIntervento") %>'
Height="100px" Width="500px" CssClass="textEv_1Left" TextMode="MultiLine" />
</td>
</tr>
</table>
</div>
</div>
</EditItemTemplate>
</asp:FormView>
<asp:ObjectDataSource ID="ods_default" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByIdx" TypeName="GIM_data.DS_applicazioneTableAdapters.v_intervExpTableAdapter"
UpdateMethod="sp_updateIntervento">
<UpdateParameters>
<asp:Parameter Name="Original_numIntMtz" Type="Int32" />
<asp:Parameter Name="idxStato" Type="Int32" />
<asp:Parameter Name="inizioIntervento" Type="DateTime" />
<asp:Parameter Name="fineIntervento" Type="DateTime" />
<asp:Parameter Name="isPreventivabile" Type="Boolean" />
<asp:Parameter Name="descrizioneIntervento" Type="String" />
</UpdateParameters>
<SelectParameters>
<asp:SessionParameter DefaultValue="0" Name="numIntMtz" SessionField="numIntMtz_sel"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
<asp:ObjectDataSource ID="ods_full" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByIdx" TypeName="GIM_data.DS_applicazioneTableAdapters.v_intervExpTableAdapter"
UpdateMethod="sp_updateInterventoFull" OnUpdated="ods_full_Updated">
<UpdateParameters>
<asp:Parameter Name="Original_numIntMtz" Type="Int32" />
<asp:Parameter Name="idxStato" Type="Int32" />
<asp:Parameter Name="inizioIntervento" Type="DateTime" />
<asp:Parameter Name="fineIntervento" Type="DateTime" />
<asp:Parameter Name="isPreventivabile" Type="Boolean" />
<asp:Parameter Name="descrizioneIntervento" Type="String" />
<asp:Parameter Name="matr" Type="String" />
<asp:Parameter Name="guasto" Type="DateTime" />
<asp:Parameter Name="isFermo" Type="Boolean" />
<asp:Parameter Name="idxImpianto" Type="Int32" />
<asp:Parameter Name="idxMacchina" Type="Int32" />
<asp:Parameter Name="idxAmbito" Type="Int32" />
<asp:Parameter Name="idxPriorita" Type="Int32" />
<asp:Parameter Name="descrizione" Type="String" />
<asp:Parameter Name="idxTipo" Type="Int32" />
<asp:Parameter Name="idxCausale" Type="Int32" />
<asp:Parameter Name="presaInCarico" Type="DateTime" />
</UpdateParameters>
<SelectParameters>
<asp:SessionParameter DefaultValue="0" Name="numIntMtz" SessionField="numIntMtz_sel"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
@@ -1,107 +0,0 @@
<%@ Control Language="C#" AutoEventWireup="true" Inherits="mod_reportInterventi"
CodeBehind="mod_reportInterventi.ascx.cs" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Src="~/WebUserControls/mod_periodoAnalisi.ascx" TagName="mod_periodoAnalisi"
TagPrefix="uc1" %>
<div style="background-color: silver;">
<div style="padding: 1px;">
<div style="padding: 4px; background-color: #E5E2E1;">
<div style="background-color: #D5D2D1; clear: both; padding: 4px; text-align: center;
border-style: groove; display: inline-table; height:20px;">
<uc1:mod_periodoAnalisi ID="mod_periodoAnalisi1" runat="server" />
</div>
<div style="width: 100%; background-color: #E5E2E1; clear: both;" class="bg_plus">
<div style="float: left; width: 350px">
<div style="float: left;">
<asp:Label runat="server" ID="lblImpiantiInteressati" />
</div>
<div style="float: right;">
<asp:TextBox runat="server" ID="txtCercaImpianti" Width="8em" Text="*" AutoPostBack="True" />
</div>
<div>
<asp:ListBox ID="listImpianti" runat="server" AutoPostBack="True" DataSourceID="odsImpianti"
SelectionMode="Multiple" DataTextField="label" DataValueField="value" Height="300px"
Width="350px" BackColor="#ddeeff" Font-Size="8pt" OnSelectedIndexChanged="listImpianti_SelectedIndexChanged"
OnDataBound="listImpianti_DataBound" />
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter"
FilterExpression="label LIKE '%{0}%'">
<FilterParameters>
<asp:ControlParameter ControlID="txtCercaImpianti" DefaultValue="*" Type="String"
Name="txtCercaImpianti" />
</FilterParameters>
</asp:ObjectDataSource>
</div>
</div>
<div style="float: left; width: 450px">
<div style="float: left;">
<asp:Label runat="server" ID="lblMacchineInteressate" />
</div>
<div style="float: right;">
<asp:TextBox runat="server" ID="txtCercaMacchine" Width="8em" Text="*" AutoPostBack="True" />
</div>
<div>
<asp:ListBox ID="listMacchine" runat="server" AutoPostBack="True" DataSourceID="odsMacchine"
SelectionMode="Multiple" DataTextField="label" DataValueField="value" Height="300px"
Width="450px" BackColor="#ddffee" Font-Size="8pt" OnSelectedIndexChanged="listMacchine_SelectedIndexChanged"
OnDataBound="listMacchine_DataBound" />
<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 style="float: left; clear: right; font-size:8pt;">
<div id="up" style="margin-left: 10px;">
<asp:Label runat="server" ID="lblMostraStati" /><br />
<asp:ListBox ID="listaStati" runat="server" DataSourceID="ods" DataTextField="DescrStato"
AutoPostBack="true" DataValueField="idxStato" OnDataBound="listaStati_DataBound"
SelectionMode="Multiple" OnSelectedIndexChanged="listaStati_SelectedIndexChanged">
</asp:ListBox>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_applicazioneTableAdapters.AnagStatiTableAdapter">
</asp:ObjectDataSource>
</div>
<div style="margin-left: 10px;">
<asp:CheckBox ID="chkShowOnlyMacchFerma" runat="server" Checked="false" AutoPostBack="True"
OnCheckedChanged="chkShowOnlyMacchFerma_CheckedChanged" />
<br />
<asp:CheckBox ID="chkShowMtzPrev" runat="server" Checked="true" AutoPostBack="True"
OnCheckedChanged="chkShowMtzPrev_CheckedChanged" />
</div>
</div>
</div>
<div style="font-size: 8pt; clear: both; text-align: center; vertical-align: top;
padding-top: 20pz; background-color: #E5E2E1">
<table>
<tr>
<td style="width: 300px;">
<h3>
<asp:Label runat="server" ID="lblReportInterventi" />
</h3>
<asp:HyperLink runat="server" ID="hlElencoInterventi_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
</td>
<td style="width: 30px;">
</td>
<td style="width: 300px;">
<h3>
<asp:Label runat="server" ID="lblReportMTBFMTTR" />
</h3>
<asp:HyperLink runat="server" ID="hlMTBF_MTTR_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
</td>
</tr>
<tr>
<td colspan="3">
<br />
<asp:HyperLink runat="server" ID="lnkGuidaPerReport" Target="_blank" />
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
@@ -1,105 +0,0 @@
<%@ Control Language="C#" AutoEventWireup="true"
Inherits="mod_vocabolario" Codebehind="mod_vocabolario.ascx.cs" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<table class="contrDx">
<tr>
<td>
<asp:GridView ID="grView" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
DataKeyNames="Lingua,Lemma" DataSourceID="ods" OnDataBound="grView_DataBound"
OnSelectedIndexChanged="grView_SelectedIndexChanged" OnRowEditing="grView_RowEditing">
<FooterStyle CssClass="ctrFooter"></FooterStyle>
<RowStyle CssClass="ctrRowStyle"></RowStyle>
<Columns>
<asp:TemplateField ShowHeader="False">
<EditItemTemplate>
<asp:ImageButton ID="imgUpdate" runat="server" CausesValidation="False" CommandName="Update"
ToolTip='<%# traduci("Update")%>' ImageUrl='<%# imgPath(SteamWare.tipoImg.conferma, SteamWare.dimImg.small) %>' />
<asp:ImageButton ID="imgCancel" runat="server" CausesValidation="False" CommandName="Cancel"
ToolTip='<%# traduci("Cancel") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.annulla, SteamWare.dimImg.small) %>' />
</EditItemTemplate>
<HeaderTemplate>
<asp:Button ID="btnReset" runat="server" Text='<%# traduci("Reset") %>' OnClick="btnReset_Click" />
</HeaderTemplate>
<ItemTemplate>
<asp:ImageButton ID="imgSelect" runat="server" CausesValidation="False" CommandName="Select"
ToolTip='<%# traduci("Select") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.seleziona, SteamWare.dimImg.small) %>' />
<asp:ImageButton ID="imgEdit" runat="server" CausesValidation="False" CommandName="Edit"
ToolTip='<%# traduci("Edit") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.modifica, SteamWare.dimImg.small) %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Lingua" SortExpression="Lingua">
<EditItemTemplate>
<asp:Label ID="TextBox0" runat="server" Text='<%# Eval("Lingua") %>' />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("Lingua") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Lemma" SortExpression="Lemma">
<EditItemTemplate>
<asp:Label ID="TextBox2" runat="server" Text='<%# Eval("Lemma") %>' />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label3" runat="server" Text='<%# Bind("Lemma") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Traduzione" SortExpression="Traduzione">
<EditItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("Traduzione") %>' Width="500px"
TextMode="MultiLine" Height="8em"></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Bind("Traduzione") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField ShowHeader="False">
<EditItemTemplate>
</EditItemTemplate>
<ItemTemplate>
<asp:ImageButton ID="imgDelete" runat="server" CausesValidation="False" CommandName="Delete"
ToolTip='<%# traduci("Delete") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.elimina, SteamWare.dimImg.small) %>' />
<cc1:ConfirmButtonExtender ID="ConfirmButtonExtender1" runat="server" ConfirmText='<%# traduci("confermaDel")%>'
TargetControlID="imgDelete">
</cc1:ConfirmButtonExtender>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<PagerStyle HorizontalAlign="Center" CssClass="ctrHeaderPager" ForeColor="White"></PagerStyle>
<SelectedRowStyle CssClass="ctrSelRowStyle"></SelectedRowStyle>
<HeaderStyle CssClass="ctrHeaderPager" Font-Bold="True" ForeColor="White"></HeaderStyle>
<EditRowStyle CssClass="ctrEditRowStyle"></EditRowStyle>
<AlternatingRowStyle CssClass="ctrAltRowStyle"></AlternatingRowStyle>
</asp:GridView>
<asp:Label ID="lblNumRec" runat="server" CssClass="txtMini" />
<asp:ObjectDataSource ID="ods" runat="server" SelectMethod="getVocabolario" TypeName="selData"
UpdateMethod="updateLemmaVoc" DeleteMethod="deleteLemmaVoc" OldValuesParameterFormatString="Original_{0}"
FilterExpression="Traduzione LIKE '%{0}%' OR Lemma LIKE '%{0}%' " OnUpdated="ods_Updated">
<UpdateParameters>
<asp:Parameter Name="Traduzione" Type="String" />
<asp:Parameter Name="Original_Lingua" Type="String" />
<asp:Parameter Name="Original_Lemma" Type="String" />
</UpdateParameters>
<FilterParameters>
<asp:SessionParameter DefaultValue="*" Name="ricerca" SessionField="valoreCercato" />
</FilterParameters>
<DeleteParameters>
<asp:Parameter Name="Original_Lingua" Type="String" />
<asp:Parameter Name="Original_Lemma" Type="String" />
</DeleteParameters>
<InsertParameters>
<asp:Parameter Name="Lingua" Type="String" />
<asp:Parameter Name="Lemma" Type="String" />
<asp:Parameter Name="Traduzione" Type="String" />
</InsertParameters>
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Button ID="btnNewLemma" runat="server" OnClick="btnNewLemma_Click" />
<asp:TextBox ID="txtNewLemma" runat="server" />
<cc1:TextBoxWatermarkExtender ID="TBW_newLemma" runat="server" TargetControlID="txtNewLemma" WatermarkCssClass="watermark">
</cc1:TextBoxWatermarkExtender>
</td>
</tr>
</table>
@@ -1,767 +0,0 @@
<%@ Control Language="C#" AutoEventWireup="true" Inherits="mod_dettaglioIntervento"
CodeBehind="mod_dettaglioIntervento.ascx.cs" %>
<%@ Register Src="~/WebUserControls/mod_interventoOpMtz.ascx" TagName="mod_interventoOpMtz"
TagPrefix="uc1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Src="~/WebUserControls/mod_dataOra.ascx" TagName="mod_dataOra" TagPrefix="uc2" %>
<div style="text-align: center; width: 100%;">
<div style="float: left; margin: 2px;">
<asp:LinkButton ID="btnElenco" runat="server" OnClick="btnElenco_Click" />
</div>
<div style="float: right;">
<asp:Button ID="btnCancel" runat="server" Width="150px" OnClick="btnCancel_Click" />
<cc1:ConfirmButtonExtender ID="cbeCancel" runat="server" TargetControlID="btnCancel" />
</div>
<div style="margin: 2px;">
<asp:Button ID="btnCompilaMtz" runat="server" Width="150px" OnClick="btnCompilaMtz_Click" />
<asp:Button ID="btnEditFull" runat="server" Width="150px" OnClick="btnEditFull_Click" />
</div>
</div>
<asp:FormView ID="frmView_default" runat="server" DataKeyNames="numIntMtz" DataSourceID="ods_default"
Width="100%">
<ItemTemplate>
<div id="divReadOnly">
<div id="divUp" style="background-color: #E5E2E1; padding: 10px; border-top: solid 2px orange;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblNumIntMtz" Text='<%# traduci("numIntMtz") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOra" Text='<%# traduci("lblDataOraRich") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOraGuasto" Text='<%# traduci("lblDataOraGuasto") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataLav" Text='<%# traduci("lblDataLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblTurnoLav" Text='<%# traduci("lblTurnoLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblMatr" Text='<%# traduci("lblMatr") %>' Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="numIntMtzLabel" runat="server" Text='<%# Eval("numIntMtz") %>' CssClass="fixedVal"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="richiestaLabel" runat="server" Text='<%# Eval("richiesta") %>' CssClass="fixedVal"
ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="guastoLabel" runat="server" Text='<%# Eval("guasto") %>' CssClass="fixedVal"
ReadOnly="true" Width="110px" />
</td>
<td>
<asp:TextBox ID="dataLavLabel" runat="server" Text='<%# Eval("dataLav","{0:dd/MM/yy}") %>'
CssClass="fixedVal" ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="turnoLavLabel" runat="server" Text='<%# Eval("turnoLav") %>' CssClass="fixedVal"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="matrLabel" runat="server" Text='<%# Eval("matr") %>' CssClass="fixedVal"
ReadOnly="true" Width="105px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblIsFermo" Text='<%# traduci("lblIsFermo") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDettagliGuasto" Text='<%# traduci("lblDettagliGuasto") %>'
Font-Size="X-Small" />
</tr>
<tr>
<td>
<asp:CheckBox ID="isFermoCheckBox" runat="server" Checked='<%# Eval("isFermo") %>'
Enabled="false" />
</td>
<td colspan="5">
<asp:TextBox ID="descrAmbitoGuastoLabel" runat="server" Text='<%# Eval("descrAmbitoGuasto") %>'
CssClass="fixedVal" ReadOnly="true" />
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblImpianto" Text='<%# traduci("lblImpianto") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listImpianti" runat="server" DataSourceID="odsImpianti" DataTextField="label"
DataValueField="value" AutoPostBack="true" Width="400px" BackColor="Silver" Font-Size="8pt"
SelectedValue='<%# Eval("idxImpianto") %>' Enabled="false">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblMacchina" Text='<%# traduci("lblMacchina") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listMacchine" runat="server" AutoPostBack="True" DataSourceID="odsMacchine"
DataTextField="label" DataValueField="value" Width="400px" BackColor="Silver"
Font-Size="8pt" SelectedValue='<%# Eval("idxMacchina") %>' Enabled="false">
</asp:DropDownList>
<%--<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="listImpianti" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="padding-top: 15px;">
<asp:Label runat="server" ID="lblDescrCausale" Text='<%# traduci("lblDescrCausale") %>'
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:TextBox ID="descrCausaleLabel" runat="server" Text='<%# Eval("descrCausale") %>'
CssClass="fixedValLeft" ReadOnly="true" Width="530px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblDescrPriorita" Text='<%# traduci("lblDescrPriorita") %>'
Font-Size="X-Small" />
</td>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrizioneGen" Text='<%# traduci("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr style="vertical-align: top;">
<td>
<asp:TextBox ID="descrPrioritaLabel" runat="server" Text='<%# Eval("descrPriorita") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td colspan="5">
<asp:TextBox ID="descrizioneLabel" runat="server" Text='<%# Eval("descrizione") %>'
CssClass="fixedValLeft" ReadOnly="true" Height="100px" Width="530px" TextMode="MultiLine" />
</td>
</tr>
<tr>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrTipo" Text='<%# traduci("lblDescrTipo") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="descrTipoLabel" runat="server" Text='<%# Eval("descrTipo") %>' CssClass="fixedVal"
ReadOnly="true" />
</td>
</tr>
</table>
</div>
<div id="divDown" style="background-color: #FFFFFF; border-top: solid 2px orange;
padding: 10px;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblPresaInCarico" Text='<%# traduci("lblPresaInCarico") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblInizioIntervento" Text='<%# traduci("lblInizioIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblFineIntervento" Text='<%# traduci("lblFineIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDescrStato" Text='<%# traduci("lblDescrStato") %>'
Font-Size="X-Small" />
</td>
<td style="text-align: center;">
<asp:Label runat="server" ID="lblInterventi" Text='<%# traduci ("lblInterventi") %>'
Font-Size="X-Small"></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="presaInCaricoLabel" runat="server" Text='<%# Eval("presaInCarico") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td>
<asp:TextBox ID="inizioInterventoLabel" runat="server" Text='<%# Eval("inizioIntervento") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td>
<asp:TextBox ID="fineInterventoLabel" runat="server" Text='<%# Eval("fineIntervento") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td>
<asp:DropDownList runat="server" ID="ddlStato" CssClass="fixedVal" SelectedValue='<%# Eval("idxStato") %>'
DataSourceID="odsStato" DataTextField="label" DataValueField="value" Enabled="false">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsStato" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
</asp:ObjectDataSource>
</td>
<td rowspan="3" style="vertical-align: top; padding-left: 30px;">
<uc1:mod_interventoOpMtz ID="mod_interventoOpMtz3" runat="server" vistaModulo="selezione" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrGuasto" Text='<%# traduci ("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblIsPreventivabile" Text='<%# traduci("lblIsPreventivabile") %>'
Font-Size="X-Small" />
<asp:CheckBox ID="isPreventivabileCheckBox" runat="server" Checked='<%# Eval("isPreventivabile") %>'
Enabled="false" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="descrizioneInterventoLabel" runat="server" Text='<%# Eval("descrizioneIntervento") %>'
CssClass="fixedValLeft" ReadOnly="true" Height="100px" Width="500px" TextMode="MultiLine" />
</td>
</tr>
</table>
</div>
</div>
</ItemTemplate>
<EditItemTemplate>
<div id="divEditDefault">
<div style="float: right;">
<asp:Button ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update"
Text='<%# traduci("Update") %>' Width="150px" />
</div>
<div id="divUp" style="background-color: #E5E2E1; padding: 10px; border-top: solid 2px orange;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblNumIntMtz" Text='<%# traduci("numIntMtz") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOra" Text='<%# traduci("lblDataOraRich") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="Label1" Text='<%# traduci("lblDataOraGuasto") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataLav" Text='<%# traduci("lblDataLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblTurnoLav" Text='<%# traduci("lblTurnoLav") %>' Font-Size="X-Small"><span id="ctl00_ctl00_lblTurnoLav" style="font-size:X-Small;">[lblTurnoLav]</span></asp:Label>
</td>
<td>
<asp:Label runat="server" ID="lblMatr" Text='<%# traduci("lblMatr") %>' Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="numIntMtzLabel" runat="server" Text='<%# Eval("numIntMtz") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="richiestaLabel" runat="server" Text='<%# Eval("richiesta") %>' CssClass="textEv_Read"
ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="guastoLabel" runat="server" Text='<%# Eval("guasto") %>' CssClass="textEv_Read"
ReadOnly="true" Width="110px" />
</td>
<td>
<asp:TextBox ID="dataLavLabel" runat="server" Text='<%# Eval("dataLav","{0:dd/MM/yy}") %>'
CssClass="textEv_Read" ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="turnoLavLabel" runat="server" Text='<%# Eval("turnoLav") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="matrLabel" runat="server" Text='<%# Eval("matr") %>' CssClass="textEv_Read"
ReadOnly="true" Width="105px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblIsFermo" Text='<%# traduci("lblIsFermo") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDettagliGuasto" Text='<%# traduci("lblDettagliGuasto") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:CheckBox ID="isFermoCheckBox" runat="server" Checked='<%# Eval("isFermo") %>'
Enabled="false" />
</td>
<td colspan="5">
<asp:TextBox ID="descrAmbitoGuastoLabel" runat="server" Text='<%# Eval("descrAmbitoGuasto") %>'
CssClass="textEv_Read" ReadOnly="true" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblImpianto" Text='<%# traduci("lblImpianto") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listImpianti" runat="server" DataSourceID="odsImpianti" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#deeff7" Font-Size="8pt" SelectedValue='<%# Eval("idxImpianto") %>'
Enabled="false">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblMacchina" Text='<%# traduci("lblMacchina") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listMacchine" runat="server" DataSourceID="odsMacchine" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#deeff7" Font-Size="8pt" SelectedValue='<%# Eval("idxMacchina") %>'
Enabled="false">
</asp:DropDownList>
<%--<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="listImpianti" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="padding-top: 15px;">
<asp:Label runat="server" ID="lblDescrCausale" Text='<%# traduci("lblDescrCausale") %>'
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:TextBox ID="descrCausaleLabel" runat="server" Text='<%# Eval("descrCausale") %>'
CssClass="textEv_ReadLeft" ReadOnly="true" Width="530px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblDescrPriorita" Text='<%# traduci("lblDescrPriorita") %>'
Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrizioneGen" Text='<%# traduci("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr style="vertical-align: top;">
<td>
<asp:TextBox ID="descrPrioritaLabel" runat="server" Text='<%# Eval("descrPriorita") %>'
CssClass="textEv_Read" ReadOnly="true" />
</td>
<td colspan="5">
<asp:TextBox ID="descrizioneLabel" runat="server" Text='<%# Eval("descrizione") %>'
CssClass="textEv_ReadLeft" ReadOnly="true" Height="100px" Width="530px" TextMode="MultiLine" />
</td>
</tr>
<tr>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrTipo" Text='<%# traduci("lblDescrTipo") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="descrTipoLabel" runat="server" Text='<%# Eval("descrTipo") %>' CssClass="textEv_Read"
ReadOnly="true" />
</td>
</tr>
</table>
</div>
<div id="divDown" style="background-color: #FFFFFF; border-top: solid 2px orange;
padding: 10px;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblPresaInCarico" Text='<%# traduci("lblPresaInCarico") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblInizioIntervento" Text='<%# traduci("lblInizioIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblFineIntervento" Text='<%# traduci("lblFineIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDescrStato" Text='<%# traduci("lblDescrStato") %>'
Font-Size="X-Small" />
</td>
<td style="text-align: center;">
<asp:Label runat="server" ID="lblInterventi" Text='<%# traduci ("lblInterventi") %>'
Font-Size="X-Small"></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Eval("presaInCarico") %>' CssClass="textEv_Read"
ReadOnly="true" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra2" runat="server" valore='<%# Bind("inizioIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra3" runat="server" valore='<%# Bind("fineIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<asp:DropDownList runat="server" ID="ddlStato" CssClass="textEv_1" SelectedValue='<%# Bind("idxStato") %>'
DataSourceID="odsStato" DataTextField="label" DataValueField="value">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsStato" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
</asp:ObjectDataSource>
</td>
<td rowspan="3" style="vertical-align: top; padding-left: 30px;">
<uc1:mod_interventoOpMtz ID="mod_interventoOpMtz2" runat="server" vistaModulo="editing" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrGuasto" Text='<%# traduci ("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblIsPreventivabile" Text='<%# traduci("lblIsPreventivabile") %>'
Font-Size="X-Small" />
<asp:CheckBox ID="isPreventivabileCheckBox" runat="server" Checked='<%# Bind("isPreventivabile") %>'
Enabled="true" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="descrizioneInterventoLabel" runat="server" Text='<%# Bind("descrizioneIntervento") %>'
Height="100px" Width="500px" CssClass="textEv_1Left" TextMode="MultiLine" />
</td>
</tr>
</table>
</div>
</div>
</EditItemTemplate>
</asp:FormView>
<asp:FormView ID="frmView_full" runat="server" DataKeyNames="numIntMtz" Visible="False"
DataSourceID="ods_full" Width="100%">
<EditItemTemplate>
<div id="divEditFull">
<div id="btnCancel" style="float: right;">
<asp:Button ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update"
Text='<%# traduci("Update") %>' Width="150px" />
</div>
<div id="divUp" style="background-color: #E5E2E1; padding: 10px; border-top: solid 2px orange;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblNumIntMtz" Text='<%# traduci("numIntMtz") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOra" Text='<%# traduci("lblDataOraRich") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOraGuasto" Text='<%# traduci("lblDataOraGuasto") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataLav" Text='<%# traduci("lblDataLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblTurnoLav" Text='<%# traduci("lblTurnoLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblMatr" Text='<%# traduci("lblMatr") %>' Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="numIntMtzLabel" runat="server" Text='<%# Eval("numIntMtz") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="richiestaLabel" runat="server" Text='<%# Eval("richiesta") %>' CssClass="textEv_Read"
ReadOnly="true" Width="105px" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra4" runat="server" valore='<%# Bind("guasto") %>'
css="textEv_2" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<asp:TextBox ID="dataLavLabel" runat="server" Text='<%# Eval("dataLav","{0:dd/MM/yy}") %>'
CssClass="textEv_Read" ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="turnoLavLabel" runat="server" Text='<%# Eval("turnoLav") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="matrLabel" runat="server" Text='<%# Bind("matr") %>' CssClass="textEv_2"
Width="105px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblIsFermo" Text='<%# traduci("lblIsFermo") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDettagliGuasto" Text='<%# traduci("lblDettagliGuasto") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:CheckBox ID="isFermoCheckBox" runat="server" Checked='<%# Bind("isFermo") %>'
Enabled="true" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblAmbito" />
<asp:DropDownList runat="server" ID="ddlAmbito" Font-Bold="True" Font-Size="10pt"
CssClass="textEv_2" DataSourceID="odsAmbiti" DataTextField="label" DataValueField="value"
SelectedValue='<%# Bind("idxAmbito") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsAmbiti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selAmbitiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblImpianto" Text='<%# traduci("lblImpianto") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listImpianti" runat="server" DataSourceID="odsImpianti" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#cdffcd" Font-Size="8pt" SelectedValue='<%# Bind("idxImpianto") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblMacchina" Text='<%# traduci("lblMacchina") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listMacchine" runat="server" DataSourceID="odsMacchine" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#cdffcd" Font-Size="8pt" SelectedValue='<%# Bind("idxMacchina") %>'>
</asp:DropDownList>
<%--<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="listImpianti" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="padding-top: 15px;">
<asp:Label runat="server" ID="lblDescrCausale" Text='<%# traduci("lblDescrCausale") %>'
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:Label runat="server" ID="lblCausale" Text='<%# Eval("idxCausale") %>' Visible="false" />
<asp:DropDownList ID="listCausali" runat="server" AutoPostBack="True" DataSourceID="odsCausali"
DataTextField="label" DataValueField="value" Width="400px" BackColor="#cdffcd"
Font-Size="8pt" SelectedValue='<%# Bind("idxCausale") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsCausali" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="getByConditioAndCurr" TypeName="GIM_data.DS_utilityTableAdapters.v_selCausaliMacchineTableAdapter" OnDataBinding="odsCausali_DataBinding">
<SelectParameters>
<asp:ControlParameter ControlID="listMacchine" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
<asp:ControlParameter ControlID="lblCausale" DefaultValue="0" Name="currVal" PropertyName="Text" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblDescrPriorita" Text='<%# traduci("lblDescrPriorita") %>'
Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrizioneGen" Text='<%# traduci("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr style="vertical-align: top;">
<td>
<asp:Label runat="server" ID="lblPrior" /><br />
<asp:DropDownList runat="server" ID="ddlPrior" DataSourceID="odsPrior" DataTextField="label"
DataValueField="value" CssClass="textEv_2" SelectedValue='<%# Bind("idxPriorita") %>' />
<asp:ObjectDataSource ID="odsPrior" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selPriorTableAdapter">
</asp:ObjectDataSource>
</td>
<td colspan="5">
<asp:TextBox ID="txtDescrizione" runat="server" Text='<%# Bind("descrizione") %>'
CssClass="textEv_2Left" Height="100px" Width="530px" TextMode="MultiLine" />
<asp:RequiredFieldValidator ID="rfvDescrizione" runat="server" ErrorMessage="Obbligatorio !!!"
ControlToValidate="txtDescrizione" Display="Dynamic"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td colspan="6">
<asp:Label runat="server" ID="lblDescrTipo" Text='<%# traduci("lblDescrTipo") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblTipoGuasto" /><br />
<asp:DropDownList runat="server" ID="ddlTipo" Font-Bold="True" Font-Size="10pt" CssClass="textEv_2"
DataSourceID="odsTipo" DataTextField="label" DataValueField="value" SelectedValue='<%# Bind("idxTipo") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsTipo" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selTipoGuastoTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
</table>
</div>
<div id="divDown" style="background-color: #FFFFFF; border-top: solid 2px orange;
padding: 10px;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblPresaInCarico" Text='<%# traduci("lblPresaInCarico") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblInizioIntervento" Text='<%# traduci("lblInizioIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblFineIntervento" Text='<%# traduci("lblFineIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDescrStato" Text='<%# traduci("lblDescrStato") %>'
Font-Size="X-Small" />
</td>
<td style="text-align: center;">
<asp:Label runat="server" ID="lblInterventi" Text='<%# traduci ("lblInterventi") %>'
Font-Size="X-Small"></asp:Label>
</td>
</tr>
<tr>
<td>
<%--<uc2:mod_dataOra ID="mod_dataOra10" runat="server" valore='<%# Bind("presaInCarico") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />--%>
<asp:TextBox ID="presaInCaricoLabel" runat="server" Text='<%# Bind("presaInCarico") %>'
CssClass="textEv_Read" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra2" runat="server" valore='<%# Bind("inizioIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra3" runat="server" valore='<%# Bind("fineIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<asp:DropDownList runat="server" ID="ddlStato" CssClass="textEv_1" SelectedValue='<%# Bind("idxStato") %>'
DataSourceID="odsStato" DataTextField="label" DataValueField="value">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsStato" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
</asp:ObjectDataSource>
</td>
<td rowspan="3" style="vertical-align: top; padding-left: 30px;">
<uc1:mod_interventoOpMtz ID="mod_interventoOpMtz4" runat="server" vistaModulo="editing" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrGuasto" Text='<%# traduci ("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblIsPreventivabile" Text='<%# traduci("lblIsPreventivabile") %>'
Font-Size="X-Small" />
<asp:CheckBox ID="isPreventivabileCheckBox" runat="server" Checked='<%# Bind("isPreventivabile") %>'
Enabled="true" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="descrizioneInterventoLabel" runat="server" Text='<%# Bind("descrizioneIntervento") %>'
Height="100px" Width="500px" CssClass="textEv_1Left" TextMode="MultiLine" />
</td>
</tr>
</table>
</div>
</div>
</EditItemTemplate>
</asp:FormView>
<asp:ObjectDataSource ID="ods_default" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByIdx" TypeName="GIM_data.DS_applicazioneTableAdapters.v_intervExpTableAdapter"
UpdateMethod="sp_updateIntervento">
<UpdateParameters>
<asp:Parameter Name="Original_numIntMtz" Type="Int32" />
<asp:Parameter Name="idxStato" Type="Int32" />
<asp:Parameter Name="inizioIntervento" Type="DateTime" />
<asp:Parameter Name="fineIntervento" Type="DateTime" />
<asp:Parameter Name="isPreventivabile" Type="Boolean" />
<asp:Parameter Name="descrizioneIntervento" Type="String" />
</UpdateParameters>
<SelectParameters>
<asp:SessionParameter DefaultValue="0" Name="numIntMtz" SessionField="numIntMtz_sel"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
<asp:ObjectDataSource ID="ods_full" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByIdx" TypeName="GIM_data.DS_applicazioneTableAdapters.v_intervExpTableAdapter"
UpdateMethod="sp_updateInterventoFull" OnUpdated="ods_full_Updated">
<UpdateParameters>
<asp:Parameter Name="Original_numIntMtz" Type="Int32" />
<asp:Parameter Name="idxStato" Type="Int32" />
<asp:Parameter Name="inizioIntervento" Type="DateTime" />
<asp:Parameter Name="fineIntervento" Type="DateTime" />
<asp:Parameter Name="isPreventivabile" Type="Boolean" />
<asp:Parameter Name="descrizioneIntervento" Type="String" />
<asp:Parameter Name="matr" Type="String" />
<asp:Parameter Name="guasto" Type="DateTime" />
<asp:Parameter Name="isFermo" Type="Boolean" />
<asp:Parameter Name="idxImpianto" Type="Int32" />
<asp:Parameter Name="idxMacchina" Type="Int32" />
<asp:Parameter Name="idxAmbito" Type="Int32" />
<asp:Parameter Name="idxPriorita" Type="Int32" />
<asp:Parameter Name="descrizione" Type="String" />
<asp:Parameter Name="idxTipo" Type="Int32" />
<asp:Parameter Name="idxCausale" Type="Int32" />
<asp:Parameter Name="presaInCarico" Type="DateTime" />
</UpdateParameters>
<SelectParameters>
<asp:SessionParameter DefaultValue="0" Name="numIntMtz" SessionField="numIntMtz_sel"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
@@ -1,107 +0,0 @@
<%@ Control Language="C#" AutoEventWireup="true" Inherits="mod_reportInterventi"
CodeBehind="mod_reportInterventi.ascx.cs" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Src="~/WebUserControls/mod_periodoAnalisi.ascx" TagName="mod_periodoAnalisi"
TagPrefix="uc1" %>
<div style="background-color: silver;">
<div style="padding: 1px;">
<div style="padding: 4px; background-color: #E5E2E1;">
<div style="background-color: #D5D2D1; clear: both; padding: 4px; text-align: center;
border-style: groove; display: inline-table; height:20px;">
<uc1:mod_periodoAnalisi ID="mod_periodoAnalisi1" runat="server" />
</div>
<div style="width: 100%; background-color: #E5E2E1; clear: both;" class="bg_plus">
<div style="float: left; width: 350px">
<div style="float: left;">
<asp:Label runat="server" ID="lblImpiantiInteressati" />
</div>
<div style="float: right;">
<asp:TextBox runat="server" ID="txtCercaImpianti" Width="8em" Text="*" AutoPostBack="True" />
</div>
<div>
<asp:ListBox ID="listImpianti" runat="server" AutoPostBack="True" DataSourceID="odsImpianti"
SelectionMode="Multiple" DataTextField="label" DataValueField="value" Height="300px"
Width="350px" BackColor="#ddeeff" Font-Size="8pt" OnSelectedIndexChanged="listImpianti_SelectedIndexChanged"
OnDataBound="listImpianti_DataBound" />
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter"
FilterExpression="label LIKE '%{0}%'">
<FilterParameters>
<asp:ControlParameter ControlID="txtCercaImpianti" DefaultValue="*" Type="String"
Name="txtCercaImpianti" />
</FilterParameters>
</asp:ObjectDataSource>
</div>
</div>
<div style="float: left; width: 450px">
<div style="float: left;">
<asp:Label runat="server" ID="lblMacchineInteressate" />
</div>
<div style="float: right;">
<asp:TextBox runat="server" ID="txtCercaMacchine" Width="8em" Text="*" AutoPostBack="True" />
</div>
<div>
<asp:ListBox ID="listMacchine" runat="server" AutoPostBack="True" DataSourceID="odsMacchine"
SelectionMode="Multiple" DataTextField="label" DataValueField="value" Height="300px"
Width="450px" BackColor="#ddffee" Font-Size="8pt" OnSelectedIndexChanged="listMacchine_SelectedIndexChanged"
OnDataBound="listMacchine_DataBound" />
<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 style="float: left; clear: right; font-size:8pt;">
<div id="up" style="margin-left: 10px;">
<asp:Label runat="server" ID="lblMostraStati" /><br />
<asp:ListBox ID="listaStati" runat="server" DataSourceID="ods" DataTextField="DescrStato"
AutoPostBack="true" DataValueField="idxStato" OnDataBound="listaStati_DataBound"
SelectionMode="Multiple" OnSelectedIndexChanged="listaStati_SelectedIndexChanged">
</asp:ListBox>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_applicazioneTableAdapters.AnagStatiTableAdapter">
</asp:ObjectDataSource>
</div>
<div style="margin-left: 10px;">
<asp:CheckBox ID="chkShowOnlyMacchFerma" runat="server" Checked="false" AutoPostBack="True"
OnCheckedChanged="chkShowOnlyMacchFerma_CheckedChanged" />
<br />
<asp:CheckBox ID="chkShowMtzPrev" runat="server" Checked="true" AutoPostBack="True"
OnCheckedChanged="chkShowMtzPrev_CheckedChanged" />
</div>
</div>
</div>
<div style="font-size: 8pt; clear: both; text-align: center; vertical-align: top;
padding-top: 20pz; background-color: #E5E2E1">
<table>
<tr>
<td style="width: 300px;">
<h3>
<asp:Label runat="server" ID="lblReportInterventi" />
</h3>
<asp:HyperLink runat="server" ID="hlElencoInterventi_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
</td>
<td style="width: 30px;">
</td>
<td style="width: 300px;">
<h3>
<asp:Label runat="server" ID="lblReportMTBFMTTR" />
</h3>
<asp:HyperLink runat="server" ID="hlMTBF_MTTR_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
</td>
</tr>
<tr>
<td colspan="3">
<br />
<asp:HyperLink runat="server" ID="lnkGuidaPerReport" Target="_blank" />
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
@@ -1,105 +0,0 @@
<%@ Control Language="C#" AutoEventWireup="true"
Inherits="mod_vocabolario" Codebehind="mod_vocabolario.ascx.cs" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<table class="contrDx">
<tr>
<td>
<asp:GridView ID="grView" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
DataKeyNames="Lingua,Lemma" DataSourceID="ods" OnDataBound="grView_DataBound"
OnSelectedIndexChanged="grView_SelectedIndexChanged" OnRowEditing="grView_RowEditing">
<FooterStyle CssClass="ctrFooter"></FooterStyle>
<RowStyle CssClass="ctrRowStyle"></RowStyle>
<Columns>
<asp:TemplateField ShowHeader="False">
<EditItemTemplate>
<asp:ImageButton ID="imgUpdate" runat="server" CausesValidation="False" CommandName="Update"
ToolTip='<%# traduci("Update")%>' ImageUrl='<%# imgPath(SteamWare.tipoImg.conferma, SteamWare.dimImg.small) %>' />
<asp:ImageButton ID="imgCancel" runat="server" CausesValidation="False" CommandName="Cancel"
ToolTip='<%# traduci("Cancel") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.annulla, SteamWare.dimImg.small) %>' />
</EditItemTemplate>
<HeaderTemplate>
<asp:Button ID="btnReset" runat="server" Text='<%# traduci("Reset") %>' OnClick="btnReset_Click" />
</HeaderTemplate>
<ItemTemplate>
<asp:ImageButton ID="imgSelect" runat="server" CausesValidation="False" CommandName="Select"
ToolTip='<%# traduci("Select") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.seleziona, SteamWare.dimImg.small) %>' />
<asp:ImageButton ID="imgEdit" runat="server" CausesValidation="False" CommandName="Edit"
ToolTip='<%# traduci("Edit") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.modifica, SteamWare.dimImg.small) %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Lingua" SortExpression="Lingua">
<EditItemTemplate>
<asp:Label ID="TextBox0" runat="server" Text='<%# Eval("Lingua") %>' />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("Lingua") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Lemma" SortExpression="Lemma">
<EditItemTemplate>
<asp:Label ID="TextBox2" runat="server" Text='<%# Eval("Lemma") %>' />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label3" runat="server" Text='<%# Bind("Lemma") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Traduzione" SortExpression="Traduzione">
<EditItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("Traduzione") %>' Width="500px"
TextMode="MultiLine" Height="8em"></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Bind("Traduzione") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField ShowHeader="False">
<EditItemTemplate>
</EditItemTemplate>
<ItemTemplate>
<asp:ImageButton ID="imgDelete" runat="server" CausesValidation="False" CommandName="Delete"
ToolTip='<%# traduci("Delete") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.elimina, SteamWare.dimImg.small) %>' />
<cc1:ConfirmButtonExtender ID="ConfirmButtonExtender1" runat="server" ConfirmText='<%# traduci("confermaDel")%>'
TargetControlID="imgDelete">
</cc1:ConfirmButtonExtender>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<PagerStyle HorizontalAlign="Center" CssClass="ctrHeaderPager" ForeColor="White"></PagerStyle>
<SelectedRowStyle CssClass="ctrSelRowStyle"></SelectedRowStyle>
<HeaderStyle CssClass="ctrHeaderPager" Font-Bold="True" ForeColor="White"></HeaderStyle>
<EditRowStyle CssClass="ctrEditRowStyle"></EditRowStyle>
<AlternatingRowStyle CssClass="ctrAltRowStyle"></AlternatingRowStyle>
</asp:GridView>
<asp:Label ID="lblNumRec" runat="server" CssClass="txtMini" />
<asp:ObjectDataSource ID="ods" runat="server" SelectMethod="getVocabolario" TypeName="selData"
UpdateMethod="updateLemmaVoc" DeleteMethod="deleteLemmaVoc" OldValuesParameterFormatString="Original_{0}"
FilterExpression="Traduzione LIKE '%{0}%' OR Lemma LIKE '%{0}%' " OnUpdated="ods_Updated">
<UpdateParameters>
<asp:Parameter Name="Traduzione" Type="String" />
<asp:Parameter Name="Original_Lingua" Type="String" />
<asp:Parameter Name="Original_Lemma" Type="String" />
</UpdateParameters>
<FilterParameters>
<asp:SessionParameter DefaultValue="*" Name="ricerca" SessionField="valoreCercato" />
</FilterParameters>
<DeleteParameters>
<asp:Parameter Name="Original_Lingua" Type="String" />
<asp:Parameter Name="Original_Lemma" Type="String" />
</DeleteParameters>
<InsertParameters>
<asp:Parameter Name="Lingua" Type="String" />
<asp:Parameter Name="Lemma" Type="String" />
<asp:Parameter Name="Traduzione" Type="String" />
</InsertParameters>
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Button ID="btnNewLemma" runat="server" OnClick="btnNewLemma_Click" />
<asp:TextBox ID="txtNewLemma" runat="server" />
<cc1:TextBoxWatermarkExtender ID="TBW_newLemma" runat="server" TargetControlID="txtNewLemma" WatermarkCssClass="watermark">
</cc1:TextBoxWatermarkExtender>
</td>
</tr>
</table>
@@ -1,237 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<!--<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<!--<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />-->
<!--<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<!--<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<!--<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<system.web>
<identity />
<authentication mode="Windows" />
<!--Versione USA!!!
<globalization culture="en-US" uiCulture="en-US" enableClientBasedCulture="false" /> -->
<!--Versione Ita-->
<globalization culture="it-IT" uiCulture="it-IT" enableClientBasedCulture="false" />
<!--Versione AUTO!!!
<globalization culture="auto" uiCulture="auto" enableClientBasedCulture="true" />-->
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<!--<add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI" assembly="Microsoft.Web.Preview" />
<add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI.Controls" assembly="Microsoft.Web.Preview" />-->
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
</controls>
</pages>
<compilation>
<assemblies>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="Microsoft.ReportViewer.WinForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
<!--<buildProviders>
<add extension="*.asbx" type="Microsoft.Web.Preview.Services.BridgeBuildProvider" />
</buildProviders>-->
</compilation>
<httpHandlers>
<remove verb="*" path="*.asmx" />
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
<add verb="GET,HEAD,POST" path="*.asbx" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</httpModules>
<customErrors mode="Off" />
<!--<customErrors mode="RemoteOnly" defaultRedirect="unauthorized.aspx" />-->
<httpRuntime maxRequestLength="102400" />
<!-- qui sopra configurato x gestire allegati fino a 100 mb...
<httpRuntime
maxRequestLength="102400"
executionTimeout="1200"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100" />
-->
</system.web>
<!--<system.web.extensions>
<scripting>
<scriptResourceHandler enableCompression="true" enableCaching="true" />
</scripting>
</system.web.extensions>-->
<appSettings>
<add key="CodModulo" value="GIM" />
<add key="dominio" value="WINLAB" />
<add key="intUpdatePagina_ms" value="60000" />
<add key="_righeDataGrid" value="30" />
<add key="_righeDataGridAnagr" value="20" />
<add key="_righeDataGridLong" value="40" />
<add key="_righeDataGridMed" value="15" />
<add key="_righeDataGridShort" value="10" />
<add key="_fromEmail" value="info@steamware.net" />
<add key="_logDir" value="./logs/" />
<add key="_logLevel" value="6" />
<add key="doShrinkFolder" value="true" />
<add key="_logMaxMb" value="30" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="chLang.aspx#jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx" />
<add key="_commonPages" value="menu.aspx" />
<add key="_titoloPagina" value="GIM" />
<add key="titleApp" value="GIM_titleApp" />
<add key="welcomeApp" value="GIM_welcomeApp" />
<add key="appName" value="GIM" />
<add key="mainRev" value="1.3" />
<add key="minRev" value="242" />
<add key="copyRight" value="SteamWare © 2006" />
<add key="defaultApp" value="GIM_Appl" />
<add key="defaultTitle" value="GIM_ShortWelcome" />
<add key="defaultBody" value="GIM_LongWelcome" />
<add key="_adminEmail" value="info@steamware.net" />
<add key="exportFormat1" value="./ExportPdf.aspx?tipo={0}" />
<add key="exportFormat2" value="../ExportPdf.aspx?tipo={0}&amp;idx={1}" />
<add key="exportFormat3" value="./ExportPdf.aspx?tipo={0}&amp;inizio={1}&amp;fine={2}&amp;username={3}" />
<add key="_smtpCli" value="localhost" />
<add key="echoLemmi" value="false" />
<add key="allowDelete" value="true" />
<!--stringhe connessione-->
<add key="PermessiConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="UtenteCdcConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="VocabolarioConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="AppConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="TestAppConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<!--<add key="PermessiConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="UtenteCdcConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaAnag;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="VocabolarioConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaVoc;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="AppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="TestAppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM_test;Persist Security Info=True;User id=sa;Password=ViaDante16!" />-->
<!--valori default-->
<add key="defaultMatr" value="0000" />
<add key="defaultCodImp" value="0000" />
<add key="defaultCodMacc" value="0000" />
<!--gestione turni-->
<add key="shiftTurno" value="6" />
<add key="durataTurno" value="8" />
<add key="defaultDelay" value="15" />
<!-- Configurazione parte db -->
<add key="_sqlDir" value="sql" />
<add key="dbUpdateEnabled" value="true" />
<add key="dbAuthName" value="Somas_Anagrafica" />
<add key="dbVocabName" value="SteamWare_Vocabolario" />
<add key="dbAppName" value="GIM" />
<add key="dbTest" value="GIM_test" />
<add key="dbAuthVers" value="1" />
<add key="dbVocabVers" value="1" />
<add key="dbAppVers" value="5" />
<add key="dbAppCreaEnab" value="false" />
<add key="sqlFileFormat" value="{0}_{1:0000}.sql" />
<add key="sqlScriptDir" value="sql" />
<add key="appFilePre" value="GIM" />
<!-- Gestione Auto-enroll-->
<add key="autoEnrollEnabled" value="false" />
<add key="autoEnrollCdc" value="X999" />
<add key="autoEnrollModulo" value="GIM" />
<add key="autoEnrollFunzione" value="GIM_U" />
<!--gestione stampanti-->
<add key="stampanteRichiesteMtz" value="\\pc-manutenzione\HP-manut" />
<!--template campi nuovi-->
<add key="newAmbitoGuasto" value="-- [NUOVO] non definito --" />
<add key="newCognome" value="-- [NUOVO] Cognome --" />
<add key="newNome" value="-- [NUOVO] Nome --" />
<add key="newCalFF" value="-- [NUOVO] non definito --" />
<add key="newImpianto" value="-- [NUOVO] Nome Impianto non definito --" />
<add key="newTipoGuasto" value="-- [NUOVO] non definito --" />
<add key="newMacchina" value="-- [NUOVA] non definita --" />
<add key="newModello" value="-- MODELLO --" />
<add key="newFamMacchina" value="-- [NUOVA] non definita --" />
<add key="newCausale" value="-- [NUOVA] non definita --" />
<add key="newPriorita" value="-- [NUOVA] non definita --" />
<!--gestione formati data-ora-->
<add key="culture" value="it-IT" />
<add key="ddMMyy" value="dd/MM/yy" />
<add key="ddMMyyyy" value="dd/MM/yyyy" />
<add key="ddMMyyyyHHmm" value="dd/MM/yyyy HH:mm" />
<add key="appAdminEmail" value="astolfi@alumat.it, luzzana@alumat.it" />
</appSettings>
<connectionStrings>
<add name="GIMConnectionString" connectionString="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient" />
<add name="GIM_Data.Properties.Settings.GIMConnectionString" connectionString="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient" />
<!--<add name="GIMConnectionString" connectionString="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User ID=sa;Password=ViaDante16!" providerName="System.Data.SqlClient" />-->
</connectionStrings>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules>
<remove name="ScriptModule" />
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</modules>
<handlers>
<remove name="ScriptHandlerFactory" />
<remove name="ScriptHandlerFactoryAppServices" />
<remove name="ScriptResource" />
<remove name="WebServiceHandlerFactory-Integrated" />
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ASBXHandler" verb="GET,HEAD,POST" path="*.asbx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.Enterprise.ASPNetHelper" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<codeBase version="8.0.0.0" href="file:///C:/Program%20Files/Microsoft%20Visual%20Studio%208/Common7/IDE/PrivateAssemblies/Microsoft.VisualStudio.Enterprise.ASPNetHelper.DLL" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
<!--<dependentAssembly>
<assemblyIdentity name="ICSharpCode.SharpZipLib" publicKeyToken="1b03e6acf1164f73" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-0.86.0.518" newVersion="0.86.0.518" />
</dependentAssembly>-->
</assemblyBinding>
</runtime>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="WarnAsError" value="false" />
</compiler>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="OptionInfer" value="true" />
<providerOption name="WarnAsError" value="false" />
</compiler>
</compilers>
</system.codedom>
</configuration>
@@ -1,237 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<!--<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<!--<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />-->
<!--<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<!--<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<!--<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<system.web>
<identity />
<authentication mode="Windows" />
<!--Versione USA!!!
<globalization culture="en-US" uiCulture="en-US" enableClientBasedCulture="false" /> -->
<!--Versione Ita-->
<globalization culture="it-IT" uiCulture="it-IT" enableClientBasedCulture="false" />
<!--Versione AUTO!!!
<globalization culture="auto" uiCulture="auto" enableClientBasedCulture="true" />-->
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<!--<add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI" assembly="Microsoft.Web.Preview" />
<add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI.Controls" assembly="Microsoft.Web.Preview" />-->
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
</controls>
</pages>
<compilation>
<assemblies>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="Microsoft.ReportViewer.WinForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
<!--<buildProviders>
<add extension="*.asbx" type="Microsoft.Web.Preview.Services.BridgeBuildProvider" />
</buildProviders>-->
</compilation>
<httpHandlers>
<remove verb="*" path="*.asmx" />
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
<add verb="GET,HEAD,POST" path="*.asbx" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</httpModules>
<customErrors mode="Off" />
<!--<customErrors mode="RemoteOnly" defaultRedirect="unauthorized.aspx" />-->
<httpRuntime maxRequestLength="102400" />
<!-- qui sopra configurato x gestire allegati fino a 100 mb...
<httpRuntime
maxRequestLength="102400"
executionTimeout="1200"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100" />
-->
</system.web>
<!--<system.web.extensions>
<scripting>
<scriptResourceHandler enableCompression="true" enableCaching="true" />
</scripting>
</system.web.extensions>-->
<appSettings>
<add key="CodModulo" value="GIM" />
<add key="dominio" value="WINLAB" />
<add key="intUpdatePagina_ms" value="60000" />
<add key="_righeDataGrid" value="30" />
<add key="_righeDataGridAnagr" value="20" />
<add key="_righeDataGridLong" value="40" />
<add key="_righeDataGridMed" value="15" />
<add key="_righeDataGridShort" value="10" />
<add key="_fromEmail" value="info@steamware.net" />
<add key="_logDir" value="./logs/" />
<add key="_logLevel" value="6" />
<add key="doShrinkFolder" value="true" />
<add key="_logMaxMb" value="30" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="chLang.aspx#jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx" />
<add key="_commonPages" value="menu.aspx" />
<add key="_titoloPagina" value="GIM" />
<add key="titleApp" value="GIM_titleApp" />
<add key="welcomeApp" value="GIM_welcomeApp" />
<add key="appName" value="GIM" />
<add key="mainRev" value="1.3" />
<add key="minRev" value="242" />
<add key="copyRight" value="SteamWare © 2006" />
<add key="defaultApp" value="GIM_Appl" />
<add key="defaultTitle" value="GIM_ShortWelcome" />
<add key="defaultBody" value="GIM_LongWelcome" />
<add key="_adminEmail" value="info@steamware.net" />
<add key="exportFormat1" value="./ExportPdf.aspx?tipo={0}" />
<add key="exportFormat2" value="../ExportPdf.aspx?tipo={0}&amp;idx={1}" />
<add key="exportFormat3" value="./ExportPdf.aspx?tipo={0}&amp;inizio={1}&amp;fine={2}&amp;username={3}" />
<add key="_smtpCli" value="localhost" />
<add key="echoLemmi" value="false" />
<add key="allowDelete" value="true" />
<!--stringhe connessione-->
<add key="PermessiConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="UtenteCdcConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="VocabolarioConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="AppConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="TestAppConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<!--<add key="PermessiConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="UtenteCdcConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaAnag;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="VocabolarioConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaVoc;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="AppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="TestAppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM_test;Persist Security Info=True;User id=sa;Password=ViaDante16!" />-->
<!--valori default-->
<add key="defaultMatr" value="0000" />
<add key="defaultCodImp" value="0000" />
<add key="defaultCodMacc" value="0000" />
<!--gestione turni-->
<add key="shiftTurno" value="6" />
<add key="durataTurno" value="8" />
<add key="defaultDelay" value="15" />
<!-- Configurazione parte db -->
<add key="_sqlDir" value="sql" />
<add key="dbUpdateEnabled" value="true" />
<add key="dbAuthName" value="Somas_Anagrafica" />
<add key="dbVocabName" value="SteamWare_Vocabolario" />
<add key="dbAppName" value="GIM" />
<add key="dbTest" value="GIM_test" />
<add key="dbAuthVers" value="1" />
<add key="dbVocabVers" value="1" />
<add key="dbAppVers" value="5" />
<add key="dbAppCreaEnab" value="false" />
<add key="sqlFileFormat" value="{0}_{1:0000}.sql" />
<add key="sqlScriptDir" value="sql" />
<add key="appFilePre" value="GIM" />
<!-- Gestione Auto-enroll-->
<add key="autoEnrollEnabled" value="false" />
<add key="autoEnrollCdc" value="X999" />
<add key="autoEnrollModulo" value="GIM" />
<add key="autoEnrollFunzione" value="GIM_U" />
<!--gestione stampanti-->
<add key="stampanteRichiesteMtz" value="\\pc-manutenzione\HP-manut" />
<!--template campi nuovi-->
<add key="newAmbitoGuasto" value="-- [NUOVO] non definito --" />
<add key="newCognome" value="-- [NUOVO] Cognome --" />
<add key="newNome" value="-- [NUOVO] Nome --" />
<add key="newCalFF" value="-- [NUOVO] non definito --" />
<add key="newImpianto" value="-- [NUOVO] Nome Impianto non definito --" />
<add key="newTipoGuasto" value="-- [NUOVO] non definito --" />
<add key="newMacchina" value="-- [NUOVA] non definita --" />
<add key="newModello" value="-- MODELLO --" />
<add key="newFamMacchina" value="-- [NUOVA] non definita --" />
<add key="newCausale" value="-- [NUOVA] non definita --" />
<add key="newPriorita" value="-- [NUOVA] non definita --" />
<!--gestione formati data-ora-->
<add key="culture" value="it-IT" />
<add key="ddMMyy" value="dd/MM/yy" />
<add key="ddMMyyyy" value="dd/MM/yyyy" />
<add key="ddMMyyyyHHmm" value="dd/MM/yyyy HH:mm" />
<add key="appAdminEmail" value="astolfi@alumat.it, luzzana@alumat.it" />
</appSettings>
<connectionStrings>
<add name="GIMConnectionString" connectionString="$(ReplacableToken_GIMConnectionString-Web.config Connection String_0)" providerName="System.Data.SqlClient" />
<add name="GIM_Data.Properties.Settings.GIMConnectionString" connectionString="$(ReplacableToken_GIM_Data.Properties.Settings.GIMConnectionString-Web.config Connection String_0)" providerName="System.Data.SqlClient" />
<!--<add name="GIMConnectionString" connectionString="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User ID=sa;Password=ViaDante16!" providerName="System.Data.SqlClient" />-->
</connectionStrings>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules>
<remove name="ScriptModule" />
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</modules>
<handlers>
<remove name="ScriptHandlerFactory" />
<remove name="ScriptHandlerFactoryAppServices" />
<remove name="ScriptResource" />
<remove name="WebServiceHandlerFactory-Integrated" />
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ASBXHandler" verb="GET,HEAD,POST" path="*.asbx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.Enterprise.ASPNetHelper" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<codeBase version="8.0.0.0" href="file:///C:/Program%20Files/Microsoft%20Visual%20Studio%208/Common7/IDE/PrivateAssemblies/Microsoft.VisualStudio.Enterprise.ASPNetHelper.DLL" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
<!--<dependentAssembly>
<assemblyIdentity name="ICSharpCode.SharpZipLib" publicKeyToken="1b03e6acf1164f73" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-0.86.0.518" newVersion="0.86.0.518" />
</dependentAssembly>-->
</assemblyBinding>
</runtime>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="WarnAsError" value="false" />
</compiler>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="OptionInfer" value="true" />
<providerOption name="WarnAsError" value="false" />
</compiler>
</compilers>
</system.codedom>
</configuration>
Binary file not shown.
@@ -1,767 +0,0 @@
<%@ Control Language="C#" AutoEventWireup="true" Inherits="mod_dettaglioIntervento"
CodeBehind="mod_dettaglioIntervento.ascx.cs" %>
<%@ Register Src="~/WebUserControls/mod_interventoOpMtz.ascx" TagName="mod_interventoOpMtz"
TagPrefix="uc1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Src="~/WebUserControls/mod_dataOra.ascx" TagName="mod_dataOra" TagPrefix="uc2" %>
<div style="text-align: center; width: 100%;">
<div style="float: left; margin: 2px;">
<asp:LinkButton ID="btnElenco" runat="server" OnClick="btnElenco_Click" />
</div>
<div style="float: right;">
<asp:Button ID="btnCancel" runat="server" Width="150px" OnClick="btnCancel_Click" />
<cc1:ConfirmButtonExtender ID="cbeCancel" runat="server" TargetControlID="btnCancel" />
</div>
<div style="margin: 2px;">
<asp:Button ID="btnCompilaMtz" runat="server" Width="150px" OnClick="btnCompilaMtz_Click" />
<asp:Button ID="btnEditFull" runat="server" Width="150px" OnClick="btnEditFull_Click" />
</div>
</div>
<asp:FormView ID="frmView_default" runat="server" DataKeyNames="numIntMtz" DataSourceID="ods_default"
Width="100%">
<ItemTemplate>
<div id="divReadOnly">
<div id="divUp" style="background-color: #E5E2E1; padding: 10px; border-top: solid 2px orange;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblNumIntMtz" Text='<%# traduci("numIntMtz") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOra" Text='<%# traduci("lblDataOraRich") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOraGuasto" Text='<%# traduci("lblDataOraGuasto") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataLav" Text='<%# traduci("lblDataLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblTurnoLav" Text='<%# traduci("lblTurnoLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblMatr" Text='<%# traduci("lblMatr") %>' Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="numIntMtzLabel" runat="server" Text='<%# Eval("numIntMtz") %>' CssClass="fixedVal"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="richiestaLabel" runat="server" Text='<%# Eval("richiesta") %>' CssClass="fixedVal"
ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="guastoLabel" runat="server" Text='<%# Eval("guasto") %>' CssClass="fixedVal"
ReadOnly="true" Width="110px" />
</td>
<td>
<asp:TextBox ID="dataLavLabel" runat="server" Text='<%# Eval("dataLav","{0:dd/MM/yy}") %>'
CssClass="fixedVal" ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="turnoLavLabel" runat="server" Text='<%# Eval("turnoLav") %>' CssClass="fixedVal"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="matrLabel" runat="server" Text='<%# Eval("matr") %>' CssClass="fixedVal"
ReadOnly="true" Width="105px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblIsFermo" Text='<%# traduci("lblIsFermo") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDettagliGuasto" Text='<%# traduci("lblDettagliGuasto") %>'
Font-Size="X-Small" />
</tr>
<tr>
<td>
<asp:CheckBox ID="isFermoCheckBox" runat="server" Checked='<%# Eval("isFermo") %>'
Enabled="false" />
</td>
<td colspan="5">
<asp:TextBox ID="descrAmbitoGuastoLabel" runat="server" Text='<%# Eval("descrAmbitoGuasto") %>'
CssClass="fixedVal" ReadOnly="true" />
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblImpianto" Text='<%# traduci("lblImpianto") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listImpianti" runat="server" DataSourceID="odsImpianti" DataTextField="label"
DataValueField="value" AutoPostBack="true" Width="400px" BackColor="Silver" Font-Size="8pt"
SelectedValue='<%# Eval("idxImpianto") %>' Enabled="false">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblMacchina" Text='<%# traduci("lblMacchina") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listMacchine" runat="server" AutoPostBack="True" DataSourceID="odsMacchine"
DataTextField="label" DataValueField="value" Width="400px" BackColor="Silver"
Font-Size="8pt" SelectedValue='<%# Eval("idxMacchina") %>' Enabled="false">
</asp:DropDownList>
<%--<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="listImpianti" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="padding-top: 15px;">
<asp:Label runat="server" ID="lblDescrCausale" Text='<%# traduci("lblDescrCausale") %>'
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:TextBox ID="descrCausaleLabel" runat="server" Text='<%# Eval("descrCausale") %>'
CssClass="fixedValLeft" ReadOnly="true" Width="530px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblDescrPriorita" Text='<%# traduci("lblDescrPriorita") %>'
Font-Size="X-Small" />
</td>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrizioneGen" Text='<%# traduci("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr style="vertical-align: top;">
<td>
<asp:TextBox ID="descrPrioritaLabel" runat="server" Text='<%# Eval("descrPriorita") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td colspan="5">
<asp:TextBox ID="descrizioneLabel" runat="server" Text='<%# Eval("descrizione") %>'
CssClass="fixedValLeft" ReadOnly="true" Height="100px" Width="530px" TextMode="MultiLine" />
</td>
</tr>
<tr>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrTipo" Text='<%# traduci("lblDescrTipo") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="descrTipoLabel" runat="server" Text='<%# Eval("descrTipo") %>' CssClass="fixedVal"
ReadOnly="true" />
</td>
</tr>
</table>
</div>
<div id="divDown" style="background-color: #FFFFFF; border-top: solid 2px orange;
padding: 10px;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblPresaInCarico" Text='<%# traduci("lblPresaInCarico") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblInizioIntervento" Text='<%# traduci("lblInizioIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblFineIntervento" Text='<%# traduci("lblFineIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDescrStato" Text='<%# traduci("lblDescrStato") %>'
Font-Size="X-Small" />
</td>
<td style="text-align: center;">
<asp:Label runat="server" ID="lblInterventi" Text='<%# traduci ("lblInterventi") %>'
Font-Size="X-Small"></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="presaInCaricoLabel" runat="server" Text='<%# Eval("presaInCarico") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td>
<asp:TextBox ID="inizioInterventoLabel" runat="server" Text='<%# Eval("inizioIntervento") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td>
<asp:TextBox ID="fineInterventoLabel" runat="server" Text='<%# Eval("fineIntervento") %>'
CssClass="fixedVal" ReadOnly="true" />
</td>
<td>
<asp:DropDownList runat="server" ID="ddlStato" CssClass="fixedVal" SelectedValue='<%# Eval("idxStato") %>'
DataSourceID="odsStato" DataTextField="label" DataValueField="value" Enabled="false">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsStato" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
</asp:ObjectDataSource>
</td>
<td rowspan="3" style="vertical-align: top; padding-left: 30px;">
<uc1:mod_interventoOpMtz ID="mod_interventoOpMtz3" runat="server" vistaModulo="selezione" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrGuasto" Text='<%# traduci ("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblIsPreventivabile" Text='<%# traduci("lblIsPreventivabile") %>'
Font-Size="X-Small" />
<asp:CheckBox ID="isPreventivabileCheckBox" runat="server" Checked='<%# Eval("isPreventivabile") %>'
Enabled="false" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="descrizioneInterventoLabel" runat="server" Text='<%# Eval("descrizioneIntervento") %>'
CssClass="fixedValLeft" ReadOnly="true" Height="100px" Width="500px" TextMode="MultiLine" />
</td>
</tr>
</table>
</div>
</div>
</ItemTemplate>
<EditItemTemplate>
<div id="divEditDefault">
<div style="float: right;">
<asp:Button ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update"
Text='<%# traduci("Update") %>' Width="150px" />
</div>
<div id="divUp" style="background-color: #E5E2E1; padding: 10px; border-top: solid 2px orange;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblNumIntMtz" Text='<%# traduci("numIntMtz") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOra" Text='<%# traduci("lblDataOraRich") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="Label1" Text='<%# traduci("lblDataOraGuasto") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataLav" Text='<%# traduci("lblDataLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblTurnoLav" Text='<%# traduci("lblTurnoLav") %>' Font-Size="X-Small"><span id="ctl00_ctl00_lblTurnoLav" style="font-size:X-Small;">[lblTurnoLav]</span></asp:Label>
</td>
<td>
<asp:Label runat="server" ID="lblMatr" Text='<%# traduci("lblMatr") %>' Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="numIntMtzLabel" runat="server" Text='<%# Eval("numIntMtz") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="richiestaLabel" runat="server" Text='<%# Eval("richiesta") %>' CssClass="textEv_Read"
ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="guastoLabel" runat="server" Text='<%# Eval("guasto") %>' CssClass="textEv_Read"
ReadOnly="true" Width="110px" />
</td>
<td>
<asp:TextBox ID="dataLavLabel" runat="server" Text='<%# Eval("dataLav","{0:dd/MM/yy}") %>'
CssClass="textEv_Read" ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="turnoLavLabel" runat="server" Text='<%# Eval("turnoLav") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="matrLabel" runat="server" Text='<%# Eval("matr") %>' CssClass="textEv_Read"
ReadOnly="true" Width="105px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblIsFermo" Text='<%# traduci("lblIsFermo") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDettagliGuasto" Text='<%# traduci("lblDettagliGuasto") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:CheckBox ID="isFermoCheckBox" runat="server" Checked='<%# Eval("isFermo") %>'
Enabled="false" />
</td>
<td colspan="5">
<asp:TextBox ID="descrAmbitoGuastoLabel" runat="server" Text='<%# Eval("descrAmbitoGuasto") %>'
CssClass="textEv_Read" ReadOnly="true" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblImpianto" Text='<%# traduci("lblImpianto") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listImpianti" runat="server" DataSourceID="odsImpianti" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#deeff7" Font-Size="8pt" SelectedValue='<%# Eval("idxImpianto") %>'
Enabled="false">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblMacchina" Text='<%# traduci("lblMacchina") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listMacchine" runat="server" DataSourceID="odsMacchine" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#deeff7" Font-Size="8pt" SelectedValue='<%# Eval("idxMacchina") %>'
Enabled="false">
</asp:DropDownList>
<%--<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="listImpianti" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="padding-top: 15px;">
<asp:Label runat="server" ID="lblDescrCausale" Text='<%# traduci("lblDescrCausale") %>'
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:TextBox ID="descrCausaleLabel" runat="server" Text='<%# Eval("descrCausale") %>'
CssClass="textEv_ReadLeft" ReadOnly="true" Width="530px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblDescrPriorita" Text='<%# traduci("lblDescrPriorita") %>'
Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrizioneGen" Text='<%# traduci("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr style="vertical-align: top;">
<td>
<asp:TextBox ID="descrPrioritaLabel" runat="server" Text='<%# Eval("descrPriorita") %>'
CssClass="textEv_Read" ReadOnly="true" />
</td>
<td colspan="5">
<asp:TextBox ID="descrizioneLabel" runat="server" Text='<%# Eval("descrizione") %>'
CssClass="textEv_ReadLeft" ReadOnly="true" Height="100px" Width="530px" TextMode="MultiLine" />
</td>
</tr>
<tr>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrTipo" Text='<%# traduci("lblDescrTipo") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="descrTipoLabel" runat="server" Text='<%# Eval("descrTipo") %>' CssClass="textEv_Read"
ReadOnly="true" />
</td>
</tr>
</table>
</div>
<div id="divDown" style="background-color: #FFFFFF; border-top: solid 2px orange;
padding: 10px;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblPresaInCarico" Text='<%# traduci("lblPresaInCarico") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblInizioIntervento" Text='<%# traduci("lblInizioIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblFineIntervento" Text='<%# traduci("lblFineIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDescrStato" Text='<%# traduci("lblDescrStato") %>'
Font-Size="X-Small" />
</td>
<td style="text-align: center;">
<asp:Label runat="server" ID="lblInterventi" Text='<%# traduci ("lblInterventi") %>'
Font-Size="X-Small"></asp:Label>
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Eval("presaInCarico") %>' CssClass="textEv_Read"
ReadOnly="true" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra2" runat="server" valore='<%# Bind("inizioIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra3" runat="server" valore='<%# Bind("fineIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<asp:DropDownList runat="server" ID="ddlStato" CssClass="textEv_1" SelectedValue='<%# Bind("idxStato") %>'
DataSourceID="odsStato" DataTextField="label" DataValueField="value">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsStato" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
</asp:ObjectDataSource>
</td>
<td rowspan="3" style="vertical-align: top; padding-left: 30px;">
<uc1:mod_interventoOpMtz ID="mod_interventoOpMtz2" runat="server" vistaModulo="editing" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrGuasto" Text='<%# traduci ("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblIsPreventivabile" Text='<%# traduci("lblIsPreventivabile") %>'
Font-Size="X-Small" />
<asp:CheckBox ID="isPreventivabileCheckBox" runat="server" Checked='<%# Bind("isPreventivabile") %>'
Enabled="true" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="descrizioneInterventoLabel" runat="server" Text='<%# Bind("descrizioneIntervento") %>'
Height="100px" Width="500px" CssClass="textEv_1Left" TextMode="MultiLine" />
</td>
</tr>
</table>
</div>
</div>
</EditItemTemplate>
</asp:FormView>
<asp:FormView ID="frmView_full" runat="server" DataKeyNames="numIntMtz" Visible="False"
DataSourceID="ods_full" Width="100%">
<EditItemTemplate>
<div id="divEditFull">
<div id="btnCancel" style="float: right;">
<asp:Button ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update"
Text='<%# traduci("Update") %>' Width="150px" />
</div>
<div id="divUp" style="background-color: #E5E2E1; padding: 10px; border-top: solid 2px orange;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblNumIntMtz" Text='<%# traduci("numIntMtz") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOra" Text='<%# traduci("lblDataOraRich") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataOraGuasto" Text='<%# traduci("lblDataOraGuasto") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDataLav" Text='<%# traduci("lblDataLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblTurnoLav" Text='<%# traduci("lblTurnoLav") %>' Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblMatr" Text='<%# traduci("lblMatr") %>' Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:TextBox ID="numIntMtzLabel" runat="server" Text='<%# Eval("numIntMtz") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="richiestaLabel" runat="server" Text='<%# Eval("richiesta") %>' CssClass="textEv_Read"
ReadOnly="true" Width="105px" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra4" runat="server" valore='<%# Bind("guasto") %>'
css="textEv_2" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<asp:TextBox ID="dataLavLabel" runat="server" Text='<%# Eval("dataLav","{0:dd/MM/yy}") %>'
CssClass="textEv_Read" ReadOnly="true" Width="105px" />
</td>
<td>
<asp:TextBox ID="turnoLavLabel" runat="server" Text='<%# Eval("turnoLav") %>' CssClass="textEv_Read"
ReadOnly="true" Width="30px" />
</td>
<td>
<asp:TextBox ID="matrLabel" runat="server" Text='<%# Bind("matr") %>' CssClass="textEv_2"
Width="105px" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblIsFermo" Text='<%# traduci("lblIsFermo") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDettagliGuasto" Text='<%# traduci("lblDettagliGuasto") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:CheckBox ID="isFermoCheckBox" runat="server" Checked='<%# Bind("isFermo") %>'
Enabled="true" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblAmbito" />
<asp:DropDownList runat="server" ID="ddlAmbito" Font-Bold="True" Font-Size="10pt"
CssClass="textEv_2" DataSourceID="odsAmbiti" DataTextField="label" DataValueField="value"
SelectedValue='<%# Bind("idxAmbito") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsAmbiti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selAmbitiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblImpianto" Text='<%# traduci("lblImpianto") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listImpianti" runat="server" DataSourceID="odsImpianti" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#cdffcd" Font-Size="8pt" SelectedValue='<%# Bind("idxImpianto") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getImpiantiValidi" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblMacchina" Text='<%# traduci("lblMacchina") %>' Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:DropDownList ID="listMacchine" runat="server" DataSourceID="odsMacchine" DataTextField="label"
DataValueField="value" Width="400px" BackColor="#cdffcd" Font-Size="8pt" SelectedValue='<%# Bind("idxMacchina") %>'>
</asp:DropDownList>
<%--<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByConditio" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="listImpianti" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>--%>
<asp:ObjectDataSource ID="odsMacchine" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getData" TypeName="GIM_data.DS_utilityTableAdapters.v_selMacchineTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td style="padding-top: 15px;">
<asp:Label runat="server" ID="lblDescrCausale" Text='<%# traduci("lblDescrCausale") %>'
Font-Size="X-Small" />
</td>
<td colspan="5" style="padding-top: 15px;">
<asp:Label runat="server" ID="lblCausale" Text='<%# Eval("idxCausale") %>' Visible="false" />
<asp:DropDownList ID="listCausali" runat="server" AutoPostBack="True" DataSourceID="odsCausali"
DataTextField="label" DataValueField="value" Width="400px" BackColor="#cdffcd"
Font-Size="8pt" SelectedValue='<%# Bind("idxCausale") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsCausali" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="getByConditioAndCurr" TypeName="GIM_data.DS_utilityTableAdapters.v_selCausaliMacchineTableAdapter" OnDataBinding="odsCausali_DataBinding">
<SelectParameters>
<asp:ControlParameter ControlID="listMacchine" DefaultValue="0" Name="conditio" PropertyName="SelectedValue"
Type="Int32" />
<asp:ControlParameter ControlID="lblCausale" DefaultValue="0" Name="currVal" PropertyName="Text" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblDescrPriorita" Text='<%# traduci("lblDescrPriorita") %>'
Font-Size="X-Small" />
</td>
<td colspan="5">
<asp:Label runat="server" ID="lblDescrizioneGen" Text='<%# traduci("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr style="vertical-align: top;">
<td>
<asp:Label runat="server" ID="lblPrior" /><br />
<asp:DropDownList runat="server" ID="ddlPrior" DataSourceID="odsPrior" DataTextField="label"
DataValueField="value" CssClass="textEv_2" SelectedValue='<%# Bind("idxPriorita") %>' />
<asp:ObjectDataSource ID="odsPrior" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selPriorTableAdapter">
</asp:ObjectDataSource>
</td>
<td colspan="5">
<asp:TextBox ID="txtDescrizione" runat="server" Text='<%# Bind("descrizione") %>'
CssClass="textEv_2Left" Height="100px" Width="530px" TextMode="MultiLine" />
<asp:RequiredFieldValidator ID="rfvDescrizione" runat="server" ErrorMessage="Obbligatorio !!!"
ControlToValidate="txtDescrizione" Display="Dynamic"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td colspan="6">
<asp:Label runat="server" ID="lblDescrTipo" Text='<%# traduci("lblDescrTipo") %>'
Font-Size="X-Small" />
</td>
</tr>
<tr>
<td>
<asp:Label runat="server" ID="lblTipoGuasto" /><br />
<asp:DropDownList runat="server" ID="ddlTipo" Font-Bold="True" Font-Size="10pt" CssClass="textEv_2"
DataSourceID="odsTipo" DataTextField="label" DataValueField="value" SelectedValue='<%# Bind("idxTipo") %>'>
</asp:DropDownList>
<asp:ObjectDataSource ID="odsTipo" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selTipoGuastoTableAdapter">
</asp:ObjectDataSource>
</td>
</tr>
</table>
</div>
<div id="divDown" style="background-color: #FFFFFF; border-top: solid 2px orange;
padding: 10px;">
<table>
<tr>
<td>
<asp:Label runat="server" ID="lblPresaInCarico" Text='<%# traduci("lblPresaInCarico") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblInizioIntervento" Text='<%# traduci("lblInizioIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblFineIntervento" Text='<%# traduci("lblFineIntervento") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblDescrStato" Text='<%# traduci("lblDescrStato") %>'
Font-Size="X-Small" />
</td>
<td style="text-align: center;">
<asp:Label runat="server" ID="lblInterventi" Text='<%# traduci ("lblInterventi") %>'
Font-Size="X-Small"></asp:Label>
</td>
</tr>
<tr>
<td>
<%--<uc2:mod_dataOra ID="mod_dataOra10" runat="server" valore='<%# Bind("presaInCarico") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />--%>
<asp:TextBox ID="presaInCaricoLabel" runat="server" Text='<%# Bind("presaInCarico") %>'
CssClass="textEv_Read" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra2" runat="server" valore='<%# Bind("inizioIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<uc2:mod_dataOra ID="mod_dataOra3" runat="server" valore='<%# Bind("fineIntervento") %>'
css="textEv_1" tipoOrario="tendina" mostraLabel="false" />
</td>
<td>
<asp:DropDownList runat="server" ID="ddlStato" CssClass="textEv_1" SelectedValue='<%# Bind("idxStato") %>'
DataSourceID="odsStato" DataTextField="label" DataValueField="value">
</asp:DropDownList>
<asp:ObjectDataSource ID="odsStato" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selStatoTableAdapter">
</asp:ObjectDataSource>
</td>
<td rowspan="3" style="vertical-align: top; padding-left: 30px;">
<uc1:mod_interventoOpMtz ID="mod_interventoOpMtz4" runat="server" vistaModulo="editing" />
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label runat="server" ID="lblDescrGuasto" Text='<%# traduci ("lblDescrizioneGen") %>'
Font-Size="X-Small" />
</td>
<td>
<asp:Label runat="server" ID="lblIsPreventivabile" Text='<%# traduci("lblIsPreventivabile") %>'
Font-Size="X-Small" />
<asp:CheckBox ID="isPreventivabileCheckBox" runat="server" Checked='<%# Bind("isPreventivabile") %>'
Enabled="true" />
</td>
</tr>
<tr>
<td colspan="3">
<asp:TextBox ID="descrizioneInterventoLabel" runat="server" Text='<%# Bind("descrizioneIntervento") %>'
Height="100px" Width="500px" CssClass="textEv_1Left" TextMode="MultiLine" />
</td>
</tr>
</table>
</div>
</div>
</EditItemTemplate>
</asp:FormView>
<asp:ObjectDataSource ID="ods_default" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByIdx" TypeName="GIM_data.DS_applicazioneTableAdapters.v_intervExpTableAdapter"
UpdateMethod="sp_updateIntervento">
<UpdateParameters>
<asp:Parameter Name="Original_numIntMtz" Type="Int32" />
<asp:Parameter Name="idxStato" Type="Int32" />
<asp:Parameter Name="inizioIntervento" Type="DateTime" />
<asp:Parameter Name="fineIntervento" Type="DateTime" />
<asp:Parameter Name="isPreventivabile" Type="Boolean" />
<asp:Parameter Name="descrizioneIntervento" Type="String" />
</UpdateParameters>
<SelectParameters>
<asp:SessionParameter DefaultValue="0" Name="numIntMtz" SessionField="numIntMtz_sel"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
<asp:ObjectDataSource ID="ods_full" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="getByIdx" TypeName="GIM_data.DS_applicazioneTableAdapters.v_intervExpTableAdapter"
UpdateMethod="sp_updateInterventoFull" OnUpdated="ods_full_Updated">
<UpdateParameters>
<asp:Parameter Name="Original_numIntMtz" Type="Int32" />
<asp:Parameter Name="idxStato" Type="Int32" />
<asp:Parameter Name="inizioIntervento" Type="DateTime" />
<asp:Parameter Name="fineIntervento" Type="DateTime" />
<asp:Parameter Name="isPreventivabile" Type="Boolean" />
<asp:Parameter Name="descrizioneIntervento" Type="String" />
<asp:Parameter Name="matr" Type="String" />
<asp:Parameter Name="guasto" Type="DateTime" />
<asp:Parameter Name="isFermo" Type="Boolean" />
<asp:Parameter Name="idxImpianto" Type="Int32" />
<asp:Parameter Name="idxMacchina" Type="Int32" />
<asp:Parameter Name="idxAmbito" Type="Int32" />
<asp:Parameter Name="idxPriorita" Type="Int32" />
<asp:Parameter Name="descrizione" Type="String" />
<asp:Parameter Name="idxTipo" Type="Int32" />
<asp:Parameter Name="idxCausale" Type="Int32" />
<asp:Parameter Name="presaInCarico" Type="DateTime" />
</UpdateParameters>
<SelectParameters>
<asp:SessionParameter DefaultValue="0" Name="numIntMtz" SessionField="numIntMtz_sel"
Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
@@ -1,107 +0,0 @@
<%@ Control Language="C#" AutoEventWireup="true" Inherits="mod_reportInterventi"
CodeBehind="mod_reportInterventi.ascx.cs" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Src="~/WebUserControls/mod_periodoAnalisi.ascx" TagName="mod_periodoAnalisi"
TagPrefix="uc1" %>
<div style="background-color: silver;">
<div style="padding: 1px;">
<div style="padding: 4px; background-color: #E5E2E1;">
<div style="background-color: #D5D2D1; clear: both; padding: 4px; text-align: center;
border-style: groove; display: inline-table; height:20px;">
<uc1:mod_periodoAnalisi ID="mod_periodoAnalisi1" runat="server" />
</div>
<div style="width: 100%; background-color: #E5E2E1; clear: both;" class="bg_plus">
<div style="float: left; width: 350px">
<div style="float: left;">
<asp:Label runat="server" ID="lblImpiantiInteressati" />
</div>
<div style="float: right;">
<asp:TextBox runat="server" ID="txtCercaImpianti" Width="8em" Text="*" AutoPostBack="True" />
</div>
<div>
<asp:ListBox ID="listImpianti" runat="server" AutoPostBack="True" DataSourceID="odsImpianti"
SelectionMode="Multiple" DataTextField="label" DataValueField="value" Height="300px"
Width="350px" BackColor="#ddeeff" Font-Size="8pt" OnSelectedIndexChanged="listImpianti_SelectedIndexChanged"
OnDataBound="listImpianti_DataBound" />
<asp:ObjectDataSource ID="odsImpianti" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_utilityTableAdapters.v_selImpiantiTableAdapter"
FilterExpression="label LIKE '%{0}%'">
<FilterParameters>
<asp:ControlParameter ControlID="txtCercaImpianti" DefaultValue="*" Type="String"
Name="txtCercaImpianti" />
</FilterParameters>
</asp:ObjectDataSource>
</div>
</div>
<div style="float: left; width: 450px">
<div style="float: left;">
<asp:Label runat="server" ID="lblMacchineInteressate" />
</div>
<div style="float: right;">
<asp:TextBox runat="server" ID="txtCercaMacchine" Width="8em" Text="*" AutoPostBack="True" />
</div>
<div>
<asp:ListBox ID="listMacchine" runat="server" AutoPostBack="True" DataSourceID="odsMacchine"
SelectionMode="Multiple" DataTextField="label" DataValueField="value" Height="300px"
Width="450px" BackColor="#ddffee" Font-Size="8pt" OnSelectedIndexChanged="listMacchine_SelectedIndexChanged"
OnDataBound="listMacchine_DataBound" />
<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 style="float: left; clear: right; font-size:8pt;">
<div id="up" style="margin-left: 10px;">
<asp:Label runat="server" ID="lblMostraStati" /><br />
<asp:ListBox ID="listaStati" runat="server" DataSourceID="ods" DataTextField="DescrStato"
AutoPostBack="true" DataValueField="idxStato" OnDataBound="listaStati_DataBound"
SelectionMode="Multiple" OnSelectedIndexChanged="listaStati_SelectedIndexChanged">
</asp:ListBox>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}"
SelectMethod="GetData" TypeName="GIM_data.DS_applicazioneTableAdapters.AnagStatiTableAdapter">
</asp:ObjectDataSource>
</div>
<div style="margin-left: 10px;">
<asp:CheckBox ID="chkShowOnlyMacchFerma" runat="server" Checked="false" AutoPostBack="True"
OnCheckedChanged="chkShowOnlyMacchFerma_CheckedChanged" />
<br />
<asp:CheckBox ID="chkShowMtzPrev" runat="server" Checked="true" AutoPostBack="True"
OnCheckedChanged="chkShowMtzPrev_CheckedChanged" />
</div>
</div>
</div>
<div style="font-size: 8pt; clear: both; text-align: center; vertical-align: top;
padding-top: 20pz; background-color: #E5E2E1">
<table>
<tr>
<td style="width: 300px;">
<h3>
<asp:Label runat="server" ID="lblReportInterventi" />
</h3>
<asp:HyperLink runat="server" ID="hlElencoInterventi_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
</td>
<td style="width: 30px;">
</td>
<td style="width: 300px;">
<h3>
<asp:Label runat="server" ID="lblReportMTBFMTTR" />
</h3>
<asp:HyperLink runat="server" ID="hlMTBF_MTTR_Pdf" ToolTip="..." ImageUrl="~/images/pdfExportSmall.png" />
</td>
</tr>
<tr>
<td colspan="3">
<br />
<asp:HyperLink runat="server" ID="lnkGuidaPerReport" Target="_blank" />
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
@@ -1,105 +0,0 @@
<%@ Control Language="C#" AutoEventWireup="true"
Inherits="mod_vocabolario" Codebehind="mod_vocabolario.ascx.cs" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<table class="contrDx">
<tr>
<td>
<asp:GridView ID="grView" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
DataKeyNames="Lingua,Lemma" DataSourceID="ods" OnDataBound="grView_DataBound"
OnSelectedIndexChanged="grView_SelectedIndexChanged" OnRowEditing="grView_RowEditing">
<FooterStyle CssClass="ctrFooter"></FooterStyle>
<RowStyle CssClass="ctrRowStyle"></RowStyle>
<Columns>
<asp:TemplateField ShowHeader="False">
<EditItemTemplate>
<asp:ImageButton ID="imgUpdate" runat="server" CausesValidation="False" CommandName="Update"
ToolTip='<%# traduci("Update")%>' ImageUrl='<%# imgPath(SteamWare.tipoImg.conferma, SteamWare.dimImg.small) %>' />
<asp:ImageButton ID="imgCancel" runat="server" CausesValidation="False" CommandName="Cancel"
ToolTip='<%# traduci("Cancel") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.annulla, SteamWare.dimImg.small) %>' />
</EditItemTemplate>
<HeaderTemplate>
<asp:Button ID="btnReset" runat="server" Text='<%# traduci("Reset") %>' OnClick="btnReset_Click" />
</HeaderTemplate>
<ItemTemplate>
<asp:ImageButton ID="imgSelect" runat="server" CausesValidation="False" CommandName="Select"
ToolTip='<%# traduci("Select") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.seleziona, SteamWare.dimImg.small) %>' />
<asp:ImageButton ID="imgEdit" runat="server" CausesValidation="False" CommandName="Edit"
ToolTip='<%# traduci("Edit") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.modifica, SteamWare.dimImg.small) %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Lingua" SortExpression="Lingua">
<EditItemTemplate>
<asp:Label ID="TextBox0" runat="server" Text='<%# Eval("Lingua") %>' />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("Lingua") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Lemma" SortExpression="Lemma">
<EditItemTemplate>
<asp:Label ID="TextBox2" runat="server" Text='<%# Eval("Lemma") %>' />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label3" runat="server" Text='<%# Bind("Lemma") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Traduzione" SortExpression="Traduzione">
<EditItemTemplate>
<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("Traduzione") %>' Width="500px"
TextMode="MultiLine" Height="8em"></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Bind("Traduzione") %>' />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField ShowHeader="False">
<EditItemTemplate>
</EditItemTemplate>
<ItemTemplate>
<asp:ImageButton ID="imgDelete" runat="server" CausesValidation="False" CommandName="Delete"
ToolTip='<%# traduci("Delete") %>' ImageUrl='<%# imgPath(SteamWare.tipoImg.elimina, SteamWare.dimImg.small) %>' />
<cc1:ConfirmButtonExtender ID="ConfirmButtonExtender1" runat="server" ConfirmText='<%# traduci("confermaDel")%>'
TargetControlID="imgDelete">
</cc1:ConfirmButtonExtender>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<PagerStyle HorizontalAlign="Center" CssClass="ctrHeaderPager" ForeColor="White"></PagerStyle>
<SelectedRowStyle CssClass="ctrSelRowStyle"></SelectedRowStyle>
<HeaderStyle CssClass="ctrHeaderPager" Font-Bold="True" ForeColor="White"></HeaderStyle>
<EditRowStyle CssClass="ctrEditRowStyle"></EditRowStyle>
<AlternatingRowStyle CssClass="ctrAltRowStyle"></AlternatingRowStyle>
</asp:GridView>
<asp:Label ID="lblNumRec" runat="server" CssClass="txtMini" />
<asp:ObjectDataSource ID="ods" runat="server" SelectMethod="getVocabolario" TypeName="selData"
UpdateMethod="updateLemmaVoc" DeleteMethod="deleteLemmaVoc" OldValuesParameterFormatString="Original_{0}"
FilterExpression="Traduzione LIKE '%{0}%' OR Lemma LIKE '%{0}%' " OnUpdated="ods_Updated">
<UpdateParameters>
<asp:Parameter Name="Traduzione" Type="String" />
<asp:Parameter Name="Original_Lingua" Type="String" />
<asp:Parameter Name="Original_Lemma" Type="String" />
</UpdateParameters>
<FilterParameters>
<asp:SessionParameter DefaultValue="*" Name="ricerca" SessionField="valoreCercato" />
</FilterParameters>
<DeleteParameters>
<asp:Parameter Name="Original_Lingua" Type="String" />
<asp:Parameter Name="Original_Lemma" Type="String" />
</DeleteParameters>
<InsertParameters>
<asp:Parameter Name="Lingua" Type="String" />
<asp:Parameter Name="Lemma" Type="String" />
<asp:Parameter Name="Traduzione" Type="String" />
</InsertParameters>
</asp:ObjectDataSource>
</td>
</tr>
<tr>
<td>
<asp:Button ID="btnNewLemma" runat="server" OnClick="btnNewLemma_Click" />
<asp:TextBox ID="txtNewLemma" runat="server" />
<cc1:TextBoxWatermarkExtender ID="TBW_newLemma" runat="server" TargetControlID="txtNewLemma" WatermarkCssClass="watermark">
</cc1:TextBoxWatermarkExtender>
</td>
</tr>
</table>
@@ -1,237 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<!--<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<!--<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />-->
<!--<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<!--<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<!--<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<system.web>
<identity />
<authentication mode="Windows" />
<!--Versione USA!!!
<globalization culture="en-US" uiCulture="en-US" enableClientBasedCulture="false" /> -->
<!--Versione Ita-->
<globalization culture="it-IT" uiCulture="it-IT" enableClientBasedCulture="false" />
<!--Versione AUTO!!!
<globalization culture="auto" uiCulture="auto" enableClientBasedCulture="true" />-->
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<!--<add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI" assembly="Microsoft.Web.Preview" />
<add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI.Controls" assembly="Microsoft.Web.Preview" />-->
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
</controls>
</pages>
<compilation debug="true">
<assemblies>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="Microsoft.ReportViewer.WinForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
<!--<buildProviders>
<add extension="*.asbx" type="Microsoft.Web.Preview.Services.BridgeBuildProvider" />
</buildProviders>-->
</compilation>
<httpHandlers>
<remove verb="*" path="*.asmx" />
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
<add verb="GET,HEAD,POST" path="*.asbx" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</httpModules>
<customErrors mode="Off" />
<!--<customErrors mode="RemoteOnly" defaultRedirect="unauthorized.aspx" />-->
<httpRuntime maxRequestLength="102400" />
<!-- qui sopra configurato x gestire allegati fino a 100 mb...
<httpRuntime
maxRequestLength="102400"
executionTimeout="1200"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100" />
-->
</system.web>
<!--<system.web.extensions>
<scripting>
<scriptResourceHandler enableCompression="true" enableCaching="true" />
</scripting>
</system.web.extensions>-->
<appSettings>
<add key="CodModulo" value="GIM" />
<add key="dominio" value="STEAMWAREWIN" />
<add key="intUpdatePagina_ms" value="60000" />
<add key="_righeDataGrid" value="30" />
<add key="_righeDataGridAnagr" value="20" />
<add key="_righeDataGridLong" value="40" />
<add key="_righeDataGridMed" value="15" />
<add key="_righeDataGridShort" value="10" />
<add key="_fromEmail" value="info@steamware.net" />
<add key="_logDir" value="./logs/" />
<add key="_logLevel" value="6" />
<add key="doShrinkFolder" value="true" />
<add key="_logMaxMb" value="30" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="chLang.aspx#jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx" />
<add key="_commonPages" value="menu.aspx" />
<add key="_titoloPagina" value="GIM" />
<add key="titleApp" value="GIM_titleApp" />
<add key="welcomeApp" value="GIM_welcomeApp" />
<add key="appName" value="GIM" />
<add key="mainRev" value="1.3" />
<add key="minRev" value="242" />
<add key="copyRight" value="SteamWare © 2006" />
<add key="defaultApp" value="GIM_Appl" />
<add key="defaultTitle" value="GIM_ShortWelcome" />
<add key="defaultBody" value="GIM_LongWelcome" />
<add key="_adminEmail" value="info@steamware.net" />
<add key="exportFormat1" value="./ExportPdf.aspx?tipo={0}" />
<add key="exportFormat2" value="../ExportPdf.aspx?tipo={0}&amp;idx={1}" />
<add key="exportFormat3" value="./ExportPdf.aspx?tipo={0}&amp;inizio={1}&amp;fine={2}&amp;username={3}" />
<add key="_smtpCli" value="localhost" />
<add key="echoLemmi" value="false" />
<add key="allowDelete" value="true" />
<!--stringhe connessione-->
<add key="PermessiConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=keyhammer" />
<add key="UtenteCdcConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=keyhammer" />
<add key="VocabolarioConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=keyhammer" />
<add key="AppConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=keyhammer" />
<add key="TestAppConnectionString" value="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM_test;Persist Security Info=True;User id=sa;Password=keyhammer" />
<!--<add key="PermessiConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="UtenteCdcConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaAnag;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="VocabolarioConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaVoc;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="AppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="TestAppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM_test;Persist Security Info=True;User id=sa;Password=ViaDante16!" />-->
<!--valori default-->
<add key="defaultMatr" value="0000" />
<add key="defaultCodImp" value="0000" />
<add key="defaultCodMacc" value="0000" />
<!--gestione turni-->
<add key="shiftTurno" value="6" />
<add key="durataTurno" value="8" />
<add key="defaultDelay" value="15" />
<!-- Configurazione parte db -->
<add key="_sqlDir" value="sql" />
<add key="dbUpdateEnabled" value="true" />
<add key="dbAuthName" value="Somas_Anagrafica" />
<add key="dbVocabName" value="SteamWare_Vocabolario" />
<add key="dbAppName" value="GIM" />
<add key="dbTest" value="GIM_test" />
<add key="dbAuthVers" value="1" />
<add key="dbVocabVers" value="1" />
<add key="dbAppVers" value="5" />
<add key="dbAppCreaEnab" value="false" />
<add key="sqlFileFormat" value="{0}_{1:0000}.sql" />
<add key="sqlScriptDir" value="sql" />
<add key="appFilePre" value="GIM" />
<!-- Gestione Auto-enroll-->
<add key="autoEnrollEnabled" value="false" />
<add key="autoEnrollCdc" value="X999" />
<add key="autoEnrollModulo" value="GIM" />
<add key="autoEnrollFunzione" value="GIM_U" />
<!--gestione stampanti-->
<add key="stampanteRichiesteMtz" value="PDFCreator" />
<!--template campi nuovi-->
<add key="newAmbitoGuasto" value="-- [NUOVO] non definito --" />
<add key="newCognome" value="-- [NUOVO] Cognome --" />
<add key="newNome" value="-- [NUOVO] Nome --" />
<add key="newCalFF" value="-- [NUOVO] non definito --" />
<add key="newImpianto" value="-- [NUOVO] Nome Impianto non definito --" />
<add key="newTipoGuasto" value="-- [NUOVO] non definito --" />
<add key="newMacchina" value="-- [NUOVA] non definita --" />
<add key="newModello" value="-- MODELLO --" />
<add key="newFamMacchina" value="-- [NUOVA] non definita --" />
<add key="newCausale" value="-- [NUOVA] non definita --" />
<add key="newPriorita" value="-- [NUOVA] non definita --" />
<!--gestione formati data-ora-->
<add key="culture" value="it-IT" />
<add key="ddMMyy" value="dd/MM/yy" />
<add key="ddMMyyyy" value="dd/MM/yyyy" />
<add key="ddMMyyyyHHmm" value="dd/MM/yyyy HH:mm" />
<add key="appAdminEmail" value="marco.previtali@somaschini.com" />
</appSettings>
<connectionStrings>
<add name="GIMConnectionString" connectionString="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient" />
<add name="GIM_Data.Properties.Settings.GIMConnectionString" connectionString="Data Source=10.74.82.217\SQL2008R2;Initial Catalog=GIM;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient" />
<!--<add name="GIMConnectionString" connectionString="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User ID=sa;Password=ViaDante16!" providerName="System.Data.SqlClient" />-->
</connectionStrings>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules>
<remove name="ScriptModule" />
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</modules>
<handlers>
<remove name="ScriptHandlerFactory" />
<remove name="ScriptHandlerFactoryAppServices" />
<remove name="ScriptResource" />
<remove name="WebServiceHandlerFactory-Integrated" />
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ASBXHandler" verb="GET,HEAD,POST" path="*.asbx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.Enterprise.ASPNetHelper" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<codeBase version="8.0.0.0" href="file:///C:/Program%20Files/Microsoft%20Visual%20Studio%208/Common7/IDE/PrivateAssemblies/Microsoft.VisualStudio.Enterprise.ASPNetHelper.DLL" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
<!--<dependentAssembly>
<assemblyIdentity name="ICSharpCode.SharpZipLib" publicKeyToken="1b03e6acf1164f73" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-0.86.0.518" newVersion="0.86.0.518" />
</dependentAssembly>-->
</assemblyBinding>
</runtime>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="WarnAsError" value="false" />
</compiler>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="OptionInfer" value="true" />
<providerOption name="WarnAsError" value="false" />
</compiler>
</compilers>
</system.codedom>
</configuration>
@@ -1,237 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<!--<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<!--<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />-->
<!--<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<!--<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
<!--<section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />-->
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<system.web>
<identity />
<authentication mode="Windows" />
<!--Versione USA!!!
<globalization culture="en-US" uiCulture="en-US" enableClientBasedCulture="false" /> -->
<!--Versione Ita-->
<globalization culture="it-IT" uiCulture="it-IT" enableClientBasedCulture="false" />
<!--Versione AUTO!!!
<globalization culture="auto" uiCulture="auto" enableClientBasedCulture="true" />-->
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<!--<add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI" assembly="Microsoft.Web.Preview" />
<add tagPrefix="asp" namespace="Microsoft.Web.Preview.UI.Controls" assembly="Microsoft.Web.Preview" />-->
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
</controls>
</pages>
<compilation>
<assemblies>
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="Microsoft.ReportViewer.WinForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</assemblies>
<!--<buildProviders>
<add extension="*.asbx" type="Microsoft.Web.Preview.Services.BridgeBuildProvider" />
</buildProviders>-->
</compilation>
<httpHandlers>
<remove verb="*" path="*.asmx" />
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" />
<add verb="GET,HEAD,POST" path="*.asbx" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</httpModules>
<customErrors mode="Off" />
<!--<customErrors mode="RemoteOnly" defaultRedirect="unauthorized.aspx" />-->
<httpRuntime maxRequestLength="102400" />
<!-- qui sopra configurato x gestire allegati fino a 100 mb...
<httpRuntime
maxRequestLength="102400"
executionTimeout="1200"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100" />
-->
</system.web>
<!--<system.web.extensions>
<scripting>
<scriptResourceHandler enableCompression="true" enableCaching="true" />
</scripting>
</system.web.extensions>-->
<appSettings>
<add key="CodModulo" value="GIM" />
<add key="dominio" value="WINLAB" />
<add key="intUpdatePagina_ms" value="60000" />
<add key="_righeDataGrid" value="30" />
<add key="_righeDataGridAnagr" value="20" />
<add key="_righeDataGridLong" value="40" />
<add key="_righeDataGridMed" value="15" />
<add key="_righeDataGridShort" value="10" />
<add key="_fromEmail" value="info@steamware.net" />
<add key="_logDir" value="./logs/" />
<add key="_logLevel" value="6" />
<add key="doShrinkFolder" value="true" />
<add key="_logMaxMb" value="30" />
<add key="_allowForceUser" value="true" />
<add key="_safePages" value="chLang.aspx#jumper.aspx#unauthorized.aspx#allegati.aspx#forceUser.aspx#login.aspx#test.aspx#istruzioni.aspx" />
<add key="_commonPages" value="menu.aspx" />
<add key="_titoloPagina" value="GIM" />
<add key="titleApp" value="GIM_titleApp" />
<add key="welcomeApp" value="GIM_welcomeApp" />
<add key="appName" value="GIM" />
<add key="mainRev" value="1.3" />
<add key="minRev" value="242" />
<add key="copyRight" value="SteamWare © 2006" />
<add key="defaultApp" value="GIM_Appl" />
<add key="defaultTitle" value="GIM_ShortWelcome" />
<add key="defaultBody" value="GIM_LongWelcome" />
<add key="_adminEmail" value="info@steamware.net" />
<add key="exportFormat1" value="./ExportPdf.aspx?tipo={0}" />
<add key="exportFormat2" value="../ExportPdf.aspx?tipo={0}&amp;idx={1}" />
<add key="exportFormat3" value="./ExportPdf.aspx?tipo={0}&amp;inizio={1}&amp;fine={2}&amp;username={3}" />
<add key="_smtpCli" value="localhost" />
<add key="echoLemmi" value="false" />
<add key="allowDelete" value="true" />
<!--stringhe connessione-->
<add key="PermessiConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="UtenteCdcConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="VocabolarioConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="AppConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<add key="TestAppConnectionString" value="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" />
<!--<add key="PermessiConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="UtenteCdcConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaAnag;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="VocabolarioConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GimUsaVoc;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="AppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User id=sa;Password=ViaDante16!" />
<add key="TestAppConnectionString" value="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM_test;Persist Security Info=True;User id=sa;Password=ViaDante16!" />-->
<!--valori default-->
<add key="defaultMatr" value="0000" />
<add key="defaultCodImp" value="0000" />
<add key="defaultCodMacc" value="0000" />
<!--gestione turni-->
<add key="shiftTurno" value="6" />
<add key="durataTurno" value="8" />
<add key="defaultDelay" value="15" />
<!-- Configurazione parte db -->
<add key="_sqlDir" value="sql" />
<add key="dbUpdateEnabled" value="true" />
<add key="dbAuthName" value="Somas_Anagrafica" />
<add key="dbVocabName" value="SteamWare_Vocabolario" />
<add key="dbAppName" value="GIM" />
<add key="dbTest" value="GIM_test" />
<add key="dbAuthVers" value="1" />
<add key="dbVocabVers" value="1" />
<add key="dbAppVers" value="5" />
<add key="dbAppCreaEnab" value="false" />
<add key="sqlFileFormat" value="{0}_{1:0000}.sql" />
<add key="sqlScriptDir" value="sql" />
<add key="appFilePre" value="GIM" />
<!-- Gestione Auto-enroll-->
<add key="autoEnrollEnabled" value="false" />
<add key="autoEnrollCdc" value="X999" />
<add key="autoEnrollModulo" value="GIM" />
<add key="autoEnrollFunzione" value="GIM_U" />
<!--gestione stampanti-->
<add key="stampanteRichiesteMtz" value="\\pc-manutenzione\HP-manut" />
<!--template campi nuovi-->
<add key="newAmbitoGuasto" value="-- [NUOVO] non definito --" />
<add key="newCognome" value="-- [NUOVO] Cognome --" />
<add key="newNome" value="-- [NUOVO] Nome --" />
<add key="newCalFF" value="-- [NUOVO] non definito --" />
<add key="newImpianto" value="-- [NUOVO] Nome Impianto non definito --" />
<add key="newTipoGuasto" value="-- [NUOVO] non definito --" />
<add key="newMacchina" value="-- [NUOVA] non definita --" />
<add key="newModello" value="-- MODELLO --" />
<add key="newFamMacchina" value="-- [NUOVA] non definita --" />
<add key="newCausale" value="-- [NUOVA] non definita --" />
<add key="newPriorita" value="-- [NUOVA] non definita --" />
<!--gestione formati data-ora-->
<add key="culture" value="it-IT" />
<add key="ddMMyy" value="dd/MM/yy" />
<add key="ddMMyyyy" value="dd/MM/yyyy" />
<add key="ddMMyyyyHHmm" value="dd/MM/yyyy HH:mm" />
<add key="appAdminEmail" value="astolfi@alumat.it, luzzana@alumat.it" />
</appSettings>
<connectionStrings>
<add name="GIMConnectionString" connectionString="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient" />
<add name="GIM_Data.Properties.Settings.GIMConnectionString" connectionString="Data Source=localhost\SQLExpress2008R2;Initial Catalog=Alumat_WebGIM;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient" />
<!--<add name="GIMConnectionString" connectionString="Data Source=10.74.82.17\SQLExpress;Initial Catalog=GIM;Persist Security Info=True;User ID=sa;Password=ViaDante16!" providerName="System.Data.SqlClient" />-->
</connectionStrings>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules>
<remove name="ScriptModule" />
<add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
</modules>
<handlers>
<remove name="ScriptHandlerFactory" />
<remove name="ScriptHandlerFactoryAppServices" />
<remove name="ScriptResource" />
<remove name="WebServiceHandlerFactory-Integrated" />
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<add name="ASBXHandler" verb="GET,HEAD,POST" path="*.asbx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.Enterprise.ASPNetHelper" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<codeBase version="8.0.0.0" href="file:///C:/Program%20Files/Microsoft%20Visual%20Studio%208/Common7/IDE/PrivateAssemblies/Microsoft.VisualStudio.Enterprise.ASPNetHelper.DLL" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" />
</dependentAssembly>
<!--<dependentAssembly>
<assemblyIdentity name="ICSharpCode.SharpZipLib" publicKeyToken="1b03e6acf1164f73" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-0.86.0.518" newVersion="0.86.0.518" />
</dependentAssembly>-->
</assemblyBinding>
</runtime>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="WarnAsError" value="false" />
</compiler>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
<providerOption name="CompilerVersion" value="v3.5" />
<providerOption name="OptionInfer" value="true" />
<providerOption name="WarnAsError" value="false" />
</compiler>
</compilers>
</system.codedom>
</configuration>
+2 -2
View File
@@ -5,7 +5,7 @@
using System.Reflection;
[assembly: AssemblyVersion("1.4.245.480")]
[assembly: AssemblyFileVersion("1.4.245.480")]
[assembly: AssemblyVersion("1.4.246.480")]
[assembly: AssemblyFileVersion("1.4.246.480")]
[assembly: AssemblyCopyright("Steamware © 2006-2015")]
[assembly: AssemblyCompany("Steamware")]
+2 -2
View File
@@ -6,8 +6,8 @@
using System.Reflection;
[assembly: AssemblyVersion("1.4.245.<#= this.RevisionNumber #>")]
[assembly: AssemblyFileVersion("1.4.245.<#= this.RevisionNumber #>")]
[assembly: AssemblyVersion("1.4.246.<#= this.RevisionNumber #>")]
[assembly: AssemblyFileVersion("1.4.246.<#= this.RevisionNumber #>")]
[assembly: AssemblyCopyright("Steamware © 2006-<#= DateTime.Now.Year #>")]
[assembly: AssemblyCompany("Steamware")]
<#+
Binary file not shown.