• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wmixvideo / nfe / #7417

16 Jan 2026 03:32PM UTC coverage: 50.377% (+23.4%) from 26.994%
#7417

push

web-flow
Revert layout 3.0 (#1142)

* refactor(cte300): Adiciona o campo IBSCBS ao CTeNotaInfoInformacoesRelativasImpostos

* revert(cte300): reverte o layout cte300 removendo o campo IBSCBS

14779 of 29337 relevant lines covered (50.38%)

0.5 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

70.0
/src/main/java/com/fincatto/documentofiscal/nfe310/classes/lote/consulta/NFLoteConsulta.java
1
package com.fincatto.documentofiscal.nfe310.classes.lote.consulta;
2

3
import com.fincatto.documentofiscal.DFAmbiente;
4
import com.fincatto.documentofiscal.DFBase;
5
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
6
import org.simpleframework.xml.Attribute;
7
import org.simpleframework.xml.Element;
8
import org.simpleframework.xml.Namespace;
9
import org.simpleframework.xml.Root;
10

11
import java.math.BigDecimal;
12

13
@Root(name = "consReciNFe")
14
@Namespace(reference = "http://www.portalfiscal.inf.br/nfe")
15
public class NFLoteConsulta extends DFBase {
1✔
16
    private static final long serialVersionUID = 205828108320121890L;
17
    
18
    @Attribute(name = "versao")
19
    private String versao;
20
    
21
    @Element(name = "tpAmb")
22
    private DFAmbiente ambiente;
23
    
24
    @Element(name = "nRec")
25
    private String recibo;
26

27
    public String getVersao() {
28
        return this.versao;
×
29
    }
30

31
    public void setVersao(final BigDecimal versao) {
32
        this.versao = DFBigDecimalValidador.tamanho4Com2CasasDecimais(versao, "Versao");
1✔
33
    }
1✔
34

35
    public DFAmbiente getAmbiente() {
36
        return this.ambiente;
×
37
    }
38

39
    public void setAmbiente(final DFAmbiente ambiente) {
40
        this.ambiente = ambiente;
1✔
41
    }
1✔
42

43
    public String getRecibo() {
44
        return this.recibo;
×
45
    }
46

47
    public void setRecibo(final String recibo) {
48
        this.recibo = recibo;
1✔
49
    }
1✔
50
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc