ConstruccionesCNJ_FactuGES/Output/Servidor/Informes/InfContratoCliente.fr3
2007-06-21 15:50:59 +00:00

86 lines
26 KiB
XML
Raw Permalink Blame History

<?xml version="1.0" encoding="utf-8"?>
<TfrxReport Version="3.23.7" DotMatrixReport="False" EngineOptions.DoublePass="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.OutlineWidth="180" PreviewOptions.Zoom="1" PrintOptions.Printer="Default" ReportOptions.CreateDate="37871,9953986921" ReportOptions.Description.Text="Demonstrates how to create simple list report." ReportOptions.LastChange="39091,8809825231" ReportOptions.VersionBuild="1" ReportOptions.VersionMajor="12" ReportOptions.VersionMinor="13" ReportOptions.VersionRelease="1" ScriptLanguage="PascalScript" ScriptText.Text="{procedure ReportSummary1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; if Engine.Finalpass and (&#60;HayResumen&#62; = True) then&#13;&#10; begin&#13;&#10;// Memo10.Height := Engine.FreeSpace - Band3.Height;&#13;&#10; Memo12.Visible := False;&#13;&#10; Shape9.Visible := False;&#13;&#10; end&#13;&#10; else&#13;&#10; Engine.CurY := Engine.CurY + Engine.FreeSpace - ReportSummary1.Height - 4;&#13;&#10;end;}&#13;&#10;&#13;&#10;procedure DatosClienteOnBeforePrint(Sender: TfrxComponent);&#13;&#10;var&#13;&#10; cadenaAux: String;&#13;&#10;begin&#13;&#10; DatosCliente.Lines.Clear;&#13;&#10; DatosCliente.Lines.Add(&#60;frxDBCabecera.&#34;CALLE&#34;&#62;);&#13;&#10;&#13;&#10; if (&#60;frxDBCabecera.&#34;CODIGO_POSTAL&#34;&#62; &#60;&#62; '')&#13;&#10; or (&#60;frxDBCabecera.&#34;POBLACION&#34;&#62; &#60;&#62; '') then&#13;&#10; DatosCliente.Lines.Add(&#60;frxDBCabecera.&#34;CODIGO_POSTAL&#34;&#62; + &#60;frxDBCabecera.&#34;POBLACION&#34;&#62;);&#13;&#10;&#13;&#10; CadenaAux := '';&#13;&#10; if &#60;frxDBCabecera.&#34;TELEFONO_1&#34;&#62; &#60;&#62; '' then&#13;&#10; if CadenaAux = '' then&#13;&#10; CadenaAux := CadenaAux + 'Telf:' + &#60;frxDBCabecera.&#34;TELEFONO_1&#34;&#62;&#13;&#10; else&#13;&#10; CadenaAux := CadenaAux + ' / ' + &#60;frxDBCabecera.&#34;TELEFONO_1&#34;&#62;;&#13;&#10;&#13;&#10; if &#60;frxDBCabecera.&#34;TELEFONO_2&#34;&#62; &#60;&#62; '' then&#13;&#10; if CadenaAux = '' then&#13;&#10; CadenaAux := CadenaAux + 'Telf:' + &#60;frxDBCabecera.&#34;TELEFONO_2&#34;&#62;&#13;&#10; else&#13;&#10; CadenaAux := CadenaAux + ' / ' + &#60;frxDBCabecera.&#34;TELEFONO_2&#34;&#62;;&#13;&#10;&#13;&#10; if &#60;frxDBCabecera.&#34;MOVIL_1&#34;&#62; &#60;&#62; '' then&#13;&#10; if CadenaAux = '' then&#13;&#10; CadenaAux := CadenaAux + 'Telf:' + &#60;frxDBCabecera.&#34;MOVIL_1&#34;&#62;&#13;&#10; else&#13;&#10; CadenaAux := CadenaAux + ' / ' + &#60;frxDBCabecera.&#34;MOVIL_1&#34;&#62;;&#13;&#10;&#13;&#10; DatosCliente.Lines.Add(CadenaAux);&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;procedure DatosEmpresaOnBeforePrint(Sender: TfrxComponent);&#13;&#10;var&#13;&#10; Cadena: String;&#13;&#10;begin&#13;&#10; DatosEmpresa.Lines.Clear;&#13;&#10; DatosEmpresa.Lines.Add(&#60;frxDBCabecera.&#34;RAZON_SOCIAL&#34;&#62;);&#13;&#10; DatosEmpresa.Lines.Add(&#60;frxDBCabecera.&#34;CALLE_EMPRESA&#34;&#62;);&#13;&#10;&#13;&#10; Cadena := '';&#13;&#10; if (&#60;frxDBCabecera.&#34;TELEFONO_1&#34;&#62; &#60;&#62; '') then&#13;&#10; Cadena := 'TLF: ' + &#60;frxDBCabecera.&#34;TELEFONO_1&#34;&#62;;&#13;&#10; if (&#60;frxDBCabecera.&#34;FAX&#34;&#62; &#60;&#62; '') then&#13;&#10; Cadena := Cadena + ' FAX: ' + &#60;frxDBCabecera.&#34;FAX&#34;&#62;;&#13;&#10; DatosEmpresa.Lines.Add(Cadena);&#13;&#10;&#13;&#10; Cadena := '';&#13;&#10; if (&#60;frxDBCabecera.&#34;CODIGO_POSTAL_EMPRESA&#34;&#62; &#60;&#62; '') then&#13;&#10; Cadena := &#60;frxDBCabecera.&#34;CODIGO_POSTAL_EMPRESA&#34;&#62;;&#13;&#10; if (&#60;frxDBCabecera.&#34;POBLACION_EMPRESA&#34;&#62; &#60;&#62; '') then&#13;&#10; Cadena := Cadena + ' ' + &#60;frxDBCabecera.&#34;POBLACION_EMPRESA&#34;&#62;;&#13;&#10; if (&#60;frxDBCabecera.&#34;PROVINCIA_EMPRESA&#34;&#62; &#60;&#62; '') then&#13;&#10; Cadena := Cadena + ' - ' + &#60;frxDBCabecera.&#34;PROVINCIA_EMPRESA&#34;&#62;;&#13;&#10; DatosEmpresa.Lines.Add(Cadena);&#13;&#10;end;&#13;&#10;&#13;&#10;procedure Memo14OnAfterPrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; Set('HayResumen',True);&#13;&#10;end;&#13;&#10;&#13;&#10;{procedure Line6OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; if &#60;Page#&#62; = &#60;TotalPages#&#62; then&#13;&#10; Line6.Visible := False;&#13;&#10;end;}&#13;&#10;&#13;&#10;procedure BandaConceptosOnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; BandaConceptos.StartNewPage := False;&#13;&#10; BandaConceptos.Visible := True;&#13;&#10; MemPrecio.Style := 'Concepto normal';&#13;&#10; MemCantidad.Style := 'Concepto normal';&#13;&#10; MemImpTotal.Style := 'Concepto normal';&#13;&#10; RichConcepto.Visible := True;&#13;&#10;&#13;&#10; case &#60;frxDBDetalles.&#34;TIPO_DETALLE&#34;&#62; of&#13;&#10; 'Salto': begin&#13;&#10; BandaConceptos.StartNewPage := True;&#13;&#10; RichConcepto.Visible := False;&#13;&#10; end;&#13;&#10; 'Titulo': begin&#13;&#10;// MemPrecio.Style := 'Concepto titulo';&#13;&#10;// MemCantidad.Style := 'Concepto titulo';&#13;&#10;// MemImpTotal.Style := 'Concepto titulo';&#13;&#10; end;&#13;&#10; 'Concepto': begin&#13;&#10; //&#13;&#10; end;&#13;&#10; 'Subtotal': begin&#13;&#10; MemPrecio.Style := 'Concepto subtotal';&#13;&#10; MemCantidad.Style := 'Concepto subtotal';&#13;&#10; MemImpTotal.Style := 'Concepto subtotal';&#13;&#10; end;&#13;&#10; 'Descuento': begin&#13;&#10; BandaConceptos.Visible := False;&#13;&#10; RichConcepto.Color := clNone;&#13;&#10; end;&#13;&#10; end;&#13;&#10;&#13;&#10; RichConcepto.Color := MemImpTotal.Color;&#13;&#10; RichConcepto.Frame := MemImpTotal.Frame;&#13;&#10;&#13;&#10;// MemoCampo2.Height := 0;&#13;&#10;// MemoCampo3.Height := 0;&#13;&#10;// MemoCampo4.Height := 0;&#13;&#10;end;&#13;&#10;&#13;&#10;begin&#13;&#10;// HayResumen := 0;&#13;&#10;end." ShowProgress="False" StoreInDFM="False" PropData="044C65667403890003546F70021008446174617365747301010C3400000020446174615365743D22667278444243616265636572612220446174615365744E616D653D22667278444243616265636572612200010C4A00000020446174615365743D226672784442436F6E646963696F6E6573436F6E747261746F2220446174615365744E616D653D226672784442436F6E646963696F6E6573436F6E747261746F2200010C3400000020446174615365743D226672784442446574616C6C65732220446174615365744E616D653D226672784442446574616C6C65732200010C3800000020446174615365743D226672784442526573756D656E4361702220446174615365744E616D653D226672784442526573756D656E4361702200010C3800000020446174615365743D226672784442526573756D656E44746F2220446174615365744E616D653D226672784442526573756D656E44746F220000095661726961626C657301010C0A000000204E616D653D2220312200010C20000000204E616D653D22486179526573756D656E222056616C75653D2246616C7365220000055374796C6501010C93000000204E616D653D22436F6E636570746F206E6F726D616C2220436F6C6F723D223533363837303931312220466F6E742E436861727365743D22302220466F6E742E436F6C6F723D222D31363737373230382220466F6E742E4865696768743D222D31322220466F6E742E4E616D653D225461686F6D612220466F6E742E5374796C653D223022204672616D652E5479703D22332200010C94000000204E616D653D22436F6E636570746F20737562746F74616C2220436F6C6F723D2231353739303332302220466F6E742E436861727365743D22302220466F6E742E436F6C6F723D222D31363737373230382220466F6E742E4865696768743D222D31322220466F6E742E4E616D653D225461686F6D612220466F6E742E5374796C653D223122204672616D652E5479703D22332200010C97000000204E616D653D22436162656365726120646520636F6C756D6E612220436F6C6F723D2231353030303830342220466F6E742E436861727365743D22302220466F6E742E436F6C6F723D222D31363737373230382220466F6E742E4865696768743D222D31332220466F6E742E4E616D653D225461686F6D612220466F6E742E5374796C653D223122204672616D652E5479703D2231352200010C92000000204E616D653D22436F6E636570746F20746974756C6F2220436F6C6F723D2231353739303332302220466F6E742E436861727365743D22302220466F6E742E436F6C6F723D222D31363737373230382220466F6E742E4865696768743D222D31332220466F6E742E4E616D653D225461686F6D612220466F6E742E5374796C653D223122204672616D652E5479703D2233220000">
<TfrxReportPage Name="Page1" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="10,00125" RightMargin="10,00125" TopMargin="10,00125" BottomMargin="10,00125" ColumnWidth="0" ColumnPositions.Text="" LargeDesignHeight="True" HGuides.Text="" VGuides.Text="">
<TfrxPageHeader Name="PageHeader1" Height="240" Left="0" Top="16" Width="718,101251175">
<TfrxMemoView Name="DatosEmpresa" Left="82,70872" Top="4,91342" Width="181,41744" Height="100,69295" OnBeforePrint="DatosEmpresaOnBeforePrint" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text=""/>
<TfrxShapeView Name="Shape12" Left="7,55906" Top="124,72449" Width="257,00804" Height="103,14966" Color="16250871" Shape="skRoundRectangle"/>
<TfrxShapeView Name="Shape13" Left="317,48052" Top="124,72449" Width="393,07112" Height="105,82684" Color="16250871" Shape="skRoundRectangle"/>
<TfrxMemoView Name="Memo40" Left="15,11812" Top="124,72449" Width="117,16543" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="PRESUPUESTO"/>
<TfrxMemoView Name="Memo41" Left="15,11812" Top="147,40167" Width="75,5906" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="Presupuesto:"/>
<TfrxMemoView Name="Memo42" Left="15,11812" Top="166,29932" Width="41,35436" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="Fecha:"/>
<TfrxMemoView Name="Memo43" Left="15,11812" Top="201,19697" Width="60,47248" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="Página nº:"/>
<TfrxMemoView Name="Memo44" Left="328,81911" Top="128,50402" Width="374,17347" Height="18,89765" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="1" HAlign="haRight" ParentFont="False" Text="[frxDBCabecera.&#34;NOMBRE&#34;]"/>
<TfrxMemoView Name="DatosCliente" Left="328,81911" Top="162,51979" Width="374,17347" Height="68,03154" OnBeforePrint="DatosClienteOnBeforePrint" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" Text=""/>
<TfrxMemoView Name="Memo48" Left="90,48825" Top="147,40167" Width="162,51979" Height="18,89765" DataField="REFERENCIA" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="[frxDBCabecera.&#34;REFERENCIA&#34;]"/>
<TfrxMemoView Name="Memo49" Left="56,25201" Top="166,29932" Width="192,75603" Height="18,89765" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="[frxDBCabecera.&#34;FECHA_PRESUPUESTO&#34;]"/>
<TfrxMemoView Name="Memo50" Left="75,37013" Top="201,19697" Width="177,63791" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="[&#60;Page#&#62;] / [&#60;TotalPages#&#62;]"/>
<TfrxMemoView Name="Memo51" Left="16" Top="184" Width="53,35436" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="Vigencia:"/>
<TfrxMemoView Name="Memo52" Left="72" Top="184" Width="184,75603" Height="18,89765" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="[frxDBCabecera.&#34;FECHA_VIGENCIA&#34;]"/>
<TfrxPictureView Name="Picture1" Left="7,55906" Top="3,77953" Width="68,03598" Height="104,03154" Center="True" DataField="LOGOTIPO" DataSet="frxDBCabecera" DataSetName="frxDBCabecera"/>
<TfrxMemoView Name="Memo53" Left="317,48052" Top="34,01577" Width="370,39394" Height="64,25201" Font.Charset="1" Font.Color="12632256" Font.Height="-48" Font.Name="Tahoma" Font.Style="1" Frame.Color="14211288" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="CONTRATO"/>
</TfrxPageHeader>
<TfrxMasterData Name="BandaConceptos" Height="20" Left="0" Top="360" Width="718,101251175" OnBeforePrint="BandaConceptosOnBeforePrint" ColumnWidth="0" ColumnGap="0" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" KeepFooter="True" RowCount="0" Stretched="True">
<TfrxRichView Name="RichConcepto" ShiftMode="smWhenOverlapped" Left="0" Top="0" Width="466,39" Height="20" StretchMode="smMaxHeight" DataField="CONCEPTO" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" Frame.Typ="1" GapX="3" GapY="5" PropData="0852696368456469740A760000007B5C727466315C616E73695C616E7369637067313235325C64656666305C6465666C616E67333038327B5C666F6E7474626C7B5C66305C666E696C5C666368617273657430205461686F6D613B7D7D0D0A5C766965776B696E64345C7563315C706172645C66305C667331385C7061720D0A7D0D0A00"/>
<TfrxMemoView Name="Memo57" Left="248" Top="4" Width="90,48825" Height="11,33859" Visible="False" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="1" ParentFont="False" Text="[frxDBDetalles.&#34;TIPO_DETALLE&#34;]"/>
<TfrxMemoView Name="memCantidad" Left="466,39" Top="0" Width="63,15" Height="20" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#0 " DisplayFormat.Kind="fkNumeric" Font.Charset="0" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="1" GapX="3" GapY="5" HAlign="haRight" HideZeros="True" LineSpacing="4" ParentFont="False" Text="[frxDBDetalles.&#34;CANTIDAD&#34;]"/>
<TfrxMemoView Name="memPrecio" Left="529,54" Top="0" Width="95,62" Height="20" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20> " DisplayFormat.Kind="fkNumeric" Font.Charset="0" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="1" GapX="3" GapY="5" HAlign="haRight" HideZeros="True" LineSpacing="4" ParentFont="False" Text="[frxDBDetalles.&#34;IMPORTE_UNIDAD&#34;]"/>
<TfrxMemoView Name="memImpTotal" Left="625,17" Top="0" Width="92,94" Height="20" StretchMode="smMaxHeight" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20> " DisplayFormat.Kind="fkNumeric" Font.Charset="0" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="3" GapX="3" GapY="5" HAlign="haRight" HideZeros="True" LineSpacing="4" ParentFont="False" Text="[frxDBDetalles.&#34;IMPORTE_TOTAL&#34;]"/>
</TfrxMasterData>
<TfrxHeader Name="Header2" Height="24" Left="0" Top="316" Width="718,101251175" ReprintOnNewPage="True">
<TfrxMemoView Name="Memo38" Left="0" Top="0,567099999999982" Width="466,39394" Height="22,45669291" Color="15000804" Font.Charset="0" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Concepto"/>
<TfrxMemoView Name="Memo46" Left="466,39394" Top="0,567099999999982" Width="63,14966" Height="22,45669291" Color="15000804" Font.Charset="0" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Cantidad"/>
<TfrxMemoView Name="Memo47" Left="529,5436" Top="0,567099999999982" Width="95,62214" Height="22,45669291" Color="15000804" Font.Charset="0" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Precio unidad"/>
<TfrxMemoView Name="Memo39" Left="625,16574" Top="0,567099999999982" Width="92,94496" Height="22,45669291" Color="15000804" Font.Charset="0" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Importe total"/>
</TfrxHeader>
<TfrxPageFooter Name="Band3" Height="250,42519685" Left="0" Top="540" Width="718,101251175">
<TfrxShapeView Name="Shape4" Left="488" Top="134,89765" Width="229" Height="98,26778" Color="16250871" Shape="skRoundRectangle"/>
<TfrxShapeView Name="Shape3" Left="8" Top="134,89765" Width="229" Height="98,26778" Color="16250871" Shape="skRoundRectangle"/>
<TfrxMemoView Name="Memo26" Left="17,57483" Top="142,26778" Width="113,3859" Height="14,89765" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="FORMA DE PAGO"/>
<TfrxMemoView Name="Memo27" Left="17,57483" Top="156,94496" Width="212,59864" Height="69,82684" StretchMode="smActualHeight" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="[frxDBCabecera.&#34;FORMA_PAGO&#34;]"/>
<TfrxMemoView Name="Memo30" Left="495,7483" Top="142,26778" Width="113,3859" Height="14,89765" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="OBSERVACIONES"/>
<TfrxMemoView Name="Memo31" Left="495,7483" Top="156,94496" Width="215,24428" Height="69,83" StretchMode="smActualHeight" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="[frxDBCabecera.&#34;OBSERVACIONES&#34;]"/>
<TfrxShapeView Name="Shape6" Left="244" Top="134,89765" Width="229" Height="98,26778" Color="16250871" Shape="skRoundRectangle"/>
<TfrxMemoView Name="Memo21" Left="252" Top="142,89765" Width="113,3859" Height="14,89765" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="PLAZO DE ENTREGA"/>
<TfrxMemoView Name="Memo22" Left="252" Top="157,57483" Width="212,59864" Height="69,82684" StretchMode="smActualHeight" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="[frxDBCabecera.&#34;PLAZO_ENTREGA&#34;]"/>
<TfrxMemoView Name="Memo2" Left="88" Top="32" Width="113,3859" Height="14,89765" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="5" ParentFont="False" Text="CONFORME CLIENTE"/>
<TfrxMemoView Name="Memo3" Left="264" Top="32" Width="381,3859" Height="14,89765" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="5" HAlign="haRight" ParentFont="False" Text="CONFORME [Uppercase(&#60;frxDBCabecera.&#34;RAZON_SOCIAL&#34;&#62;)]"/>
</TfrxPageFooter>
<TfrxFooter Name="Footer1" Height="24" Left="0" Top="400" Width="718,101251175">
<TfrxShapeView Name="Shape7" Left="0" Top="0" Width="718" Height="26" Color="15790320"/>
<TfrxLineView Name="Line1" Align="baWidth" Left="0" Top="0" Width="718,101251175" Height="0" Frame.Typ="4"/>
<TfrxMemoView Name="Memo11" Left="304" Top="0" Width="412,75603" Height="22,89765" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20>" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Total presupuesto: [frxDBCabecera.&#34;IMPORTE_TOTAL&#34;]"/>
</TfrxFooter>
<TfrxReportSummary Name="ReportSummary1" Height="36" Left="0" Top="484" Width="718,101251175" KeepChild="True" Stretched="True">
<TfrxSubreport Name="Subreport1" Align="baClient" Left="0" Top="0" Width="718,101251175" Height="36" Page="Page2"/>
</TfrxReportSummary>
<TfrxMemoView Name="Memo20" Left="0" Top="539,77953" Width="718,10125118" Height="18,89765" OnBeforePrint="Memo20OnBeforePrint" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="1" Frame.Typ="4" HAlign="haRight" ParentFont="False" Text="[IIF(&#60;Page#&#62;=&#60;TotalPages#&#62;,'','Sigue en la siguiente hoja')]"/>
</TfrxReportPage>
<TfrxReportPage Name="Page2" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="10" RightMargin="10" TopMargin="10" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="" HGuides.Text="" VGuides.Text="">
<TfrxHeader Name="Header1" Height="46" Left="0" Top="16" Width="718,1107" OnBeforePrint="Header1OnBeforePrint" ReprintOnNewPage="True">
<TfrxShapeView Name="Shape8" Left="0" Top="20" Width="718" Height="26" Color="15000804"/>
<TfrxMemoView Name="Memo14" Left="4" Top="20" Width="168" Height="24" OnAfterPrint="Memo14OnAfterPrint" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Tahoma" Font.Style="1" ParentFont="False" VAlign="vaCenter" Text="RESUMEN GENERAL"/>
</TfrxHeader>
<TfrxMasterData Name="MasterData1" Height="20" Left="0" Top="80" Width="718,1107" ColumnWidth="0" ColumnGap="0" DataSet="frxDBResumenCap" DataSetName="frxDBResumenCap" RowCount="0" Stretched="True">
<TfrxRichView Name="Rich2" ShiftMode="smWhenOverlapped" Left="4" Top="0" Width="556,88219" Height="20" StretchMode="smMaxHeight" DataField="CONCEPTO" DataSet="frxDBResumenCap" DataSetName="frxDBResumenCap" GapX="2" GapY="1" Wysiwyg="False" PropData="0852696368456469740ABA0000007B5C727466315C616E73695C616E7369637067313235325C64656666305C6465666C616E67333038327B5C666F6E7474626C7B5C66305C666E696C205461686F6D613B7D7B5C66315C666E696C5C666368617273657430205461686F6D613B7D7D0D0A5C766965776B696E64345C7563315C706172645C66305C66733230205B66727844425C663120526573756D656E4361705C6630202E225C663120434F4E434550544F5C663020225D5C667331365C7061720D0A7D0D0A00"/>
<TfrxMemoView Name="Memo25" Left="561" Top="0" Width="157,16535189" Height="20" StretchMode="smMaxHeight" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20> " DisplayFormat.Kind="fkNumeric" Font.Charset="0" Font.Color="-16777208" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" Frame.Typ="3" HAlign="haRight" HideZeros="True" LineSpacing="4" ParentFont="False" Style="Concepto normal" Text="[frxDBResumenCap.&#34;IMPORTE_TOTAL&#34;]"/>
<TfrxLineView Name="Line3" Left="0" Top="0" Width="0" Height="20" StretchMode="smMaxHeight" Frame.Typ="1"/>
</TfrxMasterData>
<TfrxFooter Name="Footer3" Height="24" Left="0" Top="120" Width="718,1107">
<TfrxMemoView Name="Memo32" Left="0" Top="0" Width="718" Height="24" AllowHTMLTags="True" Color="15790320" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20> " DisplayFormat.Kind="fkNumeric" Frame.Typ="15" HAlign="haRight" HideZeros="True" VAlign="vaCenter" Text="&#60;b&#62;Importe total:&#60;/b&#62; [SUM(&#60;frxDBResumenCap.&#34;IMPORTE_TOTAL&#34;&#62;)]"/>
</TfrxFooter>
<TfrxMasterData Name="MasterData2" Height="20" Left="0" Top="164" Width="718,1107" ColumnWidth="0" ColumnGap="0" DataSet="frxDBResumenDto" DataSetName="frxDBResumenDto" RowCount="0" Stretched="True">
<TfrxMemoView Name="Memo29" Left="561" Top="0" Width="157,17" Height="20" StretchMode="smMaxHeight" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20> " DisplayFormat.Kind="fkNumeric" Font.Charset="0" Font.Color="-16777208" Font.Height="-12" Font.Name="Tahoma" Font.Style="0" Frame.Typ="3" HAlign="haRight" HideZeros="True" LineSpacing="4" ParentFont="False" Style="Concepto normal" VAlign="vaCenter" Text="[frxDBResumenDto.&#34;IMPORTE_TOTAL&#34;]"/>
<TfrxRichView Name="Rich3" ShiftMode="smWhenOverlapped" Left="4" Top="0" Width="552,88219" Height="20" StretchMode="smActualHeight" GapX="2" GapY="1" Wysiwyg="False" PropData="0852696368456469740ABA0000007B5C727466315C616E73695C616E7369637067313235325C64656666305C6465666C616E67333038327B5C666F6E7474626C7B5C66305C666E696C205461686F6D613B7D7B5C66315C666E696C5C666368617273657430205461686F6D613B7D7D0D0A5C766965776B696E64345C7563315C706172645C66305C66733138205B66727844425C663120526573756D656E44746F5C6630202E225C663120434F4E434550544F5C663020225D5C667331365C7061720D0A7D0D0A00"/>
<TfrxLineView Name="Line2" Left="0" Top="0" Width="0" Height="20" StretchMode="smMaxHeight" Frame.Typ="1"/>
</TfrxMasterData>
<TfrxFooter Name="Footer2" Height="52" Left="0" Top="204" Width="718,1107">
<TfrxShapeView Name="Shape1" Left="0" Top="24" Width="718" Height="26" Color="15000804"/>
<TfrxMemoView Name="Memo9" Left="0" Top="24" Width="716,75603" Height="22,89765" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20>" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Tahoma" Font.Style="1" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Total del presupuesto: [frxDBCabecera.&#34;IMPORTE_TOTAL&#34;]"/>
<TfrxMemoView Name="Memo1" Left="0" Top="0" Width="718" Height="24" AllowHTMLTags="True" Color="15790320" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20> " DisplayFormat.Kind="fkNumeric" Frame.Typ="15" HAlign="haRight" HideZeros="True" VAlign="vaCenter" Text="&#60;b&#62;Total de descuento:&#60;/b&#62; [SUM(&#60;frxDBResumenDto.&#34;IMPORTE_TOTAL&#34;&#62;)]"/>
</TfrxFooter>
<TfrxMasterData Name="MasterData3" Height="48" Left="0" Top="276" Width="718,1107" ColumnWidth="0" ColumnGap="0" DataSet="frxDBCondicionesContrato" DataSetName="frxDBCondicionesContrato" RowCount="0" Stretched="True">
<TfrxRichView Name="Rich1" Left="4" Top="16" Width="708" Height="28" StretchMode="smMaxHeight" DataField="VALOR" DataSet="frxDBCondicionesContrato" DataSetName="frxDBCondicionesContrato" GapX="2" GapY="1" PropData="0852696368456469740A6C0000007B5C727466315C616E73695C616E7369637067313235325C64656666305C6465666C616E67333038327B5C666F6E7474626C7B5C66305C666E696C205461686F6D613B7D7D0D0A5C766965776B696E64345C7563315C706172645C66305C667331365C7061720D0A7D0D0A00"/>
</TfrxMasterData>
</TfrxReportPage>
</TfrxReport>