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

wmixvideo / nfe / #6582

17 Jul 2025 09:30PM UTC coverage: 51.231% (+24.2%) from 26.996%
#6582

push

web-flow
Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e (#1054)

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

14006 of 27339 relevant lines covered (51.23%)

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/mdfe3/classes/consultaRecibo/MDFeConsultaRecibo.java
1
package com.fincatto.documentofiscal.mdfe3.classes.consultaRecibo;
2

3
import org.simpleframework.xml.Attribute;
4
import org.simpleframework.xml.Element;
5
import org.simpleframework.xml.Namespace;
6
import org.simpleframework.xml.Root;
7

8
import com.fincatto.documentofiscal.DFAmbiente;
9
import com.fincatto.documentofiscal.DFBase;
10
import com.fincatto.documentofiscal.validadores.DFStringValidador;
11

12
/**
13
 * Created by Eldevan Nery Junior on 30/11/17. Pedido de Consulta do Recibo do MDF-e.
14
 */
15
@Root(name = "consReciMDFe")
16
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
17
public class MDFeConsultaRecibo extends DFBase {
×
18
    private static final long serialVersionUID = 6718245060599595093L;
19

20
    @Element(name = "tpAmb", required = false)
21
    private DFAmbiente ambiente;
22

23
    /**
24
     * Número do Recibo do envio de lote de MDF-e.
25
     */
26
    @Element(name = "nRec", required = false)
27
    private String numeroRecibo;
28

29
    @Attribute(name = "versao", required = false)
30
    private String versao;
31

32
    public DFAmbiente getAmbiente() {
33
        return this.ambiente;
×
34
    }
35

36
    public void setAmbiente(final DFAmbiente ambiente) {
37
        this.ambiente = ambiente;
×
38
    }
×
39

40
    public String getNumeroRecibo() {
41
        return this.numeroRecibo;
×
42
    }
43

44
    public void setNumeroRecibo(final String numeroRecibo) {
45
        this.numeroRecibo = DFStringValidador.validaIntervalo(numeroRecibo, 0, 15, "Numero Recibo Lote MDFe", true);
×
46
    }
×
47

48
    public String getVersao() {
49
        return this.versao;
×
50
    }
51

52
    public void setVersao(final String versao) {
53
        this.versao = versao;
×
54
    }
×
55
}
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