Skip to content

Commit

Permalink
Merge pull request BoletoNet#920 from adrianotrentim/master
Browse files Browse the repository at this point in the history
Corrigido rotina para composição do código do cedente.
  • Loading branch information
carloscds authored Aug 24, 2021
2 parents e8a7661 + bf91d2c commit eb74b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Boleto.Net/Banco/Banco_Sicredi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public override void ValidaBoleto(Boleto boleto)
(!codigoCedente.StartsWith(boleto.Cedente.ContaBancaria.Agencia) ||
!(codigoCedente.EndsWith(conta) || codigoCedente.EndsWith(conta.Substring(0, conta.Length - 1)))))
//throw new BoletoNetException("Código do cedente deve estar no " + infoFormatoCodigoCedente);
boleto.Cedente.Codigo = string.Format("{0}{1}{2}", boleto.Cedente.ContaBancaria.Agencia, boleto.Cedente.ContaBancaria.OperacaConta, Utils.Right((boleto.Cedente.Codigo + boleto.Cedente.DigitoCedente), 5, '0', true));
boleto.Cedente.Codigo = string.Format("{0}{1}{2}", boleto.Cedente.ContaBancaria.Agencia, boleto.Cedente.ContaBancaria.OperacaConta, (boleto.Cedente.Codigo.Length >= 5 ? Utils.Right(boleto.Cedente.Codigo, 5, '0', true) : Utils.Right((boleto.Cedente.Codigo + boleto.Cedente.DigitoCedente), 5, '0', true)));

if (string.IsNullOrEmpty(boleto.Carteira))
throw new BoletoNetException("Tipo de carteira é obrigatório. " + ObterInformacoesCarteirasDisponiveis());
Expand Down

0 comments on commit eb74b05

Please sign in to comment.