-
-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tagging version 4.00.28 4.00.28
- Loading branch information
Showing
44 changed files
with
9,316 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ name: Liberar nova versão | |
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'master' | ||
tags: | ||
- '4.*' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# Notas de versão | ||
|
||
- Atualizado Cacert MT | ||
- Adicionado Conversao para RetDistDFeInt | ||
- Adicionado Eventos Suframa Vistoria E Internaliza |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,7 +109,7 @@ public static ConfiguracoesNfe criarConfiguracoes(EstadosEnum estado, AmbienteEn | |
|
||
if (Logger.getLogger("").isLoggable(Level.SEVERE)) { | ||
System.err.println("####################################################################"); | ||
System.err.println(" Api Java Nfe - Versão 4.00.27 - 26/11/2023"); | ||
System.err.println(" Api Java Nfe - Versão 4.00.28 - 20/01/2024"); | ||
if (Logger.getLogger("").isLoggable(Level.WARNING)) { | ||
System.err.println(" Samuel Olivera - [email protected] "); | ||
} | ||
|
287 changes: 287 additions & 0 deletions
287
src/main/java/br/com/swconsultoria/nfe/schema/eventoSuframaInternaliza/Ctg.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,287 @@ | ||
|
||
package br.com.swconsultoria.nfe.schema.eventoSuframaInternaliza; | ||
|
||
import javax.xml.bind.annotation.*; | ||
|
||
|
||
/** | ||
* <p>Classe Java de anonymous complex type. | ||
* | ||
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. | ||
* | ||
* <pre> | ||
* <complexType> | ||
* <complexContent> | ||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | ||
* <sequence> | ||
* <element ref="{http://www.portalfiscal.inf.br/nfe}nFormSeg" minOccurs="0"/> | ||
* <element ref="{http://www.portalfiscal.inf.br/nfe}UFDest"/> | ||
* <element ref="{http://www.portalfiscal.inf.br/nfe}tpEmis"/> | ||
* <choice> | ||
* <element ref="{http://www.portalfiscal.inf.br/nfe}CNPJDest"/> | ||
* <element ref="{http://www.portalfiscal.inf.br/nfe}CPFDest"/> | ||
* </choice> | ||
* <element ref="{http://www.portalfiscal.inf.br/nfe}vTotalNFe"/> | ||
* <element ref="{http://www.portalfiscal.inf.br/nfe}indICMS"/> | ||
* <element ref="{http://www.portalfiscal.inf.br/nfe}indICMSST"/> | ||
* <element ref="{http://www.portalfiscal.inf.br/nfe}diaEmi"/> | ||
* </sequence> | ||
* </restriction> | ||
* </complexContent> | ||
* </complexType> | ||
* </pre> | ||
* | ||
* | ||
*/ | ||
@XmlAccessorType(XmlAccessType.FIELD) | ||
@XmlType(name = "", propOrder = { | ||
"nFormSeg", | ||
"ufDest", | ||
"tpEmis", | ||
"cnpjDest", | ||
"cpfDest", | ||
"vTotalNFe", | ||
"indICMS", | ||
"indICMSST", | ||
"diaEmi" | ||
}) | ||
@XmlRootElement(name = "ctg", namespace = "http://www.portalfiscal.inf.br/nfe") | ||
public class Ctg { | ||
|
||
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe") | ||
protected String nFormSeg; | ||
@XmlElement(name = "UFDest", namespace = "http://www.portalfiscal.inf.br/nfe", required = true) | ||
@XmlSchemaType(name = "string") | ||
protected TUf ufDest; | ||
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true) | ||
protected String tpEmis; | ||
@XmlElement(name = "CNPJDest", namespace = "http://www.portalfiscal.inf.br/nfe") | ||
protected String cnpjDest; | ||
@XmlElement(name = "CPFDest", namespace = "http://www.portalfiscal.inf.br/nfe") | ||
protected String cpfDest; | ||
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true) | ||
protected String vTotalNFe; | ||
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true) | ||
protected String indICMS; | ||
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true) | ||
protected String indICMSST; | ||
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true) | ||
protected String diaEmi; | ||
|
||
/** | ||
* Obtém o valor da propriedade nFormSeg. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getNFormSeg() { | ||
return nFormSeg; | ||
} | ||
|
||
/** | ||
* Define o valor da propriedade nFormSeg. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setNFormSeg(String value) { | ||
this.nFormSeg = value; | ||
} | ||
|
||
/** | ||
* Obtém o valor da propriedade ufDest. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link TUf } | ||
* | ||
*/ | ||
public TUf getUFDest() { | ||
return ufDest; | ||
} | ||
|
||
/** | ||
* Define o valor da propriedade ufDest. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link TUf } | ||
* | ||
*/ | ||
public void setUFDest(TUf value) { | ||
this.ufDest = value; | ||
} | ||
|
||
/** | ||
* Obtém o valor da propriedade tpEmis. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getTpEmis() { | ||
return tpEmis; | ||
} | ||
|
||
/** | ||
* Define o valor da propriedade tpEmis. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setTpEmis(String value) { | ||
this.tpEmis = value; | ||
} | ||
|
||
/** | ||
* Obtém o valor da propriedade cnpjDest. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getCNPJDest() { | ||
return cnpjDest; | ||
} | ||
|
||
/** | ||
* Define o valor da propriedade cnpjDest. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setCNPJDest(String value) { | ||
this.cnpjDest = value; | ||
} | ||
|
||
/** | ||
* Obtém o valor da propriedade cpfDest. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getCPFDest() { | ||
return cpfDest; | ||
} | ||
|
||
/** | ||
* Define o valor da propriedade cpfDest. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setCPFDest(String value) { | ||
this.cpfDest = value; | ||
} | ||
|
||
/** | ||
* Obtém o valor da propriedade vTotalNFe. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getVTotalNFe() { | ||
return vTotalNFe; | ||
} | ||
|
||
/** | ||
* Define o valor da propriedade vTotalNFe. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setVTotalNFe(String value) { | ||
this.vTotalNFe = value; | ||
} | ||
|
||
/** | ||
* Obtém o valor da propriedade indICMS. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getIndICMS() { | ||
return indICMS; | ||
} | ||
|
||
/** | ||
* Define o valor da propriedade indICMS. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setIndICMS(String value) { | ||
this.indICMS = value; | ||
} | ||
|
||
/** | ||
* Obtém o valor da propriedade indICMSST. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getIndICMSST() { | ||
return indICMSST; | ||
} | ||
|
||
/** | ||
* Define o valor da propriedade indICMSST. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setIndICMSST(String value) { | ||
this.indICMSST = value; | ||
} | ||
|
||
/** | ||
* Obtém o valor da propriedade diaEmi. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getDiaEmi() { | ||
return diaEmi; | ||
} | ||
|
||
/** | ||
* Define o valor da propriedade diaEmi. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setDiaEmi(String value) { | ||
this.diaEmi = value; | ||
} | ||
|
||
} |
Oops, something went wrong.