Correção da validação nosso numero sicoob fix bug#AL-3124

master
Fabio Faria 2023-08-24 09:38:41 -03:00
parent 5f3ad0fc41
commit d862bdd9ab
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>GeneradorBoletosCNAB</artifactId> <artifactId>GeneradorBoletosCNAB</artifactId>
<version>1.1.1</version> <version>1.1.2</version>
<name>GeneradorBoletosCNAB</name> <name>GeneradorBoletosCNAB</name>
<distributionManagement> <distributionManagement>

View File

@ -335,7 +335,7 @@ public class NossoNumeroUtils {
return Boolean.TRUE; return Boolean.TRUE;
} }
if(BancoLayout.SICOOB_240_Envio.equals(bancoLayout) && nossoNumero.length() == 10 ){ if(BancoLayout.SICOOB_240_Envio.equals(bancoLayout) && nossoNumero.length() == 9 ){
return Boolean.TRUE; return Boolean.TRUE;
} }