Rev 439 | Rev 721 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 439 | Rev 669 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | this.dataPagamento = dataPagamento; |
33 | this.dataPagamento = dataPagamento; |
| 34 | this.dataVencimento = dataVencimento; |
34 | this.dataVencimento = dataVencimento; |
| 35 | }
|
35 | }
|
| 36 | 36 | ||
| 37 | public static String CONSULTA_SEM_CATEGORIA_DTO = "e.sequencial, e.contaBancaria.sequencial, e.contaBancaria.descricao, " + |
37 | public static String CONSULTA_SEM_CATEGORIA_DTO = "e.sequencial, e.contaBancaria.sequencial, e.contaBancaria.descricao, " + |
| 38 | "e.contaBancaria.tipoContaBancaria, e.contaBancaria.ativo, e.dataPagamento, e.valor, e.observacao, e.indicadorConciliado"; |
- | |
| - | 38 | "e.contaBancaria.tipoContaBancaria, e.contaBancaria.ativo, e.dataVencimento, e.dataPagamento, e.valor, e.observacao, e.indicadorConciliado"; |
|
| 39 | public ParcelaDTO(Long sequencial, Long sequencialContaBancaria, String descricaoContaBancaria, |
39 | public ParcelaDTO(Long sequencial, Long sequencialContaBancaria, String descricaoContaBancaria, |
| 40 | String tipoContaBancaria, Boolean ativoContaBancaria, Date dataPagamento, Double valor, |
- | |
| - | 40 | String tipoContaBancaria, Boolean ativoContaBancaria, Date dataVencimento, Date dataPagamento, Double valor, |
|
| 41 | String observacao, Boolean indicadorConciliado) { |
41 | String observacao, Boolean indicadorConciliado) { |
| 42 | super(); |
42 | super(); |
| 43 | this.sequencial = sequencial; |
43 | this.sequencial = sequencial; |
| 44 | this.contaBancariaDTO = new ContaBancariaDTO(sequencialContaBancaria, descricaoContaBancaria, tipoContaBancaria, ativoContaBancaria); |
44 | this.contaBancariaDTO = new ContaBancariaDTO(sequencialContaBancaria, descricaoContaBancaria, tipoContaBancaria, ativoContaBancaria); |
| - | 45 | this.dataVencimento = dataVencimento; |
|
| 45 | this.dataPagamento = dataPagamento; |
46 | this.dataPagamento = dataPagamento; |
| 46 | this.valor = valor; |
47 | this.valor = valor; |
| 47 | this.observacao = observacao; |
48 | this.observacao = observacao; |
| 48 | this.indicadorConciliado = indicadorConciliado; |
49 | this.indicadorConciliado = indicadorConciliado; |
| 49 | }
|
50 | }
|