109 lines
5.6 KiB
Plaintext
109 lines
5.6 KiB
Plaintext
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
|
|
CodeBehind="Immobiliare.aspx.cs" Inherits="Consulenza.Web._Default" %>
|
|
|
|
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
|
|
</asp:Content>
|
|
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
|
|
<div>
|
|
|
|
REPORT IMMOBILIARE (CONSULENZA EVOLUTA)
|
|
<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: 830px;z-index:3;padding:10px;width:290px;border: 1px solid #ff6a00;">
|
|
<span style="float: right;border: 1px solid #000:;"><asp:LinkButton ID="lkb_close" runat="server" Font-Bold="true" ForeColor="#333399" OnClick="lkb_close_Click">X</asp:LinkButton> </span>
|
|
<br />
|
|
<asp:Panel ID="pn_scroll" runat="server" ScrollBars="Auto" Height="300">
|
|
|
|
<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>
|
|
</tr>
|
|
|
|
</HeaderTemplate>
|
|
<ItemTemplate>
|
|
<tr>
|
|
<td><asp:LinkButton ID="lk_immobile" runat="server"></asp:LinkButton></td>
|
|
</tr>
|
|
</ItemTemplate>
|
|
<FooterTemplate>
|
|
</table>
|
|
</FooterTemplate>
|
|
</asp:Repeater>
|
|
</asp:Panel>
|
|
</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:ListItem Text="S12 Dettaglio cointestatari -138" Value="138"></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">
|
|
ChiaveClientePB<br />
|
|
<asp:TextBox ID="txtChiaveClientePb" runat="server" Width="174px"></asp:TextBox><br />
|
|
<asp:LinkButton ID="lkb_chiaviimmobili" runat="server" OnClick="Button5_Click">
|
|
Recupera chiavi immobili di ChiaveClientePb
|
|
</asp:LinkButton>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<span class="lab" style="padding:10px;">Id Immobili NECESSARI PER LA STAMPA DELLA SCHEDA S7</span>
|
|
<asp:TextBox ID="tx_immobili" 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>
|
|
<tr>
|
|
<td>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div style="text-align: center">
|
|
|
|
</div>
|
|
<br />
|
|
</div>
|
|
</asp:Content>
|