<?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="44813,5214982639" 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.">
  <Datasets>
    <item DataSet="cliente" DataSetName="cliente"/>
    <item DataSet="dados" DataSetName="dados"/>
    <item DataSet="dadositens" DataSetName="dadositens"/>
    <item DataSet="fparametros" DataSetName="parametros"/>
  </Datasets>
  <Variables>
    <item Name=" externas"/>
    <item Name="logo"/>
    <item Name="Nomefuncionario"/>
    <item Name="email"/>
  </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="529,1342" Width="718,1107" ColumnWidth="0" ColumnGap="0" DataSet="dadositens" DataSetName="dadositens" KeepFooter="True" KeepHeader="True" RowCount="0">
      <TfrxMemoView Name="Memo10" AllowVectorExport="True" Left="0" Top="0" Width="63,49578472" Height="18,89765" DataField="quantidade" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="11" HAlign="haRight" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="[dadositens.&#34;quantidade&#34;]"/>
      <TfrxMemoView Name="Memo11" AllowVectorExport="True" Left="63,5906" Top="0" Width="427,08660685" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="10" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="[dadositens.&#34;produto&#34;] - [dadositens.&#34;descricao&#34;]">
        <Formats>
          <item/>
          <item/>
        </Formats>
      </TfrxMemoView>
      <TfrxMemoView Name="Memo12" AllowVectorExport="True" Left="490,58267717" Top="0" Width="67,27531472" Height="18,89765" DataField="valor" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="10" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[dadositens.&#34;valor&#34;]"/>
      <TfrxMemoView Name="Memo30" AllowVectorExport="True" Left="624,37835552" Top="0" Width="93,73202472" Height="18,89765" DataField="total" 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="Memo21" AllowVectorExport="True" Left="559,37007874" Top="0" Width="63,49578472" Height="18,89765" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="8" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="[dadositens.&#34;desconto&#34;]"/>
    </TfrxMasterData>
    <TfrxPageHeader Name="PageHeader1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="449,73253" Left="0" Top="18,89765" Width="718,1107">
      <TfrxMemoView Name="Memo2" AllowVectorExport="True" Left="0" Top="111,29128" Width="718,1107" Height="41,57483" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="0" Frame.Typ="15" 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;]-CEP: [parametros.&#34;cep&#34;]&#13;&#10;CNPJ: [parametros.&#34;cnpj&#34;] / IE: [parametros.&#34;insc_estadual&#34;]&#13;&#10;e-mail: [parametros.&#34;email&#34;] Fone: [parametros.&#34;fone&#34;]. [parametros.&#34;fax&#34;]"/>
      <TfrxPictureView Name="Picture1" AllowVectorExport="True" Left="9" Top="4,99227" Width="359,5671" Height="64,08658" Frame.Typ="0" HightQuality="False" Transparent="False" TransparentColor="16777215"/>
      <TfrxMemoView Name="Memo29" Align="baWidth" AllowVectorExport="True" Left="0" Top="87,16543" Width="718,1107" Height="22,67718" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" Frame.Typ="7" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[parametros.&#34;fantasia&#34;]"/>
      <TfrxMemoView Name="Memo25" AllowVectorExport="True" Left="0" Top="202,62183" Width="718,1107" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="7" 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,11843" Top="241,97619" Width="257,00789598" Height="18,8976378" 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" Top="222,51181835" Width="494,36220472" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="13" ParentFont="False" VAlign="vaCenter" Text="Cidade: [cliente.&#34;nomecidade&#34;] - [cliente.&#34;uf&#34;]"/>
      <TfrxMemoView Name="Memo14" AllowVectorExport="True" Left="257,38582677" Top="241,97619" Width="236,97637795" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="8" ParentFont="False" VAlign="vaCenter" Text="Rg/ IE: [cliente.&#34;rg&#34;][cliente.&#34;ins_estadual&#34;]"/>
      <TfrxMemoView Name="Memo17" AllowVectorExport="True" Left="0" Top="261,7953" Width="257,00787402" Height="18,8976378" 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,38582677" Top="261,7953" Width="236,97637795" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="8" ParentFont="False" VAlign="vaCenter" Text="Com: [cliente.&#34;fone1&#34;]"/>
      <TfrxMemoView Name="Memo35" AllowVectorExport="True" Left="495,11811024" Top="241,97619" Width="222,99212598" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" VAlign="vaCenter" Text="Contato: [cliente.&#34;contato&#34;]"/>
      <TfrxMemoView Name="dadoscodigo" AllowVectorExport="True" Left="377,953" Top="0,779530000000001" Width="185,19697" Height="37,7953" 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="Compra Nro.: [dados.&#34;codigo&#34;]"/>
      <TfrxMemoView Name="Memo13" AllowVectorExport="True" Left="563,14997" Top="0,779530000000001" Width="154,96073" Height="22,67718" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Typ="7" Fill.BackColor="15000804" HAlign="haCenter" ParentFont="False" Text="Emissão:"/>
      <TfrxMemoView Name="Memo40" AllowVectorExport="True" Left="563,14997" Top="22,45671" Width="154,96073" Height="26,45671" 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" Fill.BackColor="15000804" HAlign="haCenter" ParentFont="False" Text="[dados.&#34;data&#34;]"/>
      <TfrxMemoView Name="Memo46" AllowVectorExport="True" Left="377,953" Top="38,17320394" Width="185,19697" Height="37,7953" 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;nomeusuar&#34;]"/>
      <TfrxMemoView Name="Memo47" AllowVectorExport="True" Left="563,14997" Top="46,86614174" Width="154,96073" Height="29,1023622" 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" Fill.BackColor="15000804" HAlign="haCenter" ParentFont="False" Text="[dados.&#34;hora&#34;]"/>
      <TfrxLineView Name="Line1" AllowVectorExport="True" Left="0,77953" Top="0,779530000000001" Width="377,953" Height="0" Color="0" Frame.Typ="4"/>
      <TfrxLineView Name="Line2" AllowVectorExport="True" Left="0" Top="0,779530000000001" Width="0" Height="75,5906" Color="0" Frame.Typ="1"/>
      <TfrxLineView Name="Line3" AllowVectorExport="True" Left="0,55906" Top="75,96850394" Width="377,953" Height="0" Color="0" Frame.Typ="4"/>
      <TfrxMemoView Name="Memo1" AllowVectorExport="True" Left="495,11843" Top="222,53556" Width="222,99212598" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="CEP: [cliente.&#34;cep&#34;]"/>
      <TfrxMemoView Name="Memo3" AllowVectorExport="True" Left="495,11811024" Top="261,7953" Width="222,99212598" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" VAlign="vaCenter" Text="Res: [cliente.&#34;fax&#34;]"/>
      <TfrxMemoView Name="Memo15" AllowVectorExport="True" Left="0" Top="280,85830433" Width="257,00787402" Height="18,8976378" 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,38582677" Top="280,85830433" Width="236,97637795" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="8" ParentFont="False" VAlign="vaCenter" Text="Forma pagto: [dados.&#34;descforma&#34;]"/>
      <TfrxMemoView Name="Memo20" AllowVectorExport="True" Left="495,11811024" Top="280,85830433" Width="222,99212598" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" VAlign="vaCenter" Text="Condição: [dados.&#34;desccondicao&#34;]"/>
      <TfrxMemoView Name="Memo31" AllowVectorExport="True" Left="396,11811024" Top="300,68522" Width="162,51979" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="9" ParentFont="False" VAlign="vaCenter" Text="Frete CIF (1) FOB (2) :"/>
      <TfrxMemoView Name="Memo22" Align="baWidth" AllowVectorExport="True" Left="0" Top="163,85807" Width="718,1107" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="3" Frame.Typ="15" ParentFont="False" VAlign="vaCenter" Text="Fornecedor / Razão: [cliente.&#34;codigo&#34;] - [cliente.&#34;razao&#34;]"/>
      <TfrxMemoView Name="Memo4" AllowVectorExport="True" Left="0" Top="300,68522" Width="396,85065" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="9" ParentFont="False" VAlign="vaCenter" Text="Transportadora: [dados.&#34;nometransportadora&#34;]"/>
      <TfrxMemoView Name="Memo5" AllowVectorExport="True" Left="559,25185622" Top="300,68522" Width="158,74026" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" VAlign="vaCenter" Text="Prazo entrega:"/>
      <TfrxMemoView Name="Memo16" AllowVectorExport="True" Left="507,98454" Top="300,68522" Width="45,35436" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="1" Frame.Typ="0" ParentFont="False" VAlign="vaCenter" Text="[dados.&#34;ciffob&#34;]"/>
      <TfrxMemoView Name="Memo24" AllowVectorExport="True" Left="646,26809" Top="300,68522" Width="37,7953" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="1" Frame.Typ="0" ParentFont="False" VAlign="vaCenter" Text="[dados.&#34;prazo_entrega&#34;]"/>
      <TfrxMemoView Name="Memo34" Align="baWidth" AllowVectorExport="True" Left="0" Top="183,29932" Width="718,1107" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="3" ParentFont="False" VAlign="vaCenter" Text="Fantasia:[cliente.&#34;fantasia&#34;]"/>
      <TfrxMemoView Name="Memo6" AllowVectorExport="True" Left="0" Top="434,61441" Width="63,49578472" Height="15,11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" ParentFont="False" VAlign="vaBottom" Text="Qtde"/>
      <TfrxMemoView Name="Memo7" AllowVectorExport="True" Left="63,5906" Top="434,61441" Width="427,08659465" Height="15,11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="14" ParentFont="False" VAlign="vaBottom" Text="Descrição"/>
      <TfrxMemoView Name="Memo8" AllowVectorExport="True" Left="490,53543307" Top="434,61441" Width="67,27531472" Height="15,11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="14" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="Valor Unit"/>
      <TfrxMemoView Name="Memo9" AllowVectorExport="True" Left="624,37835552" Top="434,61441" Width="93,73202472" Height="15,11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="Valor Total"/>
      <TfrxMemoView Name="Memo23" AllowVectorExport="True" Left="559,37044" Top="434,61441" Width="63,49578472" Height="15,11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="12" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="Desconto"/>
      <TfrxMemoView Name="Memo44" AllowVectorExport="True" Left="0" Top="338,48052" Width="718,1107" Height="86,92919" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="Observação: [dados.&#34;observacao&#34;]"/>
      <TfrxMemoView Name="Memo78" Align="baWidth" AllowVectorExport="True" Left="0" Top="156,62214" Width="718,1107" Height="3,77953" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Fill.BackColor="13421772" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text=""/>
      <TfrxMemoView Name="Memo27" Align="baWidth" AllowVectorExport="True" Left="0" Top="79,37013" Width="718,1107" Height="3,77953" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Fill.BackColor="13421772" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text=""/>
      <TfrxMemoView Name="Memo37" Align="baWidth" AllowVectorExport="True" Left="0" Top="428,08689" Width="718,1107" Height="3,77953" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Fill.BackColor="13421772" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text=""/>
      <TfrxMemoView Name="Memo52" AllowVectorExport="True" Left="0" Top="319,26005" Width="396,85065" Height="18,8976378" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="9" ParentFont="False" VAlign="vaCenter" Text="Cotação dolar :[dados.&#34;cotacao_dolar&#34;]"/>
    </TfrxPageHeader>
    <TfrxPageFooter Name="PageFooter1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="179,52766157" Left="0" Top="608,50433" Width="718,1107">
      <TfrxMemoView Name="Memo42" AllowVectorExport="True" Left="473,44125" Top="128,50402" Width="124,72449" 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="Memo33" AllowVectorExport="True" Left="475,44125" Top="0" 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="4" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Sub Total :"/>
      <TfrxMemoView Name="Memo36" AllowVectorExport="True" Left="474,66172" Top="20,67718" 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="Frete :"/>
      <TfrxMemoView Name="Memo41" AllowVectorExport="True" Left="475,44125" Top="41,57483" 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="Desconto :"/>
      <TfrxMemoView Name="dadosboleto" AllowVectorExport="True" Left="597,16535433" Top="41,57483" Width="120,94488189" Height="18,89765" 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;desconto&#34;]"/>
      <TfrxMemoView Name="Memo45" AllowVectorExport="True" Left="597,16574" Top="21,67718" Width="120,94488189" Height="18,89765" 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="Memo48" AllowVectorExport="True" Left="597,16574" Top="0" Width="120,94488189" Height="18,89765" 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="dadostotal" AllowVectorExport="True" Left="597,7248" Top="128,72449" Width="120,94496" Height="18,89765" DataField="total" 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;total&#34;]"/>
      <TfrxMemoView Name="Memo32" AllowVectorExport="True" Left="83,14966" Top="83,1496600000002" Width="257,00787402" Height="49,13387535" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="4" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[Nomefuncionario]&#13;&#10;[email]&#13;&#10;Comprador"/>
      <TfrxMemoView Name="Memo76" AllowVectorExport="True" Left="538,94527" Top="162,51979" Width="177,63780504" Height="9,44881157" DisplayFormat.FormatStr="dd/mm/yy - hh:mm" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="0" Frame.Typ="0" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Emissão/impressão: [Date] [Time]"/>
      <TfrxMemoView Name="Memo79" AllowVectorExport="True" Left="0" Top="162,51979" Width="113,38579504" Height="9,44881157" DisplayFormat.FormatStr="dd/mm/yy - hh:mm" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="0" Frame.Typ="0" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Unionsystem sistemas"/>
      <TfrxMemoView Name="Memo38" AllowVectorExport="True" Left="476,22078" Top="62,25201" 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="Memo39" AllowVectorExport="True" Left="597,94488433" Top="62,25201" Width="120,94488189" Height="18,89765" 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;outras_despesas&#34;]"/>
      <TfrxMemoView Name="Memo43" AllowVectorExport="True" Left="476,22078" Top="83,14966" 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="IPI :"/>
      <TfrxMemoView Name="Memo49" AllowVectorExport="True" Left="597,94488433" Top="83,14966" Width="120,94488189" Height="18,89765" 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;ipi&#34;]"/>
      <TfrxMemoView Name="Memo50" AllowVectorExport="True" Left="476,22078" Top="105,82684" 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="Subst. Tributária (ST) :"/>
      <TfrxMemoView Name="Memo51" AllowVectorExport="True" Left="597,94488433" Top="105,82684" Width="120,94488189" Height="18,89765" 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;valor_st&#34;]"/>
    </TfrxPageFooter>
  </TfrxReportPage>
</TfrxReport>
