<?xml version="1.0" encoding="utf-8" standalone="no"?>
<TfrxReport Version="5.4.6" 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="43544,7003629514" 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;&#13;&#10;begin&#13;&#10;&#13;&#10;end." StoreInDFM="False">
  <Datasets>
    <item DataSet="dados" DataSetName="dados"/>
    <item DataSet="dadositensproducao" DataSetName="dadositensproducao"/>
    <item DataSet="fparametros" DataSetName="parametros"/>
  </Datasets>
  <Variables>
    <item Name=" externas"/>
    <item Name="logo"/>
    <item Name="titulo"/>
    <item Name="mostraquantidade"/>
    <item Name="Login"/>
  </Variables>
  <TfrxDataPage Name="frxDataPage1" Height="1000" Left="0" Top="0" Width="1000"/>
  <TfrxReportPage Name="Page1" PaperWidth="210" PaperHeight="297" PaperSize="256" LeftMargin="5" RightMargin="10" TopMargin="5" BottomMargin="5" ColumnWidth="0" ColumnPositions.Text="" LargeDesignHeight="True" PrintIfEmpty="False" HGuides.Text="" VGuides.Text="" OnBeforePrint="Page1OnBeforePrint">
    <TfrxPageHeader Name="PageHeader1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="95,71119333" Left="0" Top="18,89765" Width="737,00835">
      <TfrxMemoView Name="parametrosrazao" Align="baRight" Left="-545,5201" Top="1,23624" Width="549,29963" Height="34,01577" DataField="fantasia" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-19" Font.Name="Arial" Font.Style="5" ParentFont="False" Text="[parametros.&#34;fantasia&#34;]"/>
      <TfrxMemoView Name="Memo29" Left="3,77953" Top="4,01577" Width="469,9295" Height="37,7953" DataField="razao" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" ParentFont="False" Text="[parametros.&#34;razao&#34;]"/>
      <TfrxMemoView Name="Memo40" Left="545,04762" Top="3,33859" Width="188,9765" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParentFont="False" Text="Página [Page] de [TotalPages#]"/>
      <TfrxMemoView Name="Memo1" Align="baWidth" Left="0" Top="53,91342" Width="737,00835" Height="18,89765" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" Frame.Typ="8" HAlign="haCenter" ParentFont="False" Text="LISTAGEM DE ITENS PARA PRODUÇÃO"/>
      <TfrxMemoView Name="Date" Left="533,70903" Top="26,45671" Width="200,31509" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParentFont="False" Text="Data emissão [Date] [Time]"/>
      <TfrxMemoView Name="Memo7" Left="533,91373" Top="45,35436" Width="200,31509" Height="18,89765" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParentFont="False" Text="Emitido por [Login]"/>
    </TfrxPageHeader>
    <TfrxHeader Name="Header2" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="64,25201" Left="0" Top="173,85838" Width="737,00835">
      <TfrxMemoView Name="Memo12" Left="1" Top="46,35436" Width="331,84268567" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="PRODUTO"/>
      <TfrxMemoView Name="Memo13" Left="378,04744669" Top="46,35436" Width="359,05529874" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="OBSERVAÇÃO"/>
      <TfrxMemoView Name="Memo14" Left="337,1577" Top="46,35436" Width="37,79524874" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="QTDE"/>
      <TfrxMemoView Name="Memo8" Align="baWidth" Left="0" Top="5" Width="737,00835" Height="37,7953" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" ParentFont="False" Text="Referente ao(s) movimento(s) :  [dados.&#34;codigo&#34;] &#13;&#10;Cliente: [dados.&#34;nomeclie&#34;]"/>
    </TfrxHeader>
    <TfrxMasterData Name="MasterData2" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="37,7953" Left="0" Top="260,78757" Width="737,00835" ColumnWidth="0" ColumnGap="0" DataSet="dadositensproducao" DataSetName="dadositensproducao" RowCount="0">
      <TfrxMemoView Name="Memo16" Left="0" Top="2,55906" Width="332,59858874" Height="34,01577" DataField="nome" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" WordBreak="True" Text="[dadositensproducao.&#34;nome&#34;]"/>
      <TfrxMemoView Name="Memo17" Left="336,1577" Top="2,55906" Width="37,79525606" Height="15,11812" AutoWidth="True" DataField="quantidade" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[dadositensproducao.&#34;quantidade&#34;]"/>
      <TfrxMemoView Name="Memo18" Left="377,04744669" Top="2,55906" Width="359,05529874" Height="34,01577" DataField="obs" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" WordBreak="True" Text="[dadositensproducao.&#34;obs&#34;]"/>
    </TfrxMasterData>
    <TfrxMasterData Name="MasterData3" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="37,7953" Left="0" Top="472,44125" Width="737,00835" ColumnWidth="0" ColumnGap="0" DataSet="dadositensproducao" DataSetName="dadositensproducao" RowCount="0">
      <TfrxMemoView Name="Memo4" Left="0" Top="2,55906" Width="332,59858874" Height="34,01577" DataField="nome" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" WordBreak="True" Text="[dadositensproducao.&#34;nome&#34;]"/>
      <TfrxMemoView Name="Memo19" Left="336,1577" Top="2,55906" Width="37,79525606" Height="15,11812" AutoWidth="True" DataField="quantidade" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[dadositensproducao.&#34;quantidade&#34;]"/>
      <TfrxMemoView Name="Memo20" Left="377,04744669" Top="2,55906" Width="359,05529874" Height="34,01577" DataField="obs" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" WordBreak="True" Text="[dadositensproducao.&#34;obs&#34;]"/>
    </TfrxMasterData>
    <TfrxMasterData Name="MasterData1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="37,7953" Left="0" Top="684,09493" Width="737,00835" ColumnWidth="0" ColumnGap="0" DataSet="dadositensproducao" DataSetName="dadositensproducao" RowCount="0">
      <TfrxMemoView Name="Memo2" Left="0" Top="2,55906" Width="332,59858874" Height="34,01577" DataField="nome" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" WordBreak="True" Text="[dadositensproducao.&#34;nome&#34;]"/>
      <TfrxMemoView Name="Memo3" Left="336,1577" Top="2,55906" Width="37,79525606" Height="15,11812" AutoWidth="True" DataField="quantidade" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[dadositensproducao.&#34;quantidade&#34;]"/>
      <TfrxMemoView Name="Memo5" Left="377,04744669" Top="2,55906" Width="359,05529874" Height="34,01577" DataField="obs" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" WordBreak="True" Text="[dadositensproducao.&#34;obs&#34;]"/>
    </TfrxMasterData>
    <TfrxHeader Name="Header1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="64,25201" Left="0" Top="385,51206" Width="737,00835">
      <TfrxMemoView Name="Memo9" Left="1" Top="46,35436" Width="331,84268567" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="PRODUTO"/>
      <TfrxMemoView Name="Memo10" Left="378,04744669" Top="46,35436" Width="359,05529874" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="OBSERVAÇÃO"/>
      <TfrxMemoView Name="Memo11" Left="337,1577" Top="46,35436" Width="37,79524874" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="QTDE"/>
      <TfrxMemoView Name="Memo15" Align="baWidth" Left="0" Top="6" Width="737,00835" Height="37,7953" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" ParentFont="False" Text="Referente ao(s) movimento(s) :  [dados.&#34;codigo&#34;] &#13;&#10;Cliente: [dados.&#34;nomeclie&#34;]"/>
    </TfrxHeader>
    <TfrxHeader Name="Header3" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="64,25201" Left="0" Top="597,16574" Width="737,00835">
      <TfrxMemoView Name="Memo21" Left="1" Top="46,35436" Width="331,84268567" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="PRODUTO"/>
      <TfrxMemoView Name="Memo24" Left="378,04744669" Top="46,35436" Width="359,05529874" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="OBSERVAÇÃO"/>
      <TfrxMemoView Name="Memo25" Left="337,1577" Top="46,35436" Width="37,79524874" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="QTDE"/>
      <TfrxMemoView Name="Memo26" Align="baWidth" Left="0" Top="7" Width="737,00835" Height="37,7953" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" ParentFont="False" Text="Referente ao(s) movimento(s) :  [dados.&#34;codigo&#34;] &#13;&#10;Cliente: [dados.&#34;nomeclie&#34;]"/>
    </TfrxHeader>
    <TfrxMasterData Name="MasterData4" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="37,7953" Left="0" Top="895,74861" Width="737,00835" ColumnWidth="0" ColumnGap="0" DataSet="dadositensproducao" DataSetName="dadositensproducao" RowCount="0">
      <TfrxMemoView Name="Memo27" Left="0" Top="2,55906" Width="332,59858874" Height="34,01577" DataField="nome" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" WordBreak="True" Text="[dadositensproducao.&#34;nome&#34;]"/>
      <TfrxMemoView Name="Memo28" Left="336,1577" Top="2,55906" Width="37,79525606" Height="15,11812" AutoWidth="True" DataField="quantidade" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParentFont="False" Text="[dadositensproducao.&#34;quantidade&#34;]"/>
      <TfrxMemoView Name="Memo30" Left="377,04744669" Top="2,55906" Width="359,05529874" Height="34,01577" DataField="obs" DataSet="dadositensproducao" DataSetName="dadositensproducao" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" WordBreak="True" Text="[dadositensproducao.&#34;obs&#34;]"/>
    </TfrxMasterData>
    <TfrxHeader Name="Header4" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="64,25201" Left="0" Top="808,81942" Width="737,00835">
      <TfrxMemoView Name="Memo32" Left="1" Top="46,35436" Width="331,84268567" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="PRODUTO"/>
      <TfrxMemoView Name="Memo33" Left="378,04744669" Top="46,35436" Width="359,05529874" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="OBSERVAÇÃO"/>
      <TfrxMemoView Name="Memo34" Left="337,1577" Top="46,35436" Width="37,79524874" Height="15,11812" DataSet="dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="QTDE"/>
      <TfrxMemoView Name="Memo35" Align="baWidth" Left="0" Top="7" Width="737,00835" Height="37,7953" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" ParentFont="False" Text="Referente ao(s) movimento(s) :  [dados.&#34;codigo&#34;] &#13;&#10;Cliente: [dados.&#34;nomeclie&#34;]"/>
    </TfrxHeader>
    <TfrxFooter Name="Footer3" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="41,57483" Left="0" Top="321,26005" Width="737,00835">
      <TfrxMemoView Name="Memo22" Left="3,77953" Top="3,77953" Width="94,48825" Height="15,11812" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="Responsável : _________________________________________"/>
      <TfrxLineView Name="Line1" Left="106,72449" Top="18,67718" Width="222,99227" Height="0" Color="0" Diagonal="True"/>
    </TfrxFooter>
    <TfrxFooter Name="Footer4" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="41,57483" Left="0" Top="532,91373" Width="737,00835">
      <TfrxMemoView Name="Memo23" Left="3,77953" Top="3,77953" Width="94,48825" Height="15,11812" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="Responsável : _________________________________________"/>
      <TfrxLineView Name="Line3" Left="106,72449" Top="18,67718" Width="222,99227" Height="0" Color="0" Diagonal="True"/>
    </TfrxFooter>
    <TfrxFooter Name="Footer5" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="41,57483" Left="0" Top="744,56741" Width="737,00835">
      <TfrxMemoView Name="Memo6" Left="3,77953" Top="3,77953" Width="94,48825" Height="15,11812" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="Responsável : _________________________________________"/>
      <TfrxLineView Name="Line2" Left="106,72449" Top="18,67718" Width="222,99227" Height="0" Color="0" Diagonal="True"/>
    </TfrxFooter>
    <TfrxFooter Name="Footer1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="41,57483" Left="0" Top="956,22109" Width="737,00835">
      <TfrxMemoView Name="Memo31" Left="3,77953" Top="3,77953" Width="94,48825" Height="15,11812" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="0" ParentFont="False" Text="Responsável : _________________________________________"/>
      <TfrxLineView Name="Line4" Left="106,72449" Top="18,67718" Width="222,99227" Height="0" Color="0" Diagonal="True"/>
    </TfrxFooter>
  </TfrxReportPage>
</TfrxReport>
