com.fincatto.documentofiscal.nfe400.classes.nota.NFNotaInfoPagamento Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
package com.fincatto.documentofiscal.nfe400.classes.nota;
import com.fincatto.documentofiscal.DFBase;
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
import com.fincatto.documentofiscal.validadores.DFListValidador;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementList;
import java.math.BigDecimal;
import java.util.List;
public class NFNotaInfoPagamento extends DFBase {
private static final long serialVersionUID = -2613537583415054150L;
@ElementList(entry = "detPag", inline = true, required = false)
private List detalhamentoFormasPagamento;
@Element(name = "vTroco", required = false)
private String valorTroco;
public NFNotaInfoPagamento setDetalhamentoFormasPagamento(final List detalhamentoFormasPagamento) {
DFListValidador.tamanho100(detalhamentoFormasPagamento, "Detalhamento de formas de pagamento");
this.detalhamentoFormasPagamento = detalhamentoFormasPagamento;
return this;
}
public List getDetalhamentoFormasPagamento() {
return this.detalhamentoFormasPagamento;
}
public String getValorTroco() {
return this.valorTroco;
}
public void setValorTroco(final BigDecimal valorTroco) {
this.valorTroco = DFBigDecimalValidador.tamanho15Com2CasasDecimais(valorTroco, "Valor troco");
}
}