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

wmixvideo / nfe / #6266

21 Mar 2025 11:46AM UTC coverage: 52.671% (+25.7%) from 26.996%
#6266

push

luciano.antunes
Nota Fiscal Fácil

0 of 21 new or added lines in 2 files covered. (0.0%)

2924 existing lines in 401 files now uncovered.

14002 of 26584 relevant lines covered (52.67%)

0.53 hits per line

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

50.0
/src/main/java/com/fincatto/documentofiscal/cte300/classes/nota/CTeNotaInfoCTeNormal.java
1
package com.fincatto.documentofiscal.cte300.classes.nota;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import org.simpleframework.xml.Element;
5
import org.simpleframework.xml.ElementList;
6
import org.simpleframework.xml.Namespace;
7
import org.simpleframework.xml.Root;
8

9
import java.util.List;
10

11
/**
12
 * @author Caio
13
 * @info Grupo de informações do CT-e Normal e Substituto
14
 */
15

16
@Root(name = "infCTeNorm")
17
@Namespace(reference = "http://www.portalfiscal.inf.br/cte")
18
public class CTeNotaInfoCTeNormal extends DFBase {
19
    private static final long serialVersionUID = 2249807934468854296L;
20
    
21
    @Element(name = "infCarga")
22
    private CTeNotaInfoCTeNormalInfoCarga infoCarga;
23

24
    @Element(name = "infDoc", required = false)
25
    private CTeNotaInfoCTeNormalInfoDocumentos infoDocumentos;
26

27
    @Element(name = "docAnt", required = false)
28
    private CTeNotaInfoCTeNormalDocumentosAnteriores documentosAnteriores;
29
    
30
    @Element(name = "infModal")
31
    private CTeNotaInfoCTeNormalInfoModal infoModal;
32

33
    @ElementList(name = "veicNovos", inline = true, required = false)
34
    private List<CTeNotaInfoCTeNormalVeiculosTransportados> veiculosTransportados;
35

36
    @Element(name = "cobr", required = false)
37
    private CTeNotaInfoCTeNormalCobranca cobranca;
38

39
    @Element(name = "infCteSub", required = false)
40
    private CTeNotaInfoCTeNormalInfoCTeSubstituicao infoCTeSubstituicao;
41

42
    @Element(name = "infGlobalizado", required = false)
43
    private CTeNotaInfoCTeNormalInfoGlobalizado infoGlobalizado;
44

45
    @Element(name = "infServVinc", required = false)
46
    private CTeNotaInfoCTeNormalInfoServicoVinculado infoServicoVinculado;
47

48
    public CTeNotaInfoCTeNormal() {
1✔
49
        this.infoCarga = null;
1✔
50
        this.infoDocumentos = null;
1✔
51
        this.documentosAnteriores = null;
1✔
52
        this.infoModal = null;
1✔
53
        this.veiculosTransportados = null;
1✔
54
        this.cobranca = null;
1✔
55
        this.infoCTeSubstituicao = null;
1✔
56
        this.infoGlobalizado = null;
1✔
57
        this.infoServicoVinculado = null;
1✔
58
    }
1✔
59

60
    public CTeNotaInfoCTeNormalInfoCarga getInfoCarga() {
UNCOV
61
        return this.infoCarga;
×
62
    }
63

64
    /**
65
     * Informações da Carga do CT-e
66
     */
67
    public void setInfoCarga(final CTeNotaInfoCTeNormalInfoCarga infoCarga) {
68
        this.infoCarga = infoCarga;
1✔
69
    }
1✔
70

71
    public CTeNotaInfoCTeNormalInfoDocumentos getInfoDocumentos() {
UNCOV
72
        return this.infoDocumentos;
×
73
    }
74

75
    /**
76
     * Informações dos documentos transportados pelo CT-e. Opcional para Redespacho Intermediario e Serviço vinculado a multimodal.<br>
77
     * Poderá não ser informado para os CT-e de redespacho intermediário. Nos demais casos deverá sempre ser informado.
78
     */
79
    public void setInfoDocumentos(final CTeNotaInfoCTeNormalInfoDocumentos infoDocumentos) {
80
        this.infoDocumentos = infoDocumentos;
1✔
81
    }
1✔
82

83
    public CTeNotaInfoCTeNormalDocumentosAnteriores getDocumentosAnteriores() {
UNCOV
84
        return this.documentosAnteriores;
×
85
    }
86

87
    /**
88
     * Documentos de Transporte Anterior
89
     */
90
    public void setDocumentosAnteriores(final CTeNotaInfoCTeNormalDocumentosAnteriores documentosAnteriores) {
UNCOV
91
        this.documentosAnteriores = documentosAnteriores;
×
92
    }
×
93

94
    public CTeNotaInfoCTeNormalInfoModal getInfoModal() {
UNCOV
95
        return this.infoModal;
×
96
    }
97

98
    /**
99
     * Informações do modal
100
     */
101
    public void setInfoModal(final CTeNotaInfoCTeNormalInfoModal infoModal) {
102
        this.infoModal = infoModal;
1✔
103
    }
1✔
104

105
    public List<CTeNotaInfoCTeNormalVeiculosTransportados> getVeiculosTransportados() {
UNCOV
106
        return this.veiculosTransportados;
×
107
    }
108

109
    /**
110
     * informações dos veículos transportados
111
     */
112
    public void setVeiculosTransportados(final List<CTeNotaInfoCTeNormalVeiculosTransportados> veiculosTransportados) {
UNCOV
113
        this.veiculosTransportados = veiculosTransportados;
×
114
    }
×
115

116
    public CTeNotaInfoCTeNormalCobranca getCobranca() {
UNCOV
117
        return this.cobranca;
×
118
    }
119

120
    /**
121
     * Dados da cobrança do CT-e
122
     */
123
    public void setCobranca(final CTeNotaInfoCTeNormalCobranca cobranca) {
124
        this.cobranca = cobranca;
1✔
125
    }
1✔
126

127
    public CTeNotaInfoCTeNormalInfoCTeSubstituicao getInfoCTeSubstituicao() {
UNCOV
128
        return this.infoCTeSubstituicao;
×
129
    }
130

131
    /**
132
     * Informações do CT-e de substituição
133
     */
134
    public void setInfoCTeSubstituicao(final CTeNotaInfoCTeNormalInfoCTeSubstituicao infoCTeSubstituicao) {
UNCOV
135
        this.infoCTeSubstituicao = infoCTeSubstituicao;
×
136
    }
×
137

138
    public CTeNotaInfoCTeNormalInfoGlobalizado getInfoGlobalizado() {
UNCOV
139
        return this.infoGlobalizado;
×
140
    }
141

142
    /**
143
     * Informações do CT-e Globalizado
144
     */
145
    public void setInfoGlobalizado(final CTeNotaInfoCTeNormalInfoGlobalizado infoGlobalizado) {
UNCOV
146
        this.infoGlobalizado = infoGlobalizado;
×
147
    }
×
148

149
    public CTeNotaInfoCTeNormalInfoServicoVinculado getInfoServicoVinculado() {
UNCOV
150
        return this.infoServicoVinculado;
×
151
    }
152

153
    /**
154
     * Informações do Serviço Vinculado a Multimodal
155
     */
156
    public void setInfoServicoVinculado(final CTeNotaInfoCTeNormalInfoServicoVinculado infoServicoVinculado) {
UNCOV
157
        this.infoServicoVinculado = infoServicoVinculado;
×
158
    }
×
159
}
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