AbetoDesign_FactuGES2/Source/Informes/2/InfFacturaCliente.fr3

79 lines
26 KiB
XML
Raw Blame History

<?xml version="1.0" encoding="utf-8"?>
<TfrxReport Version="4.3" DotMatrixReport="False" EngineOptions.DoublePass="True" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.OutlineWidth="180" PreviewOptions.Zoom="1" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="37871,9953986921" ReportOptions.Description.Text="" ReportOptions.LastChange="40094,6663105324" ReportOptions.VersionBuild="1" ReportOptions.VersionMajor="12" ReportOptions.VersionMinor="13" ReportOptions.VersionRelease="1" ScriptLanguage="PascalScript" ScriptText.Text="procedure DatosClienteOnBeforePrint(Sender: TfrxComponent);&#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; if (&#60;frxDBCabecera.&#34;PROVINCIA&#34;&#62; &#60;&#62; '') then&#13;&#10; DatosCliente.Lines.Add(&#60;frxDBCabecera.&#34;PROVINCIA&#34;&#62;);&#13;&#10;end;&#13;&#10;&#13;&#10;procedure BandaDetallesOnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; BandaDetalles.StartNewPage := False;&#13;&#10; BandaDetalles.Visible := True;&#13;&#10; MemPrecio.Style := 'Concepto normal';&#13;&#10; MemCantidad.Style := 'Concepto normal';&#13;&#10; MemImpTotal.Style := 'Concepto normal';&#13;&#10; memConcepto.Visible := True;&#13;&#10;&#13;&#10; case &#60;frxDBDetalles.&#34;TIPO_DETALLE&#34;&#62; of&#13;&#10; 'Salto': begin&#13;&#10; BandaDetalles.StartNewPage := True;&#13;&#10; memConcepto.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; MemPrecio.Style := 'Concepto normal';&#13;&#10; MemCantidad.Style := 'Concepto normal';&#13;&#10; MemImpTotal.Style := 'Concepto normal';&#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; BandaDetalles.Visible := False;&#13;&#10; memConcepto.Color := clNone;&#13;&#10; end;&#13;&#10; end;&#13;&#10;&#13;&#10; memConcepto.Color := MemImpTotal.Color;&#13;&#10; memConcepto.Frame := MemImpTotal.Frame;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure ReportSummary1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;// if Engine.FreeSpace &#62; ReportSummary1.Height then &#13;&#10; Engine.CurY := Engine.PageHeight - ReportSummary1.Height - Band3.Height - 1&#13;&#10;end;&#13;&#10;&#13;&#10;procedure Memo15OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; Memo15.Lines.Clear;&#13;&#10; if (StrToFloat(&#60;frxDBCabecera.&#34;BASE_IMPONIBLE&#34;&#62;) &#60; 0) then&#13;&#10; Memo15.Lines.Add('ABONO')&#13;&#10; else&#13;&#10; Memo15.Lines.Add('FACTURA')&#13;&#10;end;&#13;&#10;&#13;&#10;procedure Band2OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; if not Engine.FinalPass then&#13;&#10; Set('TotalPaginas', (&#60;TotalPaginas&#62; + 1));&#13;&#10;&#13;&#10; if Engine.FinalPass then&#13;&#10; Set('Pagina', (&#60;Pagina&#62; + 1));&#13;&#10;&#13;&#10; if Engine.FinalPass and (&#60;TotalPaginas&#62; &#62; &#60;Pagina&#62;) then&#13;&#10; begin &#13;&#10; LineaCorta1.visible := False; &#13;&#10; LineaLarga1.visible := True; &#13;&#10; LineaCorta2.visible := False; &#13;&#10; LineaLarga2.visible := True; &#13;&#10; &#13;&#10; end&#13;&#10; else&#13;&#10; begin&#13;&#10; LineaCorta1.visible := True; &#13;&#10; LineaLarga1.visible := False;&#13;&#10; LineaCorta2.visible := True; &#13;&#10; LineaLarga2.visible := False;&#13;&#10; &#13;&#10; end; &#13;&#10;end;&#13;&#10;&#13;&#10;procedure frxReportOnStartReport(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; Set('Pagina', 0);&#13;&#10; Set('TotalPaginas', 0);&#13;&#10;end;&#13;&#10;&#13;&#10;procedure Memo26OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin &#13;&#10; if (&#60;frxDBCabecera.&#34;DESCUENTO&#34;&#62; &#62; 0) then&#13;&#10; begin&#13;&#10; Memo26.visible := True; &#13;&#10; end&#13;&#10; else&#13;&#10; begin&#13;&#10; Memo26.visible := False; &#13;&#10; end; &#13;&#10;end;&#13;&#10;&#13;&#10;procedure Memo25OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; if (&#60;frxDBCabecera.&#34;IVA&#34;&#62; &#62; 0) then&#13;&#10; begin&#13;&#10; Memo25.visible := True; &#13;&#10; end&#13;&#10; else&#13;&#10; begin&#13;&#10; Memo25.visible := False; &#13;&#10; end; &#13;&#10;end;&#13;&#10;&#13;&#10;procedure Memo21OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; if (&#60;frxDBCabecera.&#34;RE&#34;&#62; &#62; 0) then&#13;&#10; begin&#13;&#10; Memo21.visible := True; &#13;&#10; end&#13;&#10; else&#13;&#10; begin&#13;&#10; Memo21.visible := False; &#13;&#10; end; &#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;procedure ReportSummary1OnAfterCalcHeight(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;//Es peor el remedio que la enfermedad, en el caso de sobre pasar en uno el numero de conceptos para que no quepa el reportsumary,&#13;&#10;//no hay forma de ponerlo al final en la p<>gina siguiente hasta que el numero de conceptos rellene al menos un concepto de la siguiente hoja. &#13;&#10;// if Engine.FreeSpace &#62; ReportSummary1.Height then &#13;&#10;// Engine.CurY := Engine.PageHeight - ReportSummary1.Height - Band3.Height - 1&#13;&#10;end;&#13;&#10;&#13;&#10;begin&#13;&#10;&#13;&#10;end." ShowProgress="False" StoreInDFM="False" OnStartReport="frxReportOnStartReport" PropData="044C65667403A90003546F70021008446174617365747301010C3400000020446174615365743D22667278444243616265636572612220446174615365744E616D653D22667278444243616265636572612200010C3400000020446174615365743D226672784442446574616C6C65732220446174615365744E616D653D226672784442446574616C6C65732200010C2000000020446174615365744E616D653D22667278444256656E63696D69656E746F73220000095661726961626C657301010C13000000204E616D653D2220506167696E6163696F6E2200010C0E000000204E616D653D22506167696E612200010C14000000204E616D653D22546F74616C506167696E6173220000055374796C6501010C85000000204E616D653D22436F6E636570746F206E6F726D616C2220436F6C6F723D223533363837303931312220466F6E742E436861727365743D22302220466F6E742E436F6C6F723D222D31363737373230382220466F6E742E4865696768743D222D31322220466F6E742E4E616D653D225461686F6D612220466F6E742E5374796C653D22302200010C87000000204E616D653D22436F6E636570746F20737562746F74616C2220436F6C6F723D223533363837303931312220466F6E742E436861727365743D22302220466F6E742E436F6C6F723D222D31363737373230382220466F6E742E4865696768743D222D31322220466F6E742E4E616D653D225461686F6D612220466F6E742E5374796C653D22312200010C97000000204E616D653D22436162656365726120646520636F6C756D6E612220436F6C6F723D2231353739303332302220466F6E742E436861727365743D22302220466F6E742E436F6C6F723D222D31363737373230382220466F6E742E4865696768743D222D31322220466F6E742E4E616D653D225461686F6D612220466F6E742E5374796C653D223122204672616D652E5479703D2231352200010C85000000204E616D653D22436F6E636570746F20746974756C6F2220436F6C6F723D223533363837303931312220466F6E742E436861727365743D22302220466F6E742E436F6C6F723D222D31363737373230382220466F6E742E4865696768743D222D31332220466F6E742E4E616D653D225461686F6D612220466F6E742E5374796C653D2231220000">
<TfrxDataPage Name="Data" Height="1000" Left="0" Top="0" Width="1000"/>
<TfrxReportPage Name="Page1" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="1" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="10,00125" RightMargin="10,00125" TopMargin="10,00125" BottomMargin="10,00125" Columns="1" ColumnWidth="209,999791666667" ColumnPositions.Text="0" LargeDesignHeight="True" PrintOnPreviousPage="True" HGuides.Text="" VGuides.Text="">
<TfrxPageHeader Name="Band2" Height="277,60631142" Left="0" Top="18,89765" Width="718,101251175" OnBeforePrint="Band2OnBeforePrint">
<TfrxMemoView Name="Memo24" Align="baBottom" Left="625,16574" Top="251,14961851" Width="92,94496" Height="26,45669291" Color="14672103" Font.Charset="0" Font.Color="1310975" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" Frame.Typ="12" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Importe total"/>
<TfrxShapeView Name="Shape1" Left="7,55906" Top="132,94496" Width="351,49629" Height="109,60637" Color="16777215" Shape="skRoundRectangle"/>
<TfrxShapeView Name="Shape2" Left="370,83488" Top="132,94496" Width="345,71676" Height="109,60637" Color="16777215" Shape="skRoundRectangle"/>
<TfrxMemoView Name="Memo16" Left="15,11812" Top="140,06308" Width="27,33859" Height="18,89765" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="Nº:"/>
<TfrxMemoView Name="Memo17" Left="15,11812" Top="166,189085" Width="45,35436" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="Fecha:"/>
<TfrxMemoView Name="Memo18" Left="15,11812" Top="189,65368" Width="60,47248" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="Página nº:"/>
<TfrxMemoView Name="Memo19" Left="381,37817" Top="144,28355" Width="328,37817" Height="37,7953" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="[frxDBCabecera.&#34;NOMBRE&#34;]&#13;&#10;[frxDBCabecera.&#34;NIF_CIF&#34;]"/>
<TfrxMemoView Name="DatosCliente" Left="381,37817" Top="182,07885" Width="328,37817" Height="56,47248" OnBeforePrint="DatosClienteOnBeforePrint" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text=""/>
<TfrxMemoView Name="Memo3" Align="baBottom" Left="405,92146" Top="251,14961851" Width="63,14966" Height="26,45669291" Color="14672103" Font.Charset="0" Font.Color="1310975" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" Frame.Typ="12" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Cantidad"/>
<TfrxMemoView Name="Memo4" Align="baBottom" Left="469,07112" Top="251,14961851" Width="95,62214" Height="26,45669291" Color="14672103" Font.Charset="0" Font.Color="1310975" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" Frame.Typ="12" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Precio unidad"/>
<TfrxMemoView Name="Memo5" Left="46,01577" Top="140,06308" Width="309,26005" Height="18,89765" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="[frxDBCabecera.&#34;REFERENCIA&#34;]"/>
<TfrxMemoView Name="Memo6" Left="64,03154" Top="165,630025" Width="291,24428" Height="18,89765" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="[frxDBCabecera.&#34;FECHA_FACTURA&#34;]"/>
<TfrxMemoView Name="Memo7" Left="75,37013" Top="189,65368" Width="181,63791" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="[&#60;Pagina&#62;] / [&#60;TotalPaginas&#62;]"/>
<TfrxLineView Name="Line1" Left="718" Top="252,21718" Width="0" Height="704" Frame.Typ="1"/>
<TfrxMemoView Name="Memo15" Left="440,1577" Top="18,89765" Width="270,39394" Height="64,25201" OnBeforePrint="Memo15OnBeforePrint" Font.Charset="1" Font.Color="11053757" Font.Height="-48" Font.Name="Tahoma" Font.Style="1" Frame.Color="14211288" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="FACTURA"/>
<TfrxMemoView Name="Memo37" Align="baBottom" Left="564,26283333" Top="251,14961851" Width="61,60637" Height="26,45669291" Color="14672103" Font.Charset="0" Font.Color="-16777208" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" Frame.Typ="12" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text=""/>
<TfrxLineView Name="LineaCorta2" Left="564,28346457" Top="252,21718" Width="0" Height="567" Frame.Typ="1"/>
<TfrxMemoView Name="Memo12" Left="15,11812" Top="213,9765" Width="113,3859" Height="18,67718" Visible="False" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="Forma de pago:"/>
<TfrxMemoView Name="Memo14" Left="132,28355" Top="215,09462" Width="222,7718" Height="17,82684" Visible="False" StretchMode="smActualHeight" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="[frxDBCabecera.&#34;FORMA_PAGO&#34;]"/>
<TfrxLineView Name="Line7" Left="617,7953" Top="251,11286333" Width="0" Height="704" Frame.Typ="1"/>
<TfrxLineView Name="LineaCorta1" Left="469,02752" Top="252,21718" Width="0" Height="567" Frame.Typ="1"/>
<TfrxMemoView Name="Memo23" Align="baBottom" Left="4" Top="251,14961851" Width="402,15" Height="26,45669291" Color="14672103" DisplayFormat.DecimalSeparator="," Font.Charset="0" Font.Color="1310975" Font.Height="-12" Font.Name="Tahoma" Font.Style="1" Frame.Typ="12" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Concepto"/>
<TfrxLineView Name="Line2" Left="4" Top="252,21718" Width="0" Height="704" Frame.Typ="1"/>
<TfrxLineView Name="Line5" Left="406,14193" Top="252,21718" Width="0" Height="704" Frame.Typ="1"/>
<TfrxLineView Name="LineaLarga1" Left="469" Top="252" Width="0" Height="704" Frame.Typ="1"/>
<TfrxLineView Name="LineaLarga2" Left="564" Top="252" Width="0" Height="704" Frame.Typ="1"/>
</TfrxPageHeader>
<TfrxPageFooter Name="Band3" Height="91,08655559" Left="0" Top="1632,75696" Width="718,101251175">
<TfrxLineView Name="Line6" Left="4" Top="0" Width="715" Height="0" Frame.Typ="4"/>
</TfrxPageFooter>
<TfrxMasterData Name="BandaDetalles" Height="19,11812" Left="0" Top="359,05535" Width="718,101251175" OnBeforePrint="BandaDetallesOnBeforePrint" AllowSplit="True" Columns="1" ColumnWidth="200" ColumnGap="20" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" RowCount="0" Stretched="True">
<TfrxMemoView Name="Memo38" Left="565,59616667" Top="0" Width="50,26768724" Height="18" StretchMode="smMaxHeight" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 %" DisplayFormat.Kind="fkNumeric" Font.Charset="0" Font.Color="-16777208" Font.Height="-12" Font.Name="DejaVu Sans Mono" Font.Style="0" GapX="3" GapY="3" HAlign="haRight" HideZeros="True" LineSpacing="4" ParentFont="False" Text="[frxDBDetalles.&#34;DESCUENTO&#34;]"/>
<TfrxMemoView Name="MemPrecio" Left="470,96059087" Top="0" Width="91,84251724" Height="18" 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="DejaVu Sans Mono" Font.Style="0" GapX="3" GapY="3" HAlign="haRight" HideZeros="True" LineSpacing="4" ParentFont="False" Text="[frxDBDetalles.&#34;IMPORTE_UNIDAD&#34;]"/>
<TfrxMemoView Name="MemImpTotal" Left="619,49605811" Top="0" Width="96,72441189" Height="18" 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="DejaVu Sans Mono" Font.Style="0" GapX="3" GapY="3" HAlign="haRight" HideZeros="True" LineSpacing="4" ParentFont="False" Text="[frxDBDetalles.&#34;IMPORTE_TOTAL&#34;]"/>
<TfrxMemoView Name="MemCantidad" Left="407,81098457" Top="0" Width="59,37007874" Height="18" StretchMode="smMaxHeight" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#0 " DisplayFormat.Kind="fkNumeric" Font.Charset="0" Font.Color="-16777208" Font.Height="-12" Font.Name="DejaVu Sans Mono" Font.Style="0" GapX="3" GapY="3" HAlign="haRight" HideZeros="True" LineSpacing="4" ParentFont="False" Text="[frxDBDetalles.&#34;CANTIDAD&#34;]"/>
<TfrxMemoView Name="Memo2" Left="351,62214" Top="0" Width="49,98423" Height="15,11812" Visible="False" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" Text="[frxDBDetalles.&#34;TIPO_DETALLE&#34;]"/>
<TfrxMemoView Name="memConcepto" Left="7,55906" Top="0" Width="393,92146" Height="18,14173228" StretchMode="smActualHeight" DataSet="frxDBDetalles" DataSetName="frxDBDetalles" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="DejaVu Sans Mono" Font.Style="0" ParentFont="False" Text="[frxDBDetalles.&#34;CONCEPTO&#34;]"/>
</TfrxMasterData>
<TfrxReportSummary Name="ReportSummary1" Height="148,50402" Left="0" Top="1462,67811" Width="718,101251175" OnAfterCalcHeight="ReportSummary1OnAfterCalcHeight" OnBeforePrint="ReportSummary1OnBeforePrint" Stretched="True">
<TfrxShapeView Name="Shape4" Left="4" Top="12,5" Width="714" Height="136,5"/>
<TfrxMemoView Name="Memo30" Left="13,13389" Top="25,5040200000001" Width="113,3859" Height="14,89765" Visible="False" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="1" ParentFont="False" Text="VENCIMIENTOS"/>
<TfrxSubreport Name="Subreport1" Left="13,38559" Top="47,6771799999999" Width="332" Height="92" Visible="False" Page="Page2" PrintOnParent="True"/>
<TfrxShapeView Name="Shape10" Left="406,40971" Top="125,16543" Width="312,36982" Height="23,45669535" Color="14672103"/>
<TfrxShapeView Name="Shape9" Left="406,18924" Top="103,26778" Width="312,36982" Height="22,67716535"/>
<TfrxShapeView Name="Shape8" Left="406,18924" Top="80,5906" Width="312,36982" Height="22,67716535"/>
<TfrxShapeView Name="Shape7" Left="406,40971" Top="58,37013" Width="312,36982" Height="22,67716535"/>
<TfrxShapeView Name="Shape6" Left="406,18924" Top="35,01577" Width="312,36982" Height="22,67716535"/>
<TfrxShapeView Name="Shape3" Left="406,40971" Top="12,1181200000001" Width="312,36982" Height="22,67716535"/>
<TfrxMemoView Name="Memo9" Left="621,73227858" Top="127,50402" Width="94,48819386" Height="19,11812" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20>" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="1310975" Font.Height="-12" Font.Name="DejaVu Sans Mono" Font.Style="1" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[frxDBCabecera.&#34;IMPORTE_TOTAL&#34;]"/>
<TfrxMemoView Name="Memo10" Left="499,45669291" Top="129,40167" Width="114,10235" Height="16" Font.Charset="1" Font.Color="1310975" Font.Height="-13" Font.Name="Tahoma" Font.Style="1" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Total factura"/>
<TfrxMemoView Name="Memo8" Left="621,73227858" Top="17,67718" Width="94,48819386" Height="15,33859" 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="DejaVu Sans Mono" Font.Style="0" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="[frxDBCabecera.&#34;IMPORTE_NETO&#34;]"/>
<TfrxMemoView Name="Memo13" Left="499,45669291" Top="16,7953" Width="116" Height="16" DisplayFormat.DecimalSeparator="," Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Importe neto"/>
<TfrxMemoView Name="Memo25" Left="499,45669291" Top="83,4882500000001" Width="116" Height="16" OnBeforePrint="Memo25OnBeforePrint" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 %" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="IVA [frxDBCabecera.&#34;IVA&#34;]"/>
<TfrxMemoView Name="Memo33" Left="621,73227858" Top="81,37013" Width="94,48819386" Height="19,11812" 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="DejaVu Sans Mono" Font.Style="0" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="[frxDBCabecera.&#34;IMPORTE_IVA&#34;]"/>
<TfrxMemoView Name="Memo21" Left="499,45669291" Top="106,72449" Width="116" Height="16" OnBeforePrint="Memo21OnBeforePrint" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 %" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="RE [frxDBCabecera.&#34;RE&#34;]"/>
<TfrxMemoView Name="Memo29" Left="621,73227858" Top="104,26778" Width="94,48819386" Height="19,11812" 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="DejaVu Sans Mono" Font.Style="0" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="[frxDBCabecera.&#34;IMPORTE_RE&#34;]"/>
<TfrxMemoView Name="Memo1" Left="499,45669291" Top="61,9134200000001" Width="116" Height="16" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Base imponible"/>
<TfrxMemoView Name="Memo11" Left="621,73227858" Top="60,91342" Width="94,48819386" Height="15,33859" 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="DejaVu Sans Mono" Font.Style="0" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="[frxDBCabecera.&#34;BASE_IMPONIBLE&#34;]"/>
<TfrxMemoView Name="Memo26" Left="499,45669291" Top="38,7953" Width="116" Height="16" OnBeforePrint="Memo26OnBeforePrint" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 %" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Tahoma" Font.Style="0" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="Dto [frxDBCabecera.&#34;DESCUENTO&#34;]"/>
<TfrxMemoView Name="Memo27" Left="621,73227858" Top="39,01577" Width="94,48819386" Height="15,33859" 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="DejaVu Sans Mono" Font.Style="0" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="[frxDBCabecera.&#34;IMPORTE_DESCUENTO&#34;]"/>
<TfrxLineView Name="Line8" Left="617,952755905512" Top="14,3385900000001" Width="0" Height="134,17322835" Frame.Typ="1"/>
</TfrxReportSummary>
<TfrxOverlay Name="Overlay1" Height="1000" Left="0" Top="400,63018" Width="718,101251175">
<TfrxPictureView Name="Picture2" Left="406" Top="318" Width="364" Height="469"/>
</TfrxOverlay>
</TfrxReportPage>
<TfrxReportPage Name="Page2" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="10,00125" RightMargin="10,00125" TopMargin="10,00125" BottomMargin="10,00125" Columns="1" ColumnWidth="209,999791666667" ColumnPositions.Text="0" LargeDesignHeight="True" PrintOnPreviousPage="True" HGuides.Text="" VGuides.Text="">
<TfrxMasterData Name="MasterData1" Height="13,82684" Left="0" Top="16" Width="718,101251175" ColumnWidth="0" ColumnGap="0" DataSetName="frxDBVencimientos" RowCount="0">
<TfrxMemoView Name="Memo31" Left="0" Top="0" Width="79,90569" Height="13,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="[frxDBVencimientos.&#34;FECHA_VENCIMIENTO&#34;]"/>
<TfrxMemoView Name="Memo40" Left="86,92919" Top="0" Width="98,80334" Height="13,82684" StretchMode="smActualHeight" DataSet="frxDBCabecera" DataSetName="frxDBCabecera" DisplayFormat.DecimalSeparator="," DisplayFormat.FormatStr="#,0.00 <20>" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" ParentFont="False" Text="[frxDBVencimientos.&#34;IMPORTE_TOTAL&#34;]"/>
</TfrxMasterData>
</TfrxReportPage>
</TfrxReport>