Skip to content

Commit 648a238

Browse files
Versao 4.00.44
1 parent 1fb139c commit 648a238

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Java-NFe [![MIT License](https://img.shields.io/github/license/Samuel-Oliveira/Java_NFe.svg) ](https://github.com/Samuel-Oliveira/Java_NFe/blob/master/LICENSE) [![Maven Central](https://img.shields.io/maven-central/v/br.com.swconsultoria/java-nfe.svg?label=Maven%20Central)](https://search.maven.org/artifact/br.com.swconsultoria/java-nfe/4.00.43/jar)
1+
# Java-NFe [![MIT License](https://img.shields.io/github/license/Samuel-Oliveira/Java_NFe.svg) ](https://github.com/Samuel-Oliveira/Java_NFe/blob/master/LICENSE) [![Maven Central](https://img.shields.io/maven-central/v/br.com.swconsultoria/java-nfe.svg?label=Maven%20Central)](https://search.maven.org/artifact/br.com.swconsultoria/java-nfe/4.00.44/jar)
22
Biblioteca Java para consumo do WebService de NFe/NFCe
33

44
### Powered by
@@ -22,7 +22,7 @@ Para Iniciar :
2222
<dependency>
2323
<groupId>br.com.swconsultoria</groupId>
2424
<artifactId>java-nfe</artifactId>
25-
<version>4.00.43</version>
25+
<version>4.00.44</version>
2626
</dependency>
2727
```
2828

@@ -34,7 +34,7 @@ repositories {
3434
}
3535
}
3636
dependencies {
37-
implementation "br.com.swconsultoria:java-nfe:4.00.43"
37+
implementation "br.com.swconsultoria:java-nfe:4.00.44"
3838
}
3939
```
4040

@@ -43,7 +43,7 @@ Veja a Wiki https://github.com/Samuel-Oliveira/Java_NFe/wiki, para ter um Tutori
4343
________________________________________________________________________________________________
4444
# 🚨 Atenção — Reforma Tributária na NF-e / NFC-e
4545

46-
Foram adicionadas as classes com o **layout da Reforma Tributária** a partir da versao 4.00.43.
46+
Foram adicionadas as classes com o **layout da Reforma Tributária** a partir da versao 4.00.42.
4747

4848
## 🗓️ Cronograma de Implantação da Reforma Tributária (NF-e / NFC-e)
4949

@@ -73,6 +73,10 @@ ________________________________________________________________________________
7373

7474
# Historico de Versões
7575

76+
## v4.00.44 - 28/10/2025 - Schemas PL.010b (v1.1)
77+
- Correcoes EConf
78+
- Correcao sequencia Manifestacao Util
79+
-
7680
## v4.00.43 - 22/10/2025 - Schemas PL.010b (v1.1)
7781
- Correcoes EConf
7882
- Alterado Fonte Impressao Danfe NFe e NFCe de Times New Roman para Verdana

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>br.com.swconsultoria</groupId>
55
<artifactId>java-nfe</artifactId>
6-
<version>4.00.43</version>
6+
<version>4.00.44</version>
77
<name>Java_NFe</name>
88
<description>Api java para consumo do webService de nota fiscal eletronica</description>
99
<url>https://github.com/Samuel-Oliveira/Java_NFe</url>

src/main/java/br/com/swconsultoria/nfe/util/ManifestacaoUtil.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ public static TEnvEvento montaManifestacao(List<Evento> listaManifestacao, Confi
5656

5757
listaManifestacao.forEach(manifestacao -> {
5858

59+
if(manifestacao.getSequencia() == 0) {
60+
manifestacao.setSequencia(1);
61+
}
62+
5963
String id =
6064
"ID" + manifestacao.getTipoManifestacao().getCodigo() + manifestacao.getChave() + ChaveUtil.completarComZerosAEsquerda(String.valueOf(manifestacao.getSequencia()), 2);
6165

-12 Bytes
Binary file not shown.
-8 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)