97 lines
5.5 KiB
Plaintext
97 lines
5.5 KiB
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true"
|
|
CodeBehind="NucleoImmobiliare.aspx.cs" Inherits="Consulenza.Web.NucleoImmobiliare" %>
|
|
<asp:Content ID="HeaderContent" ContentPlaceHolderID="HeadContent" runat="server">
|
|
</asp:Content>
|
|
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
|
|
REPORT PATRIMONIO IMMOBILIARE (Nucleo)
|
|
<br />
|
|
<br />
|
|
<b>SELEZIONARE SE SI STA STAMPANDO IMMOBILIARE PER CONSULENZA UNICA</b><br />
|
|
<asp:CheckBox ID="ck_unica" runat="server" Checked="true" />
|
|
<br />
|
|
<br />
|
|
<div id="delenco" runat="server" visible="false" style="position: absolute;top: 290px;left: 790px;z-index:3;padding:20px;width:290px;border: 1px solid #ff6a00;">
|
|
<span style="float: right;"><asp:LinkButton ID="lkb_close" runat="server" Font-Bold="true" ForeColor="#333399" OnClick="lkb_close_Click">X</asp:LinkButton> </span>
|
|
<asp:Label ID="lb_norecord" runat="server" Visible="false">Non sono presenti immobili per il nucleo selezionato</asp:Label>
|
|
<asp:Repeater ID="rp_link" runat="server"
|
|
OnItemDataBound="rp_link_ItemDataBound"
|
|
OnItemCommand="rp_link_ItemCommand">
|
|
<HeaderTemplate>
|
|
<table>
|
|
<tr>
|
|
<td>Chiave Immobile</td>
|
|
<td>Chiave cliente pb</td>
|
|
</tr>
|
|
|
|
</HeaderTemplate>
|
|
<ItemTemplate>
|
|
<tr>
|
|
<td><asp:LinkButton ID="lk_immobile" runat="server"></asp:LinkButton></td>
|
|
<td><asp:Label ID="lk_cliente" runat="server"></asp:Label></td>
|
|
</tr>
|
|
</ItemTemplate>
|
|
<FooterTemplate>
|
|
</table>
|
|
</FooterTemplate>
|
|
</asp:Repeater>
|
|
</div>
|
|
<table style="padding:15px; width: 99%;">
|
|
<tr>
|
|
<td>
|
|
<p><asp:CheckBox ID="chkAll" Text="Seleziona tutti" runat="server" TextAlign="Right" /></p>
|
|
<div class="checklist">
|
|
<asp:CheckBoxList ID="chklstSezioni" runat="server" Width="552px">
|
|
<asp:ListItem Text="S1 Copertina -33" Value="33"></asp:ListItem>
|
|
<asp:ListItem Text="S2 Patrimonio Immobiliare Sintesi -34" Value="34"></asp:ListItem>
|
|
<asp:ListItem Text="S3 Distribuzione geografica Fabbricati -35" Value="35"></asp:ListItem>
|
|
<asp:ListItem Text="S4 Distribuzione geografica Terreni -36" Value="36"></asp:ListItem>
|
|
<asp:ListItem Text="S5 Dettaglio fabbricati -37" Value="37"></asp:ListItem>
|
|
<asp:ListItem Text="S6 Dettaglio terreni -38" Value="38"></asp:ListItem>
|
|
<asp:ListItem Text="S7 Scheda di stima parametrica del valore -39" Value="39"></asp:ListItem>
|
|
<asp:ListItem Text="S8 Dettaglio immobili con anomalie catastali -40" Value="40"></asp:ListItem>
|
|
<%--<asp:ListItem Text="S9 Patrimonio Immobiliare Stima delle imposte Fabbricati -41"
|
|
Value="41"></asp:ListItem>--%>
|
|
<asp:ListItem Text="S10 Glossario -42" Value="42"></asp:ListItem>
|
|
<%--<asp:ListItem Text="S11 Patrimonio Immobiliare Stima delle imposte Terreni -43" Value="43"></asp:ListItem>--%>
|
|
</asp:CheckBoxList>
|
|
<span class="lab" style="padding:10px;">Schede (Id delle sezioni: campo IdSezione tabella Sezioni ReportModeler2. Separare
|
|
con ;) es: 33;34</span>
|
|
<table style="padding:10px;width:90%">
|
|
<tr>
|
|
<td><asp:Button ID="Button4" runat="server" CssClass="btn" Text="Seleziona schede" OnClick="Button4_Click" /></td>
|
|
<td><asp:TextBox ID="txtSchede" runat="server" Width="300px"></asp:TextBox></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</div>
|
|
</td>
|
|
<td valign="top">
|
|
ChiaveNucleo<br />
|
|
<asp:TextBox ID="txtChiaveNucleo" runat="server" Width="174px"><%--412--%>15122<%--9057--%><%--8157--%></asp:TextBox><br />
|
|
<asp:LinkButton ID="lkb_chiaviimmobili" runat="server" OnClick="Button5_Click">
|
|
Recupera chiavi Immobili del nucleo
|
|
</asp:LinkButton>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<span class="lab" style="padding:10px;">Id Immobili del nucleo</span>
|
|
<asp:TextBox ID="tx_immobili" runat="server" Width="460px"></asp:TextBox>
|
|
</td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<span class="lab" style="padding:10px;">chiaveclientepb per idimmobile S7</span>
|
|
<asp:TextBox ID="tx_chiaveclientepb" runat="server" Width="460px"></asp:TextBox>
|
|
</td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" style="text-align:center;">
|
|
<asp:Button ID="Button3" runat="server" CssClass="btn" Text="Crea report Immobiliare" OnClick="Button3_Click" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</asp:Content> |