Jump to content

dev botao

Correção


Pablo Cordeiro
  • Este tópico foi criado há 2296 dias atrás.
  • Talvez seja melhor você criar um NOVO TÓPICO do que postar uma resposta aqui.

Recommended Posts

Bom dia senhores,

Com o intuito de fazer com que o ACBrReinf grave os arquivos por CNPJ e separe por mês, tive que comentar o seguinte trecho no "\Fontes\ACBrDFe\ACBrReinf\PCNReinf\pcnEventosReinf.pas", na procedure "TReinfEventos.SaveToFiles":

  with TACBrReinf(Self.Owner) do
  begin
//    Path := Configuracoes.Arquivos.PathSalvar;
//    if trim(Path) = '' then
      Path := PathWithDelim(Configuracoes.Arquivos.GetPathReinf(Now, Configuracoes.Geral.IdContribuinte));
  end;
 

Quando eu não comentava essas linhas, ele gerava no PathSalvar e se eu deixasse sem preencher o PathSalvar, o GetPathSalvar preenche com a pasta do executável \Docs conforme código abaixo:

function TArquivosConf.GetPathSalvar: String;
begin
  if FPathSalvar = '' then
    if Assigned(fpConfiguracoes.Owner) then
      if not (csDesigning in fpConfiguracoes.Owner.ComponentState) then
        FPathSalvar := ApplicationPath + 'Docs';

  FPathSalvar := PathWithDelim(Trim(FPathSalvar));
  Result := FPathSalvar;
end;
 

Ao conferir no ACBrEsocial, essas linhas não existiam, por isso comentei.

Link to comment
Share on other sites

  • Consultores

Bom dia Pablo,

Dependendo do que foi informado a PathSalvar e PathReinf corremos o risco de gerar em duplicidade a pasta AnoMes.

Dai o motivo das linhas que você comentou.

 

Consultor SAC ACBr

Italo Giurizzato Junior
Ajude o Projeto ACBr crescer - Assine o SAC

Projeto ACBr

Analista de Sistemas / e-mail: [email protected] / Fone: (16) 9-9701-5030 / Araraquara-SP

Araraquara - A era dos Trólebus

Link to comment
Share on other sites

  • Este tópico foi criado há 2296 dias atrás.
  • Talvez seja melhor você criar um NOVO TÓPICO do que postar uma resposta aqui.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.