<?xml version="1.0" encoding="utf-8" standalone="no"?>
<TfrxReport Version="6.4.11" 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="44384,4915013889" 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;begin&#13;&#10;&#13;&#10;end.">
  <Datasets>
    <item DataSet="cliente" DataSetName="cliente"/>
    <item DataSet="dados" DataSetName="dados"/>
    <item DataSet="dadositens" DataSetName="dadositens"/>
    <item DataSet="dadositenscomfoto" DataSetName="dadositenscomfoto"/>
    <item DataSet="fmensagem" DataSetName="mensagem"/>
    <item DataSet="fparametros" DataSetName="parametros"/>
  </Datasets>
  <Variables>
    <item Name=" externas"/>
    <item Name="logo"/>
  </Variables>
  <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="10" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="" Frame.Typ="0" MirrorMode="0" PrintIfEmpty="False" HGuides.Text="" VGuides.Text="" OnBeforePrint="Page1OnBeforePrint">
    <TfrxMasterData Name="MasterData1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="18,89765" Left="0" Top="419,52783" Width="718,1107" ColumnWidth="0" ColumnGap="0" DataSet="dadositens" DataSetName="dadositens" KeepFooter="True" KeepHeader="True" RowCount="0" Stretched="True">
      <TfrxMemoView Name="Memo10" AllowVectorExport="True" Left="0" Top="0" Width="52,15719472" Height="18,89765" DataField="produto" DataSet="dadositens" DataSetName="dadositens" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="9" ParentFont="False" VAlign="vaCenter" Text="[dadositens.&#34;produto&#34;]"/>
      <TfrxMemoView Name="Memo11" AllowVectorExport="True" Left="52,53543307" Top="0" Width="437,66925472" Height="18,89765" DataField="descricao" DataSet="dadositens" DataSetName="dadositens" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="9" ParentFont="False" VAlign="vaCenter" Text="[dadositens.&#34;descricao&#34;]">
        <Formats>
          <item/>
          <item/>
        </Formats>
      </TfrxMemoView>
      <TfrxMemoView Name="Memo12" AllowVectorExport="True" Left="556,72440945" Top="0" Width="67,27531472" Height="18,89765" DataField="valor" DataSet="dadositens" DataSetName="dadositens" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="9" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[dadositens.&#34;valor&#34;]"/>
      <TfrxMemoView Name="Memo30" AllowVectorExport="True" Left="625,13385827" Top="0" Width="93,73202472" Height="18,89765" DataField="total" DataSet="dadositens" DataSetName="dadositens" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="11" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[dadositens.&#34;total&#34;]"/>
      <TfrxMemoView Name="Memo38" AllowVectorExport="True" Left="490,96062992" Top="0" Width="63,49606299" Height="18,89765" DataField="quantidade" DataSet="dadositens" DataSetName="dadositens" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="9" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[dadositens.&#34;quantidade&#34;]"/>
    </TfrxMasterData>
    <TfrxReportTitle Name="ReportTitle1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="341,29133858" Left="0" Top="18,89765" Width="718,1107">
      <TfrxPictureView Name="Picture1" AllowVectorExport="True" Left="8,77953" Top="5,7718" Width="363,34663" Height="64,08658" Frame.Typ="0" HightQuality="False" Transparent="False" TransparentColor="16777215"/>
      <TfrxMemoView Name="Memo2" AllowVectorExport="True" Left="-0,22047" Top="104,07081" Width="718,1107" Height="11,33859" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="7" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[parametros.&#34;endereco&#34;], [parametros.&#34;numero&#34;]  [parametros.&#34;bairro&#34;] [parametros.&#34;cidade&#34;]-[parametros.&#34;uf&#34;]"/>
      <TfrxMemoView Name="Memo29" Align="baWidth" AllowVectorExport="True" Left="0" Top="80,94496" Width="718,1107" Height="18,89765" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" Frame.Typ="0" HAlign="haCenter" ParentFont="False" Text="[parametros.&#34;fantasia&#34;]"/>
      <TfrxMemoView Name="Memo16" AllowVectorExport="True" Left="-0,22047" Top="114,96073" Width="718,1107" Height="15,11812" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="11" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="e-mail: [parametros.&#34;email&#34;] Fone: [parametros.&#34;fone&#34;] CNPJ: [parametros.&#34;cnpj&#34;]"/>
      <TfrxMemoView Name="Memo22" Align="baWidth" AllowVectorExport="True" Left="0" Top="143,85807" Width="718,1107" Height="22,67718" DataSet="cliente" DataSetName="cliente" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="Cliente: [cliente.&#34;codigo&#34;] - [cliente.&#34;razao&#34;] - [cliente.&#34;fantasia&#34;]"/>
      <TfrxMemoView Name="Memo25" Align="baWidth" AllowVectorExport="True" Left="0" Top="167,40136" Width="718,1107" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" 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="Memo26" AllowVectorExport="True" Left="-0,37795276" Top="213,75572" Width="257,00789598" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" VAlign="vaCenter" Text="CNPJ/CPF: [cliente.&#34;cnpj&#34;][cliente.&#34;cpf&#34;]"/>
      <TfrxMemoView Name="Memo28" AllowVectorExport="True" Left="-0,22047" Top="191,29134835" Width="494,36220472" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" VAlign="vaCenter" Text="Cidade: [cliente.&#34;nomecidade&#34;] - [cliente.&#34;uf&#34;]"/>
      <TfrxMemoView Name="Memo14" AllowVectorExport="True" Left="257,00787402" Top="213,66141" Width="236,97637795" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="10" ParentFont="False" VAlign="vaCenter" Text="Rg/ Insc. Est. [cliente.&#34;rg&#34;][cliente.&#34;ins_estadual&#34;]"/>
      <TfrxMemoView Name="Memo17" AllowVectorExport="True" Left="-0,37795276" Top="235,57483" Width="257,00787402" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" VAlign="vaCenter" Text="e-mail: [cliente.&#34;email&#34;]"/>
      <TfrxMemoView Name="Memo19" AllowVectorExport="True" Left="257,16535677" Top="235,48819142" Width="236,97637795" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="10" ParentFont="False" VAlign="vaCenter" Text="Com: [cliente.&#34;fone1&#34;]"/>
      <TfrxMemoView Name="Memo35" AllowVectorExport="True" Left="494,74015748" Top="213,66141" Width="222,99212598" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="10" ParentFont="False" VAlign="vaCenter" Text="Contato: [cliente.&#34;contato&#34;]"/>
      <TfrxMemoView Name="Memo6" AllowVectorExport="True" Left="-0,22047" Top="318,26005" Width="52,15719472" Height="22,67718" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaBottom" Text="Código"/>
      <TfrxMemoView Name="Memo7" AllowVectorExport="True" Left="52,37013" Top="318,26005" Width="438,42518465" Height="22,67718" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="14" ParentFont="False" VAlign="vaBottom" Text="Descrição"/>
      <TfrxMemoView Name="Memo8" AllowVectorExport="True" Left="556,56697307" Top="318,26005" Width="67,27531472" Height="22,67718" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="14" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="Valor Unit"/>
      <TfrxMemoView Name="Memo9" AllowVectorExport="True" Left="625,28386" Top="318,26005" Width="93,73202472" Height="22,67718" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="14" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="Valor Total"/>
      <TfrxMemoView Name="dadoscodigo" AllowVectorExport="True" Left="377,73253" Top="1,55906" Width="185,19697" Height="37,7953" DataSet="dados" DataSetName="dados" 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="Orçamento Nro.: [dados.&#34;codigo&#34;]"/>
      <TfrxMemoView Name="Memo13" AllowVectorExport="True" Left="562,9295" Top="1,55906" Width="154,96073" Height="22,67718" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Typ="7" HAlign="haCenter" ParentFont="False" Text="Emissão: "/>
      <TfrxMemoView Name="Memo40" AllowVectorExport="True" Left="562,9295" Top="24,23624" Width="154,96073" Height="22,67718" DataSet="dados" DataSetName="dados" DisplayFormat.FormatStr="dd/mm/yyyy" DisplayFormat.Kind="fkDateTime" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Typ="3" HAlign="haCenter" ParentFont="False" Text="[Date]"/>
      <TfrxMemoView Name="Memo46" AllowVectorExport="True" Left="377,73253" Top="39,25201" Width="185,19697" Height="37,7953" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Typ="11" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Operador(a): [dados.&#34;nomerealizado&#34;]"/>
      <TfrxMemoView Name="Memo47" AllowVectorExport="True" Left="562,9295" Top="47,91342" Width="154,96073" Height="29,1023622" DataSet="dados" DataSetName="dados" DisplayFormat.FormatStr="hh:mm" DisplayFormat.Kind="fkDateTime" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Typ="11" HAlign="haCenter" ParentFont="False" Text="[Time]"/>
      <TfrxLineView Name="Line2" AllowVectorExport="True" Left="0,55906" Top="1,55906" Width="0" Height="75,5906" Color="0" Frame.Typ="1"/>
      <TfrxLineView Name="Line3" AllowVectorExport="True" Left="0,33859" Top="76,74803394" Width="377,953" Height="0" Color="0" Frame.Typ="4"/>
      <TfrxMemoView Name="Memo1" AllowVectorExport="True" Left="494,89796" Top="191,31509" Width="222,99212598" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="10" ParentFont="False" VAlign="vaCenter" Text="CEP: [cliente.&#34;cep&#34;]"/>
      <TfrxMemoView Name="Memo3" AllowVectorExport="True" Left="494,89764024" Top="235,48819142" Width="222,99212598" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="10" ParentFont="False" VAlign="vaCenter" Text="Res: [cliente.&#34;fax&#34;]"/>
      <TfrxMemoView Name="Memo15" AllowVectorExport="True" Left="-0,22047" Top="259,63783433" Width="257,00787402" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" VAlign="vaCenter" Text="Cel: [cliente.&#34;fone2&#34;]"/>
      <TfrxMemoView Name="Memo18" AllowVectorExport="True" Left="257,16535677" Top="259,34663" Width="236,97637795" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="10" ParentFont="False" VAlign="vaCenter" Text="Forma pagto: [dados.&#34;descforma&#34;]"/>
      <TfrxMemoView Name="Memo20" AllowVectorExport="True" Left="494,740157480315" Top="259,34663" Width="222,99212598" Height="22,67716535" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="10" ParentFont="False" VAlign="vaCenter" Text="Condição: [dados.&#34;desccondicao&#34;]"/>
      <TfrxMemoView Name="Memo39" AllowVectorExport="True" Left="491,11843" Top="318,26005" Width="63,49578472" Height="22,67718" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="14" HAlign="haCenter" ParentFont="False" VAlign="vaBottom" Text="Quantidade"/>
      <TfrxLineView Name="Line1" AllowVectorExport="True" Left="0,77953" Top="1,77953" Width="377,953" Height="0" Color="0" Frame.Typ="4"/>
    </TfrxReportTitle>
    <TfrxFooter Name="Footer1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="200,69293047" Left="0" Top="461,10266" Width="718,1107" Stretched="True">
      <TfrxMemoView Name="Memo33" AllowVectorExport="True" Left="486,77984" Top="8,55906" Width="109,60637" Height="18,89765" AllowExpressions="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="4" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Sub Total :"/>
      <TfrxMemoView Name="Memo48" AllowVectorExport="True" Left="597,16574" Top="8,55906" Width="120,94488189" Height="18,89765" DataSet="dados" DataSetName="dados" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="4" HAlign="haRight" ParentFont="False" Text="[dados.&#34;subtotal&#34;]"/>
      <TfrxMemoView Name="Memo36" AllowVectorExport="True" Left="527,57514" Top="29,23624" Width="68,03154" Height="18,89765" AllowExpressions="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Frete :"/>
      <TfrxMemoView Name="Memo45" AllowVectorExport="True" Left="597,16574" Top="30,23624" Width="120,94488189" Height="18,89765" DataSet="dados" DataSetName="dados" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[dados.&#34;frete&#34;]"/>
      <TfrxMemoView Name="Memo41" AllowVectorExport="True" Left="475,44125" Top="50,13389" Width="120,94496" Height="18,89765" AllowExpressions="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Outras despesas :"/>
      <TfrxMemoView Name="dadosboleto" AllowVectorExport="True" Left="597,16535433" Top="50,13389" Width="120,94488189" Height="18,89765" DataField="boleto" DataSet="dados" DataSetName="dados" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[dados.&#34;boleto&#34;]"/>
      <TfrxMemoView Name="Memo42" AllowVectorExport="True" Left="484,77984" Top="72,81107" Width="113,3859" Height="18,89765" AllowExpressions="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="4" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Total Geral :"/>
      <TfrxMemoView Name="Memo43" Align="baRight" AllowVectorExport="True" Left="597,16574" Top="72,81107" Width="120,94496" Height="18,89765" AllowExpressions="False" DataField="soma" DataSet="dados" DataSetName="dados" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="4" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[dados.&#34;soma&#34;]"/>
      <TfrxMemoView Name="Memo37" AllowVectorExport="True" Left="0" Top="107,60637" Width="718,11023622" Height="26,45671" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="4" ParentFont="False" VAlign="vaBottom" Text="Observação:"/>
      <TfrxMemoView Name="Memo32" AllowVectorExport="True" Left="0" Top="137,62214" Width="718,1107" Height="60,47248" StretchMode="smMaxHeight" AllowExpressions="False" DataField="observacao" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="[dados.&#34;observacao&#34;]"/>
    </TfrxFooter>
  </TfrxReportPage>
</TfrxReport>
