A propriedade "Exibir Campo Fatura" inibe os seguintes dados, ela não esconde o quadro todo da Fatura:
if fExibeCampoFatura then
begin
RLLabelNUmero.Caption := ACBrStr( 'NÚMERO' );
RLLabelValor.Caption := ACBrStr( 'VALOR ORIGINAL' );
RLLabelDupl.Caption := ACBrStr( 'VALOR DESCONTO' );
RLLabelLIQ.Caption := ACBrStr( 'VALOR LÍQUIDO' );
// Define a Coluna dos label's
RLLabelNUmero.Left := 264;
RLLabelValor.Left := 439;
RLLabelDupl.Left := 541;
RLLabelLIQ.Left := 652;
if NaoEstaVazio(FNFe.Cobr.Fat.nFat) then
begin
with FNFe.Cobr.Fat do
begin
RlbDadoNumero.caption := nFat;
RlbDadoValorOriginal.caption := FormatFloatBr(vOrig,'###,###,###,##0.00');
RlbDadoValorDesconto.caption := FormatFloatBr(vDesc,'###,###,###,##0.00');
RlbDadoValorLiquido.caption := FormatFloatBr(vLiq ,'###,###,###,##0.00');
end;
end
end;