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

wmixvideo / nfe / #7170

16 Dec 2025 05:21PM UTC coverage: 50.585% (-1.6%) from 52.149%
#7170

push

web-flow
Feature/nt 2025.002 v1.2 eventos (#1131)

* ajustado tipo do objeto no protocolo para o objeto cancelamento evento

* corrigido sequencial eventos atuais

* update pom

* implementado eventos novos nfe

* removed interface

* replicado classes pai do evento para todos eventos

* ajustado validator percentuaç

* ajustado anotação lists

* ajustado limite desc evento

8 of 884 new or added lines in 70 files covered. (0.9%)

3 existing lines in 1 file now uncovered.

14779 of 29216 relevant lines covered (50.59%)

0.51 hits per line

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

0.0
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/evento/AbstractNFDetGrupoItem.java
1
package com.fincatto.documentofiscal.nfe400.classes.evento;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
5
import com.fincatto.documentofiscal.validadores.DFIntegerValidador;
6
import org.simpleframework.xml.Attribute;
7
import org.simpleframework.xml.Element;
8

9
import java.math.BigDecimal;
10

NEW
11
public abstract class AbstractNFDetGrupoItem extends DFBase {
×
12

13
    @Attribute(name = "nItem")
14
    private Integer numeroItem;
15

16
    @Element(name = "vCBS")
17
    private BigDecimal valorCBS;
18

19
    @Element(name = "vIBS")
20
    private BigDecimal valorIBS;
21

22
    public Integer getNumeroItem() {
NEW
23
        return numeroItem;
×
24
    }
25

26
    public void setNumeroItem(Integer numeroItem) {
NEW
27
        DFIntegerValidador.tamanho1a3(numeroItem, "Número do Item do Documento Fiscal");
×
NEW
28
        this.numeroItem = numeroItem;
×
NEW
29
    }
×
30

31
    public BigDecimal getValorCBS() {
NEW
32
        return valorCBS;
×
33
    }
34

35
    public void setValorCBS(BigDecimal valorCBS) {
NEW
36
        DFBigDecimalValidador.tamanho13Com2CasasDecimais(valorCBS, "Valor CBS");
×
NEW
37
        this.valorCBS = valorCBS;
×
NEW
38
    }
×
39

40
    public BigDecimal getValorIBS() {
NEW
41
        return valorIBS;
×
42
    }
43

44
    public void setValorIBS(BigDecimal valorIBS) {
NEW
45
        DFBigDecimalValidador.tamanho13Com2CasasDecimais(valorIBS, "Valor IBS");
×
NEW
46
        this.valorIBS = valorIBS;
×
NEW
47
    }
×
48
}
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

© 2025 Coveralls, Inc