<?xml version="1.0" encoding="utf-8"?>
<TfrxReport Version="4.9" DotMatrixReport="False" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.Author="unionsystem" ReportOptions.CreateDate="41561,8945570602" ReportOptions.Description.Text="" ReportOptions.LastChange="42223,4996155787" ScriptLanguage="PascalScript" ScriptText.Text="   &#13;&#10;function Ext1(Valor: Real): String;&#13;&#10;begin&#13;&#10;  // Linha 1&#13;&#10;&#13;&#10;  Result := Copy(Extenso(Valor), 0, 80);&#13;&#10;&#13;&#10;  while Length(Result) &#60;&#62; 80 do Result := Result + '*';&#13;&#10;end;&#13;&#10;&#13;&#10;function Ext2(Valor: Real): String;&#13;&#10;begin&#13;&#10;  // Linha 2&#13;&#10;&#13;&#10;  Result := Copy(Extenso(Valor), 81, 80);&#13;&#10;&#13;&#10;  while Length(Result) &#60;&#62; 80 do Result := Result + '*';&#13;&#10;end;&#13;&#10;&#13;&#10;function Ext3(Valor: Real): String;&#13;&#10;begin&#13;&#10;  // Linha 3&#13;&#10;&#13;&#10;  Result := Copy(Extenso(Valor), 162, 80);&#13;&#10;&#13;&#10;  while Length(Result) &#60;&#62; 80 do Result := Result + '*';&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;function Extenso(Valor: Real): String;&#13;&#10;&#13;&#10;function Mini(Valor: String): String;&#13;&#10;var&#13;&#10;  Texto : array[0..36] of string = (['A','UM', 'DOIS', 'TRES', 'QUATRO', 'CINCO', 'SEIS', 'SETE',&#13;&#10;                                   'OITO', 'NOVE', 'DEZ', 'ONZE', 'DOZE', 'TREZE', 'CATORZE',&#13;&#10;                                   'QUINZE', 'DEZESSEIS', 'DEZESSETE', 'DEZOITO', 'DEZENOVE',&#13;&#10;                                   'VINTE', 'TRINTA', 'QUARENTA', 'CINQÜENTA', 'SESSENTA',&#13;&#10;                                   'SETENTA', 'OITENTA', 'NOVENTA', 'CENTO', 'DUZENTOS',&#13;&#10;                                   'TREZENTOS', 'QUATROCENTOS', 'QUINHENTOS', 'SEISCENTOS', 'SETECENTOS', 'OITOCENTOS', 'NOVECENTOS']);&#13;&#10;begin&#13;&#10;  // Mini extenso&#13;&#10;&#13;&#10;  Result := '';&#13;&#10;&#13;&#10;  if Valor &#60;&#62; '000' then&#13;&#10;  begin&#13;&#10;    if StrToInt(Valor) &#60;= 20 then&#13;&#10;    begin&#13;&#10;      Result := Result + Texto[StrToInt(Valor)];&#13;&#10;    end&#13;&#10;    else&#13;&#10;    if (StrToInt(Valor) &#62; 20) and (StrToInt(Valor) &#60; 100) then&#13;&#10;    begin&#13;&#10;      if Copy(Valor, 2, 1) = '2' then Result := Result + Texto[20];&#13;&#10;      if Copy(Valor, 2, 1) = '3' then Result := Result + Texto[21];&#13;&#10;      if Copy(Valor, 2, 1) = '4' then Result := Result + Texto[22];&#13;&#10;      if Copy(Valor, 2, 1) = '5' then Result := Result + Texto[23];&#13;&#10;      if Copy(Valor, 2, 1) = '6' then Result := Result + Texto[24];&#13;&#10;      if Copy(Valor, 2, 1) = '7' then Result := Result + Texto[25];&#13;&#10;      if Copy(Valor, 2, 1) = '8' then Result := Result + Texto[26];&#13;&#10;      if Copy(Valor, 2, 1) = '9' then Result := Result + Texto[27];&#13;&#10;&#13;&#10;      if Copy(Valor, 3, 1) &#60;&#62; '0' then Result := Result + ' E ' + Texto[StrToInt(Copy(Valor, 3, 1))];&#13;&#10;    end&#13;&#10;    else&#13;&#10;    if StrToInt(Valor) &#62; 99 then&#13;&#10;    begin&#13;&#10;      if Valor = '100' then Result := Result + 'CEM' else&#13;&#10;      begin&#13;&#10;        if Copy(Valor, 1, 1) = '1' then Result := Result + Texto[28];&#13;&#10;        if Copy(Valor, 1, 1) = '2' then Result := Result + Texto[29];&#13;&#10;        if Copy(Valor, 1, 1) = '3' then Result := Result + Texto[30];&#13;&#10;        if Copy(Valor, 1, 1) = '4' then Result := Result + Texto[31];&#13;&#10;        if Copy(Valor, 1, 1) = '5' then Result := Result + Texto[32];&#13;&#10;        if Copy(Valor, 1, 1) = '6' then Result := Result + Texto[33];&#13;&#10;        if Copy(Valor, 1, 1) = '7' then Result := Result + Texto[34];&#13;&#10;        if Copy(Valor, 1, 1) = '8' then Result := Result + Texto[35];&#13;&#10;        if Copy(Valor, 1, 1) = '9' then Result := Result + Texto[36];&#13;&#10;      end;&#13;&#10;&#13;&#10;      if (StrToInt(Copy(Valor, 2, 2)) &#60;= 20) and (StrToInt(Copy(Valor, 2, 2)) &#62; 0) then&#13;&#10;      begin&#13;&#10;        Result := Result + ' E ' + Texto[StrToInt(Copy(Valor, 2, 2))];&#13;&#10;      end&#13;&#10;      else&#13;&#10;      if StrToInt(Copy(Valor, 2, 2)) &#62; 20 then&#13;&#10;      begin&#13;&#10;        if Copy(Valor, 2, 1) = '2' then Result := Result + ' E ' + Texto[20];&#13;&#10;        if Copy(Valor, 2, 1) = '3' then Result := Result + ' E ' + Texto[21];&#13;&#10;        if Copy(Valor, 2, 1) = '4' then Result := Result + ' E ' + Texto[22];&#13;&#10;        if Copy(Valor, 2, 1) = '5' then Result := Result + ' E ' + Texto[23];&#13;&#10;        if Copy(Valor, 2, 1) = '6' then Result := Result + ' E ' + Texto[24];&#13;&#10;        if Copy(Valor, 2, 1) = '7' then Result := Result + ' E ' + Texto[25];&#13;&#10;        if Copy(Valor, 2, 1) = '8' then Result := Result + ' E ' + Texto[26];&#13;&#10;        if Copy(Valor, 2, 1) = '9' then Result := Result + ' E ' + Texto[27];&#13;&#10;&#13;&#10;        if Copy(Valor, 3, 1) &#60;&#62; '0' then Result := Result + ' E ' + Texto[StrToInt(Copy(Valor, 3, 1))];&#13;&#10;      end;&#13;&#10;    end;&#13;&#10;  end;&#13;&#10;end;&#13;&#10;  &#13;&#10;&#13;&#10;  &#13;&#10;var&#13;&#10;  ValorF: String;&#13;&#10;  Bilhao, Milhao, Milhar, Centena, Centavos: String;&#13;&#10;begin&#13;&#10;  // Verifico&#13;&#10;&#13;&#10;  if (Valor &#60; 0) or (Valor &#62; 999999999999.99) then&#13;&#10;  begin&#13;&#10;    Result := 'VALOR INVÁLIDO!!!';&#13;&#10;  end&#13;&#10;  else&#13;&#10;  begin&#13;&#10;    // Formato o valor e jogo numa variável&#13;&#10;&#13;&#10;    ValorF := FormatFloat('###,###,###,###,##000000000000.00', Valor);&#13;&#10;&#13;&#10;    // Divido o valor formatado e jogo em variáveis&#13;&#10;&#13;&#10;    Bilhao   := Copy(ValorF, 0, 3);&#13;&#10;    Milhao   := Copy(ValorF, 5, 3);&#13;&#10;    Milhar   := Copy(ValorF, 9, 3);&#13;&#10;    Centena  := Copy(ValorF, 13, 3);&#13;&#10;    Centavos := '0' + Copy(ValorF, 17, 2);&#13;&#10;&#13;&#10;    Result := '';&#13;&#10;&#13;&#10;    if Mini(Bilhao) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if StrToInt(Bilhao) = 1 then Result := Result + Mini(Bilhao) + ' ' + 'BILHAO' else Result := Result + Mini(Bilhao) + ' ' + 'BILHOES';&#13;&#10;    end;&#13;&#10;&#13;&#10;    if Mini(Milhao) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if Mini(Bilhao) &#60;&#62; '' then Result := Result + ', ';&#13;&#10;&#13;&#10;      if StrToInt(Milhao) = 1 then Result := Result + Mini(Milhao) + ' ' + 'MILHAO' else Result := Result + Mini(Milhao) + ' ' + 'MILHOES';&#13;&#10;    end;&#13;&#10;&#13;&#10;    if Mini(Milhar) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if (Mini(Bilhao) &#60;&#62; '') or (Mini(Milhao) &#60;&#62; '') then Result := Result + ', ';&#13;&#10;&#13;&#10;      Result := Result + Mini(Milhar) + ' ' + 'MIL';&#13;&#10;    end;&#13;&#10;&#13;&#10;    if Mini(Centena) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if (Mini(Bilhao) &#60;&#62; '') or (Mini(Milhao) &#60;&#62; '') or (Mini(Milhar) &#60;&#62; '') then Result := Result + ', ';&#13;&#10;&#13;&#10;      Result := Result + Mini(Centena);&#13;&#10;    end;&#13;&#10;&#13;&#10;    if Trunc(Valor) &#62; 1 then Result := Result + ' REAIS' else if Trunc(Valor) = 1 then Result := Result + ' REAL';&#13;&#10;&#13;&#10;    if Mini(Centavos) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if (Mini(Bilhao) &#60;&#62; '') or (Mini(Milhao) &#60;&#62; '') or (Mini(Milhar) &#60;&#62; '') or (Mini(Centena) &#60;&#62; '') then Result := Result + ' E ';&#13;&#10;&#13;&#10;      Result := Result + Mini(Centavos) + ' CENTAVOS';&#13;&#10;    end;&#13;&#10;  end;&#13;&#10;end;&#13;&#10;  &#13;&#10;&#13;&#10;&#13;&#10;procedure Page1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; if &#60;Logo&#62; = null then exit;                                                      &#13;&#10; if &#60;Logo&#62; &#60;&#62; '' then                                           &#13;&#10;   Picture1.picture.loadfromfile(&#60;Logo&#62;);&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;begin&#13;&#10;&#13;&#10;end." PropData="044C65667403D00203546F7003820108446174617365747301010C2800000020446174615365743D22636C69656E74652220446174615365744E616D653D22636C69656E74652200010C4E00000020446174615365743D2264626974656E736F7264656D7365727669636F76656963756C6F2220446174615365744E616D653D2264626974656E736F7264656D7365727669636F76656963756C6F2200010C5600000020446174615365743D2264626974656E736F7264656D7365727669636F76656963756C6F736572762220446174615365744E616D653D2264626974656E736F7264656D7365727669636F76656963756C6F736572762200010C4200000020446174615365743D2264626F7264656D7365727669636F76656963756C6F2220446174615365744E616D653D226F7264656D7365727669636F76656963756C6F2200010C2F00000020446174615365743D2266706172616D6574726F732220446174615365744E616D653D22706172616D6574726F73220000095661726961626C657301010C11000000204E616D653D222065787465726E61732200010C0C000000204E616D653D226C6F676F220000055374796C650100">
  <TfrxDataPage Name="frxDataPage1" Height="1000" Left="0" Top="0" Width="1000"/>
  <TfrxReportPage Name="Page1" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="10" RightMargin="10" TopMargin="5" BottomMargin="2" ColumnWidth="0" ColumnPositions.Text="" PrintIfEmpty="False" HGuides.Text="" VGuides.Text="" OnBeforePrint="Page1OnBeforePrint">
    <TfrxMasterData Name="MasterData2" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Height="18,89765" Left="0" ParentFont="False" Top="551,81138" Width="718,1107" ColumnWidth="0" ColumnGap="0" DataSet="dbitensordemservicoveiculoserv" DataSetName="dbitensordemservicoveiculoserv" KeepFooter="True" KeepHeader="True" RowCount="0">
      <TfrxMemoView Name="dbitensordemservicoservquantidade" Left="0" Top="0" Width="75,5906" Height="18,89765" ShowHint="False" DataSet="dbitensordemservicoveiculoserv" DataSetName="dbitensordemservicoveiculoserv" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="[dbitensordemservicoveiculoserv.&#34;quantidade&#34;]"/>
      <TfrxMemoView Name="dbitensordemservicoservnomeproduto" Left="75,5906" Top="0" Width="366,61441" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="[dbitensordemservicoveiculoserv.&#34;nomeproduto&#34;]"/>
      <TfrxMemoView Name="dbitensordemservicoservtotal" Left="608,50433" Top="0" Width="109,60637" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="[dbitensordemservicoveiculoserv.&#34;total&#34;]"/>
      <TfrxMemoView Name="dbitensordemservicoservdesconto" Left="442,20501" Top="0" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[dbitensordemservicoveiculoserv.&#34;desconto&#34;]"/>
      <TfrxMemoView Name="dbitensordemservicoservvalor1" Left="525,35467" Top="0" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[dbitensordemservicoveiculoserv.&#34;valor&#34;]"/>
    </TfrxMasterData>
    <TfrxMasterData Name="MasterData1" Height="18,89765" Left="0" Top="461,10266" Width="718,1107" ColumnWidth="0" ColumnGap="0" DataSet="dbitensordemservicoveiculo" DataSetName="dbitensordemservicoveiculo" KeepFooter="True" KeepHeader="True" RowCount="0">
      <TfrxMemoView Name="dbitensordemserviconomeproduto" Left="75,5906" Top="0" Width="366,61441" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="[dbitensordemservicoveiculo.&#34;nomeproduto&#34;]"/>
      <TfrxMemoView Name="dbitensordemservicovalor" Left="525,35467" Top="0" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="[dbitensordemservicoveiculo.&#34;valor&#34;]"/>
      <TfrxMemoView Name="dbitensordemservicototal" Left="608,50433" Top="0" Width="109,60637" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="[dbitensordemservicoveiculo.&#34;total&#34;]"/>
      <TfrxMemoView Name="dbitensordemservicodesconto" Left="442,20501" Top="0" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[dbitensordemservicoveiculo.&#34;desconto&#34;]"/>
      <TfrxMemoView Name="dbitensordemservicoquantidade" Left="0" Top="0" Width="75,5906" Height="18,89765" ShowHint="False" DataSet="dbitensordemservicoveiculo" DataSetName="dbitensordemservicoveiculo" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="13" HideZeros="True" ParentFont="False" Text="[dbitensordemservicoveiculo.&#34;quantidade&#34;]"/>
    </TfrxMasterData>
    <TfrxFooter Name="Footer1" Height="26,45671" Left="0" Top="502,67749" Width="718,1107">
      <TfrxSysMemoView Name="SysMemo2" Left="442,20501" Top="2" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" Text="[SUM(&#60;dbitensordemservicoveiculo.&#34;desconto&#34;&#62;,MasterData1)]"/>
      <TfrxSysMemoView Name="SysMemo1" Left="608,50433" Top="2" Width="109,60637" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" Text="[SUM(&#60;dbitensordemservicoveiculo.&#34;total&#34;&#62;,MasterData1)]"/>
      <TfrxMemoView Name="Memo39" Left="525,35467" Top="2" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Total PeÃ§as"/>
      <TfrxMemoView Name="Memo42" Left="359,05535" Top="2" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Descontos"/>
    </TfrxFooter>
    <TfrxFooter Name="Footer2" Height="26,45671" Left="0" Top="593,38621" Width="718,1107">
      <TfrxSysMemoView Name="SysMemo3" Left="442,20501" Top="1,77953" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" Text="[SUM(&#60;dbitensordemservicoveiculoserv.&#34;desconto&#34;&#62;,MasterData2)]"/>
      <TfrxSysMemoView Name="SysMemo4" Left="608,50433" Top="1,77953" Width="109,60637" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" Text="[SUM(&#60;dbitensordemservicoveiculoserv.&#34;total&#34;&#62;,MasterData2)]"/>
      <TfrxMemoView Name="Memo38" Left="525,35467" Top="1,77953" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Total Serv."/>
      <TfrxMemoView Name="Memo41" Left="359,05535" Top="1,77953" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Descontos"/>
    </TfrxFooter>
    <TfrxReportSummary Name="ReportSummary1" Height="204,5671" Left="0" Top="680,3154" Width="718,1107">
      <TfrxMemoView Name="dbitensordemservicoservvalor" Left="525,35467" Top="0,77953" Width="83,14966" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="3" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Total Geral"/>
      <TfrxMemoView Name="dbordemservicototal" Left="608,50433" Top="0,77953" Width="109,60637" Height="18,89765" ShowHint="False" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="3" Frame.Typ="15" HAlign="haRight" ParentFont="False" Text="[ordemservicoveiculo.&#34;total&#34;]"/>
      <TfrxMemoView Name="Memo17" Left="0" Top="28,66141732" Width="717,35447472" Height="124,72449" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" Text="[ordemservicoveiculo.&#34;obs_garantia&#34;]"/>
      <TfrxMemoView Name="Memo13" Left="0" Top="153,99227" Width="717,35447472" Height="49,13389" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaBottom" Text=""/>
      <TfrxMemoView Name="Memo2" Left="37,7953" Top="188,44898" Width="241,13369472" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="4" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Assinatura Cliente"/>
      <TfrxMemoView Name="Memo16" Left="438,42548" Top="189,44898" Width="241,13369472" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="4" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Assinatura LiberaÃ§Ã£o"/>
    </TfrxReportSummary>
    <TfrxHeader Name="Header1" Height="419,52783" Left="0" Top="18,89765" Width="718,1107">
      <TfrxPictureView Name="Picture1" Left="0" Top="3,77953" Width="155,47248" Height="109,44094" ShowHint="False" Frame.Typ="15" HightQuality="False" Transparent="False" TransparentColor="16777215"/>
      <TfrxMemoView Name="Memo29" Left="157,47248" Top="3,77953" Width="560,63822" Height="18,89765" ShowHint="False" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" Frame.Typ="15" ParentFont="False" Text="[parametros.&#34;razao&#34;]"/>
      <TfrxMemoView Name="Memo1" Left="0" Top="114,86611" Width="211,65354331" Height="26,45671" ShowHint="False" DataSet="dbordemservicoveiculo" DataSetName="ordemservicoveiculo" Font.Charset="1" Font.Color="0" Font.Height="-17" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Ordem Serv. nÂº: [ordemservicoveiculo.&#34;codigo&#34;]"/>
      <TfrxMemoView Name="Memo21" Align="baWidth" Left="0" Top="143,77922" Width="718,1107" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="7" ParentFont="False" VAlign="vaCenter" Text="Nome / RazÃ£o Social: [cliente.&#34;razao&#34;]"/>
      <TfrxMemoView Name="Memo23" Left="0" Top="163,23593" Width="495,11843" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="5" ParentFont="False" VAlign="vaCenter" Text="EndereÃ§o: [cliente.&#34;endereco&#34;] , [cliente.&#34;numero&#34;]  [cliente.&#34;descbairro&#34;] [cliente.&#34;complemento&#34;]"/>
      <TfrxMemoView Name="Memo24" Left="495,11843" Top="163,23593" Width="222,99212598" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" VAlign="vaCenter" Text="CNPJ: [cliente.&#34;cnpj&#34;]"/>
      <TfrxMemoView Name="Memo25" Left="0" Top="182,23593" Width="494,30736" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="5" ParentFont="False" VAlign="vaCenter" Text="Cidade: [cliente.&#34;nomecidade&#34;] - [cliente.&#34;uf&#34;]"/>
      <TfrxMemoView Name="Memo26" Left="495,11843" Top="182,23593" Width="222,99212598" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" VAlign="vaCenter" Text="CPF: [cliente.&#34;cpf&#34;]"/>
      <TfrxMemoView Name="Memo27" Left="0" Top="201,10222063" Width="494,36220472" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="5" ParentFont="False" VAlign="vaCenter" Text="e-mail: [cliente.&#34;email&#34;]"/>
      <TfrxMemoView Name="Memo28" Left="0" Top="219,71645" Width="494,36220472" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="5" ParentFont="False" VAlign="vaCenter" Text="Fone(s): [cliente.&#34;fone1&#34;] / [cliente.&#34;fone2&#34;]"/>
      <TfrxMemoView Name="Memo3" Left="495,11843" Top="201,10222063" Width="222,99212598" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" VAlign="vaCenter" Text="InscriÃ§Ã£o est: [cliente.&#34;ins_estadual&#34;]"/>
      <TfrxMemoView Name="Memo14" Left="495,11843" Top="219,71645" Width="222,99212598" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" VAlign="vaCenter" Text="Form. Pgto: [ordemservicoveiculo.&#34;descforma&#34;]"/>
      <TfrxMemoView Name="Memo15" Left="0" Top="239,37013" Width="244,91322472" Height="37,7953" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-19" Font.Name="Arial" Font.Style="3" Frame.Typ="13" ParentFont="False" VAlign="vaCenter" Text="PLaca: [ordemservicoveiculo.&#34;placa&#34;]"/>
      <TfrxMemoView Name="Memo18" Left="242,88992" Top="238,73222" Width="252,47228472" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="5" ParentFont="False" VAlign="vaCenter" Text="Marca: [ordemservicoveiculo.&#34;descmarca&#34;]"/>
      <TfrxMemoView Name="Memo20" Left="495,11843" Top="238,73222" Width="222,99212598" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" VAlign="vaCenter" Text="CondiÃ§Ã£o: [ordemservicoveiculo.&#34;desccondicao&#34;]"/>
      <TfrxMemoView Name="Memo6" Left="0" Top="402,85838" Width="75,59055118" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="13" ParentFont="False" VAlign="vaCenter" Text="Qtde"/>
      <TfrxMemoView Name="Memo7" Left="75,59055118" Top="402,81875606" Width="366,61411465" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="13" ParentFont="False" VAlign="vaCenter" Text="DescriÃ§Ã£o"/>
      <TfrxMemoView Name="Memo8" Left="525,35433071" Top="402,81875606" Width="83,1496063" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="13" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Valor Unit"/>
      <TfrxMemoView Name="Memo9" Left="608,50393701" Top="402,81875606" Width="109,60629921" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Valor Total"/>
      <TfrxMemoView Name="Memo5" Left="506,45712496" Top="114,86611" Width="211,65357504" Height="26,45671" ShowHint="False" DisplayFormat.FormatStr="dd/mm/yy - hh:mm" DisplayFormat.Kind="fkDateTime" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="EmissÃ£o: [ordemservicoveiculo.&#34;data&#34;]"/>
      <TfrxMemoView Name="Memo10" Left="242,88992" Top="258,26778" Width="252,47228472" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="13" ParentFont="False" VAlign="vaCenter" Text="Km: [ordemservicoveiculo.&#34;km&#34;]"/>
      <TfrxMemoView Name="Memo11" Left="495,11843" Top="258,26778" Width="222,99212598" Height="18,89765" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="MecÃ¢nico: [ordemservicoveiculo.&#34;nometecnico&#34;]"/>
      <TfrxMemoView Name="Memo12" Left="0" Top="297,06308" Width="718,11023622" Height="105,82684" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" Text="ObservaÃ§Ã£o Cliente: [ordemservicoveiculo.&#34;obs_cliente&#34;]&#13;&#10;&#13;&#10;Relato Cliente: [ordemservicoveiculo.&#34;obs_problema&#34;]&#13;&#10;&#13;&#10;Ptobl. VisÃ­veis: [ordemservicoveiculo.&#34;observacao&#34;]&#13;&#10;&#13;&#10;Obs. TÃ©cnica: [ordemservicoveiculo.&#34;obs_tecnico&#34;]"/>
      <TfrxMemoView Name="Memo35" Left="157,47248" Top="26,29128" Width="560,63822" Height="86,92919" ShowHint="False" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" ParentFont="False" Text="[parametros.&#34;endereco&#34;]  [parametros.&#34;bairro&#34;] [parametros.&#34;cidade&#34;]-[parametros.&#34;uf&#34;]-CEP: [parametros.&#34;cep&#34;]&#13;&#10;&#13;&#10;CNPJ: [parametros.&#34;cnpj&#34;] / IE: [parametros.&#34;insc_estadual&#34;]&#13;&#10;&#13;&#10;e-mail: [parametros.&#34;email&#34;] Fone: [parametros.&#34;fone&#34;]. [parametros.&#34;fax&#34;]"/>
      <TfrxMemoView Name="dbitensordemservicoservdesconto1" Left="442,20472441" Top="402,81875606" Width="83,14966" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="13" ParentFont="False" Text="Desc."/>
      <TfrxMemoView Name="Memo4" Left="0" Top="275,90569" Width="718,11023622" Height="22,67718" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="3" Frame.Typ="3" ParentFont="False" VAlign="vaCenter" Text="DescriÃ§Ã£o: [ordemservicoveiculo.&#34;desctipo&#34;]"/>
    </TfrxHeader>
  </TfrxReportPage>
</TfrxReport>
