• 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

69.23
/src/main/java/com/fincatto/documentofiscal/nfe310/classes/nota/NFNotaInfoItemImpostoICMS60.java
1
package com.fincatto.documentofiscal.nfe310.classes.nota;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.nfe310.classes.NFNotaInfoImpostoTributacaoICMS;
5
import com.fincatto.documentofiscal.nfe310.classes.NFOrigem;
6
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
7
import org.simpleframework.xml.Element;
8

9
import java.math.BigDecimal;
10

11
public class NFNotaInfoItemImpostoICMS60 extends DFBase {
1✔
12
    private static final long serialVersionUID = 1325261415800285939L;
13
    
14
    @Element(name = "orig")
15
    private NFOrigem origem;
16
    
17
    @Element(name = "CST")
18
    private NFNotaInfoImpostoTributacaoICMS situacaoTributaria;
19

20
    @Element(name = "vBCSTRet", required = false)
21
    private String valorBCICMSSTRetido;
22

23
    @Element(name = "vICMSSTRet", required = false)
24
    private String valorICMSSTRetido;
25

26
    public void setOrigem(final NFOrigem origem) {
27
        this.origem = origem;
1✔
28
    }
1✔
29

30
    public void setSituacaoTributaria(final NFNotaInfoImpostoTributacaoICMS situacaoTributaria) {
31
        this.situacaoTributaria = situacaoTributaria;
1✔
32
    }
1✔
33

34
    public void setValorBCICMSSTRetido(final BigDecimal valorBCICMSSTRetido) {
35
        this.valorBCICMSSTRetido = DFBigDecimalValidador.tamanho15Com2CasasDecimais(valorBCICMSSTRetido, "Valor BC ICMS ST Retido ICMS60 Item");
1✔
36
    }
1✔
37

38
    public void setValorICMSSTRetido(final BigDecimal valorICMSSTRetido) {
39
        this.valorICMSSTRetido = DFBigDecimalValidador.tamanho15Com2CasasDecimais(valorICMSSTRetido, "Valor ICMS ST Retido ICMS60 Item");
1✔
40
    }
1✔
41

42
    public NFOrigem getOrigem() {
43
        return this.origem;
×
44
    }
45

46
    public NFNotaInfoImpostoTributacaoICMS getSituacaoTributaria() {
47
        return this.situacaoTributaria;
×
48
    }
49

50
    public String getValorBCICMSSTRetido() {
51
        return this.valorBCICMSSTRetido;
×
52
    }
53

54
    public String getValorICMSSTRetido() {
55
        return this.valorICMSSTRetido;
×
56
    }
57
}
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