Skip to content

Commit 0333d25

Browse files
Adicionado Eventos Suframa Vistoria E Internaliza
1 parent 5e5115b commit 0333d25

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+9313
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# Notas de versão
22

3-
- Atualizado Cacert MT
4-
- Adicionado Conversao para RetDistDFeInt
3+
- Adicionado Eventos Suframa Vistoria E Internaliza

README.md

Lines changed: 6 additions & 3 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.27/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.28/jar)
22
Biblioteca Java para consumo do WebService de NFe/NFCe
33

44
## Dúvidas, Sugestões ou Consultoria
@@ -17,7 +17,7 @@ Para Iniciar :
1717
<dependency>
1818
<groupId>br.com.swconsultoria</groupId>
1919
<artifactId>java-nfe</artifactId>
20-
<version>4.00.27</version>
20+
<version>4.00.28</version>
2121
</dependency>
2222
```
2323

@@ -29,7 +29,7 @@ repositories {
2929
}
3030
}
3131
dependencies {
32-
implementation "br.com.swconsultoria:java-nfe:4.00.27"
32+
implementation "br.com.swconsultoria:java-nfe:4.00.28"
3333
}
3434
```
3535

@@ -39,6 +39,9 @@ ________________________________________________________________________________
3939

4040
# Historico de Versões
4141

42+
## v4.00.28 - 20/01/2024 - Schemas PL.009k
43+
- Adicionado Eventos Suframa Vistoria E Internaliza
44+
4245
## v4.00.27 - 26/11/2023 - Schemas PL.009k
4346
- Atualizado Cacert MT
4447
- Adicionado Conversao para RetDistDFeInt

src/main/java/br/com/swconsultoria/nfe/dom/ConfiguracoesNfe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public static ConfiguracoesNfe criarConfiguracoes(EstadosEnum estado, AmbienteEn
109109

110110
if (Logger.getLogger("").isLoggable(Level.SEVERE)) {
111111
System.err.println("####################################################################");
112-
System.err.println(" Api Java Nfe - Versão 4.00.27 - 26/11/2023");
112+
System.err.println(" Api Java Nfe - Versão 4.00.28 - 20/01/2024");
113113
if (Logger.getLogger("").isLoggable(Level.WARNING)) {
114114
System.err.println(" Samuel Olivera - [email protected] ");
115115
}
Lines changed: 287 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,287 @@
1+
2+
package br.com.swconsultoria.nfe.schema.eventoSuframaInternaliza;
3+
4+
import javax.xml.bind.annotation.*;
5+
6+
7+
/**
8+
* <p>Classe Java de anonymous complex type.
9+
*
10+
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
11+
*
12+
* <pre>
13+
* &lt;complexType&gt;
14+
* &lt;complexContent&gt;
15+
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
16+
* &lt;sequence&gt;
17+
* &lt;element ref="{http://www.portalfiscal.inf.br/nfe}nFormSeg" minOccurs="0"/&gt;
18+
* &lt;element ref="{http://www.portalfiscal.inf.br/nfe}UFDest"/&gt;
19+
* &lt;element ref="{http://www.portalfiscal.inf.br/nfe}tpEmis"/&gt;
20+
* &lt;choice&gt;
21+
* &lt;element ref="{http://www.portalfiscal.inf.br/nfe}CNPJDest"/&gt;
22+
* &lt;element ref="{http://www.portalfiscal.inf.br/nfe}CPFDest"/&gt;
23+
* &lt;/choice&gt;
24+
* &lt;element ref="{http://www.portalfiscal.inf.br/nfe}vTotalNFe"/&gt;
25+
* &lt;element ref="{http://www.portalfiscal.inf.br/nfe}indICMS"/&gt;
26+
* &lt;element ref="{http://www.portalfiscal.inf.br/nfe}indICMSST"/&gt;
27+
* &lt;element ref="{http://www.portalfiscal.inf.br/nfe}diaEmi"/&gt;
28+
* &lt;/sequence&gt;
29+
* &lt;/restriction&gt;
30+
* &lt;/complexContent&gt;
31+
* &lt;/complexType&gt;
32+
* </pre>
33+
*
34+
*
35+
*/
36+
@XmlAccessorType(XmlAccessType.FIELD)
37+
@XmlType(name = "", propOrder = {
38+
"nFormSeg",
39+
"ufDest",
40+
"tpEmis",
41+
"cnpjDest",
42+
"cpfDest",
43+
"vTotalNFe",
44+
"indICMS",
45+
"indICMSST",
46+
"diaEmi"
47+
})
48+
@XmlRootElement(name = "ctg", namespace = "http://www.portalfiscal.inf.br/nfe")
49+
public class Ctg {
50+
51+
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe")
52+
protected String nFormSeg;
53+
@XmlElement(name = "UFDest", namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
54+
@XmlSchemaType(name = "string")
55+
protected TUf ufDest;
56+
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
57+
protected String tpEmis;
58+
@XmlElement(name = "CNPJDest", namespace = "http://www.portalfiscal.inf.br/nfe")
59+
protected String cnpjDest;
60+
@XmlElement(name = "CPFDest", namespace = "http://www.portalfiscal.inf.br/nfe")
61+
protected String cpfDest;
62+
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
63+
protected String vTotalNFe;
64+
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
65+
protected String indICMS;
66+
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
67+
protected String indICMSST;
68+
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
69+
protected String diaEmi;
70+
71+
/**
72+
* Obtém o valor da propriedade nFormSeg.
73+
*
74+
* @return
75+
* possible object is
76+
* {@link String }
77+
*
78+
*/
79+
public String getNFormSeg() {
80+
return nFormSeg;
81+
}
82+
83+
/**
84+
* Define o valor da propriedade nFormSeg.
85+
*
86+
* @param value
87+
* allowed object is
88+
* {@link String }
89+
*
90+
*/
91+
public void setNFormSeg(String value) {
92+
this.nFormSeg = value;
93+
}
94+
95+
/**
96+
* Obtém o valor da propriedade ufDest.
97+
*
98+
* @return
99+
* possible object is
100+
* {@link TUf }
101+
*
102+
*/
103+
public TUf getUFDest() {
104+
return ufDest;
105+
}
106+
107+
/**
108+
* Define o valor da propriedade ufDest.
109+
*
110+
* @param value
111+
* allowed object is
112+
* {@link TUf }
113+
*
114+
*/
115+
public void setUFDest(TUf value) {
116+
this.ufDest = value;
117+
}
118+
119+
/**
120+
* Obtém o valor da propriedade tpEmis.
121+
*
122+
* @return
123+
* possible object is
124+
* {@link String }
125+
*
126+
*/
127+
public String getTpEmis() {
128+
return tpEmis;
129+
}
130+
131+
/**
132+
* Define o valor da propriedade tpEmis.
133+
*
134+
* @param value
135+
* allowed object is
136+
* {@link String }
137+
*
138+
*/
139+
public void setTpEmis(String value) {
140+
this.tpEmis = value;
141+
}
142+
143+
/**
144+
* Obtém o valor da propriedade cnpjDest.
145+
*
146+
* @return
147+
* possible object is
148+
* {@link String }
149+
*
150+
*/
151+
public String getCNPJDest() {
152+
return cnpjDest;
153+
}
154+
155+
/**
156+
* Define o valor da propriedade cnpjDest.
157+
*
158+
* @param value
159+
* allowed object is
160+
* {@link String }
161+
*
162+
*/
163+
public void setCNPJDest(String value) {
164+
this.cnpjDest = value;
165+
}
166+
167+
/**
168+
* Obtém o valor da propriedade cpfDest.
169+
*
170+
* @return
171+
* possible object is
172+
* {@link String }
173+
*
174+
*/
175+
public String getCPFDest() {
176+
return cpfDest;
177+
}
178+
179+
/**
180+
* Define o valor da propriedade cpfDest.
181+
*
182+
* @param value
183+
* allowed object is
184+
* {@link String }
185+
*
186+
*/
187+
public void setCPFDest(String value) {
188+
this.cpfDest = value;
189+
}
190+
191+
/**
192+
* Obtém o valor da propriedade vTotalNFe.
193+
*
194+
* @return
195+
* possible object is
196+
* {@link String }
197+
*
198+
*/
199+
public String getVTotalNFe() {
200+
return vTotalNFe;
201+
}
202+
203+
/**
204+
* Define o valor da propriedade vTotalNFe.
205+
*
206+
* @param value
207+
* allowed object is
208+
* {@link String }
209+
*
210+
*/
211+
public void setVTotalNFe(String value) {
212+
this.vTotalNFe = value;
213+
}
214+
215+
/**
216+
* Obtém o valor da propriedade indICMS.
217+
*
218+
* @return
219+
* possible object is
220+
* {@link String }
221+
*
222+
*/
223+
public String getIndICMS() {
224+
return indICMS;
225+
}
226+
227+
/**
228+
* Define o valor da propriedade indICMS.
229+
*
230+
* @param value
231+
* allowed object is
232+
* {@link String }
233+
*
234+
*/
235+
public void setIndICMS(String value) {
236+
this.indICMS = value;
237+
}
238+
239+
/**
240+
* Obtém o valor da propriedade indICMSST.
241+
*
242+
* @return
243+
* possible object is
244+
* {@link String }
245+
*
246+
*/
247+
public String getIndICMSST() {
248+
return indICMSST;
249+
}
250+
251+
/**
252+
* Define o valor da propriedade indICMSST.
253+
*
254+
* @param value
255+
* allowed object is
256+
* {@link String }
257+
*
258+
*/
259+
public void setIndICMSST(String value) {
260+
this.indICMSST = value;
261+
}
262+
263+
/**
264+
* Obtém o valor da propriedade diaEmi.
265+
*
266+
* @return
267+
* possible object is
268+
* {@link String }
269+
*
270+
*/
271+
public String getDiaEmi() {
272+
return diaEmi;
273+
}
274+
275+
/**
276+
* Define o valor da propriedade diaEmi.
277+
*
278+
* @param value
279+
* allowed object is
280+
* {@link String }
281+
*
282+
*/
283+
public void setDiaEmi(String value) {
284+
this.diaEmi = value;
285+
}
286+
287+
}

0 commit comments

Comments
 (0)