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

wmixvideo / nfe / #7148

04 Dec 2025 02:00PM UTC coverage: 52.281% (+25.3%) from 26.996%
#7148

push

web-flow
Ajuste conforme CTe_Nota_Tecnica_2025_001_RTC_v1.10 (#1126)

* Merge from master

* Revert "Merge from master"

This reverts commit e2ed141c3.

* Revert "Revert "Merge from master""

This reverts commit 05781623b.

* Adição do campo indDoacao e grupo de informações de estorno de crédito. Exclusão do grupo de informações do crédito presumido por não se aplicar aos cClassTrib associados ao CTe. Conforme CTe_Nota_Tecnica_2025_001_RTC_v1.10.

103 of 276 new or added lines in 17 files covered. (37.32%)

2968 existing lines in 404 files now uncovered.

14761 of 28234 relevant lines covered (52.28%)

0.52 hits per line

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

0.0
/src/main/java/com/fincatto/documentofiscal/cte300/classes/enviolote/CTeEnvioLote.java
1
package com.fincatto.documentofiscal.cte300.classes.enviolote;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.cte300.classes.nota.CTeNota;
5
import com.fincatto.documentofiscal.validadores.DFListValidador;
6
import com.fincatto.documentofiscal.validadores.DFStringValidador;
7
import org.simpleframework.xml.*;
8

9
import java.util.List;
10

11
/**
12
 * @author Caio
13
 * @info Tipo Pedido de Concessão de Autorização da CT-e
14
 */
15

16
@Root(name = "enviCTe")
17
@Namespace(reference = "http://www.portalfiscal.inf.br/cte")
18
public class CTeEnvioLote extends DFBase {
19
    private static final long serialVersionUID = -6451397314955370262L;
20
    
21
    @Attribute(name = "versao")
22
    private String versao;
23
    
24
    @Element(name = "idLote")
25
    private String idLote;
26
    
27
    @ElementList(name = "CTe", inline = true)
28
    private List<CTeNota> nota;
29

UNCOV
30
    public CTeEnvioLote() {
×
31
        this.versao = null;
×
32
        this.idLote = null;
×
33
        this.nota = null;
×
34
    }
×
35

36
    public String getVersao() {
UNCOV
37
        return this.versao;
×
38
    }
39

40
    public void setVersao(final String versao) {
UNCOV
41
        this.versao = versao;
×
42
    }
×
43

44
    public String getIdLote() {
UNCOV
45
        return this.idLote;
×
46
    }
47

48
    public void setIdLote(final String idLote) {
UNCOV
49
        DFStringValidador.tamanho15N(idLote, "ID do Lote");
×
50
        this.idLote = idLote;
×
51
    }
×
52

53
    public List<CTeNota> getNota() {
UNCOV
54
        return this.nota;
×
55
    }
56

57
    public void setNota(final List<CTeNota> nota) {
UNCOV
58
        DFListValidador.tamanho50(nota, "Notas");
×
59
        this.nota = nota;
×
60
    }
×
61
}
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