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

wmixvideo / nfe / #7074

24 Jun 2025 01:09AM UTC coverage: 51.425% (+24.4%) from 26.996%
#7074

push

web-flow
Merge 0ce3effce into bb9f583b3

14003 of 27230 relevant lines covered (51.42%)

0.51 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