Rev 582 | Rev 585 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 582 | Rev 583 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | package br.com.ec.domain.dto; |
1 | package br.com.ec.domain.dto; |
| 2 | 2 | ||
| - | 3 | import java.util.ArrayList; |
|
| 3 | import java.util.List; |
4 | import java.util.List; |
| 4 | 5 | ||
| 5 | import br.com.ec.domain.model.tipos.TipoProduto; |
6 | import br.com.ec.domain.model.tipos.TipoProduto; |
| 6 | 7 | ||
| 7 | public class AlertasGeralDTO { |
8 | public class AlertasGeralDTO { |
| 8 | 9 | ||
| 9 | private Integer quantidadeDiasVendas = 0; |
10 | private Integer quantidadeDiasVendas = 0; |
| 10 | private Integer tempoDeEstoqueParaAlerta = 0; |
11 | private Integer tempoDeEstoqueParaAlerta = 0; |
| 11 | private Boolean adicionarModelosFavoritosSemVendas; |
12 | private Boolean adicionarModelosFavoritosSemVendas; |
| 12 | 13 | ||
| 13 | List<TipoProduto> tiposProdutoSelecionados; |
- | |
| - | 14 | private List<TipoProduto> tiposProdutoSelecionados; |
|
| 14 | 15 | ||
| 15 | // ALERTAS COMPRAS (CAPAS)
|
16 | // ALERTAS COMPRAS (CAPAS)
|
| 16 | // ALERTAS COMPRAS (EXCETO CAPAS)
|
17 | // ALERTAS COMPRAS (EXCETO CAPAS)
|
| - | 18 | private List<AlertasComprasGeralDTO> alertasComprasGeralDTO; |
|
| 17 | 19 | ||
| 18 | // ALERTAS LOGÍSTICA (CAPAS)
|
20 | // ALERTAS LOGÍSTICA (CAPAS)
|
| 19 | // ALERTAS LOGÍSTICA (EXCETO CAPAS)
|
21 | // ALERTAS LOGÍSTICA (EXCETO CAPAS)
|
| 20 | 22 | ||
| 21 | // ALERTAS COMERCIAL
|
23 | // ALERTAS COMERCIAL
|
| 22 | 24 | ||
| 23 | // ALERTAS GESTAO
|
25 | // ALERTAS GESTAO
|
| 24 | 26 | ||
| 25 | public AlertasGeralDTO() {} |
- | |
| - | 27 | public AlertasGeralDTO() { |
|
| - | 28 | setAlertasComprasGeralDTO(new ArrayList<AlertasComprasGeralDTO>()); |
|
| - | 29 | }
|
|
| 26 | 30 | ||
| 27 | public Integer getQuantidadeDiasVendas() { |
31 | public Integer getQuantidadeDiasVendas() { |
| 28 | return quantidadeDiasVendas; |
32 | return quantidadeDiasVendas; |
| 29 | }
|
33 | }
|
| 30 | public void setQuantidadeDiasVendas(Integer quantidadeDiasVendas) { |
34 | public void setQuantidadeDiasVendas(Integer quantidadeDiasVendas) { |
| Line 48... | Line 52... | ||
| 48 | public List<TipoProduto> getTiposProdutoSelecionados() { |
52 | public List<TipoProduto> getTiposProdutoSelecionados() { |
| 49 | return tiposProdutoSelecionados; |
53 | return tiposProdutoSelecionados; |
| 50 | }
|
54 | }
|
| 51 | public void setTiposProdutoSelecionados(List<TipoProduto> tiposProdutoSelecionados) { |
55 | public void setTiposProdutoSelecionados(List<TipoProduto> tiposProdutoSelecionados) { |
| 52 | this.tiposProdutoSelecionados = tiposProdutoSelecionados; |
56 | this.tiposProdutoSelecionados = tiposProdutoSelecionados; |
| - | 57 | }
|
|
| - | 58 | ||
| - | 59 | public List<AlertasComprasGeralDTO> getAlertasComprasGeralDTO() { |
|
| - | 60 | return alertasComprasGeralDTO; |
|
| - | 61 | }
|
|
| - | 62 | public void setAlertasComprasGeralDTO(List<AlertasComprasGeralDTO> alertasComprasGeralDTO) { |
|
| - | 63 | this.alertasComprasGeralDTO = alertasComprasGeralDTO; |
|
| 53 | }
|
64 | }
|
| 54 | 65 | ||
| 55 | }
|
66 | }
|