Rev 587 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 587 | Rev 588 | ||
|---|---|---|---|
| Line 11... | Line 11... | ||
| 11 | private List<RankingProdutoDTO> alertasProdutosSemSubtipo; |
11 | private List<RankingProdutoDTO> alertasProdutosSemSubtipo; |
| 12 | private List<AlertasComprasGeralSubTipoDTO> alertasComprasGeralSubTipoDTO; |
12 | private List<AlertasComprasGeralSubTipoDTO> alertasComprasGeralSubTipoDTO; |
| 13 | private Integer quantidadeAlertasPossiveis; |
13 | private Integer quantidadeAlertasPossiveis; |
| 14 | private Integer quantidadeAlertasPossiveisComSubtipo; |
14 | private Integer quantidadeAlertasPossiveisComSubtipo; |
| 15 | private Integer quantidadeAlertasCriticos; |
15 | private Integer quantidadeAlertasCriticos; |
| - | 16 | private Integer quantidadeAlertasSemPedidoCompra; |
|
| 16 | 17 | ||
| 17 | private Boolean verificado; |
18 | private Boolean verificado; |
| 18 | 19 | ||
| 19 | public AlertasComprasGeralDTO() { |
20 | public AlertasComprasGeralDTO() { |
| 20 | setAlertasProdutosSemSubtipo(new ArrayList<RankingProdutoDTO>()); |
21 | setAlertasProdutosSemSubtipo(new ArrayList<RankingProdutoDTO>()); |
| 21 | setAlertasComprasGeralSubTipoDTO(new ArrayList<AlertasComprasGeralSubTipoDTO>()); |
22 | setAlertasComprasGeralSubTipoDTO(new ArrayList<AlertasComprasGeralSubTipoDTO>()); |
| 22 | setQuantidadeAlertasPossiveis(0); |
23 | setQuantidadeAlertasPossiveis(0); |
| 23 | setQuantidadeAlertasPossiveisComSubtipo(0); |
24 | setQuantidadeAlertasPossiveisComSubtipo(0); |
| 24 | setQuantidadeAlertasCriticos(0); |
25 | setQuantidadeAlertasCriticos(0); |
| - | 26 | setQuantidadeAlertasSemPedidoCompra(0); |
|
| 25 | setVerificado(false); |
27 | setVerificado(false); |
| 26 | }
|
28 | }
|
| 27 | 29 | ||
| 28 | public TipoProduto getTipoProduto() { |
30 | public TipoProduto getTipoProduto() { |
| 29 | return tipoProduto; |
31 | return tipoProduto; |
| Line 66... | Line 68... | ||
| 66 | public void setQuantidadeAlertasCriticos(Integer quantidadeAlertasCriticos) { |
68 | public void setQuantidadeAlertasCriticos(Integer quantidadeAlertasCriticos) { |
| 67 | this.quantidadeAlertasCriticos = quantidadeAlertasCriticos; |
69 | this.quantidadeAlertasCriticos = quantidadeAlertasCriticos; |
| 68 | }
|
70 | }
|
| 69 | public void adicionarQuantidadeAlertasCriticos() { |
71 | public void adicionarQuantidadeAlertasCriticos() { |
| 70 | quantidadeAlertasCriticos++;
|
72 | quantidadeAlertasCriticos++;
|
| - | 73 | }
|
|
| - | 74 | ||
| - | 75 | public Integer getQuantidadeAlertasSemPedidoCompra() { |
|
| - | 76 | return quantidadeAlertasSemPedidoCompra; |
|
| - | 77 | }
|
|
| - | 78 | public void setQuantidadeAlertasSemPedidoCompra(Integer quantidadeAlertasSemPedidoCompra) { |
|
| - | 79 | this.quantidadeAlertasSemPedidoCompra = quantidadeAlertasSemPedidoCompra; |
|
| - | 80 | }
|
|
| - | 81 | public void adicionarQuantidadeAlertasSemPedidoCompra() { |
|
| - | 82 | quantidadeAlertasSemPedidoCompra++;
|
|
| 71 | }
|
83 | }
|
| 72 | 84 | ||
| 73 | public Boolean getVerificado() { |
85 | public Boolean getVerificado() { |
| 74 | return verificado; |
86 | return verificado; |
| 75 | }
|
87 | }
|