-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from julianocanuto/adiciona-custo-dos-produtos
Adiciona recurso /estoque/produtos/custo
- Loading branch information
Showing
6 changed files
with
121 additions
and
25 deletions.
There are no files selected for viewing
26 changes: 1 addition & 25 deletions
26
src/main/java/com/julianocanuto/controleestoque/ControleestoqueApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,13 @@ | ||
package com.julianocanuto.controleestoque; | ||
|
||
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.boot.CommandLineRunner; | ||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
import com.julianocanuto.controleestoque.dto.ProdutoNomeQuantidadeDTO; | ||
import com.julianocanuto.controleestoque.repositorios.ProdutoRepository; | ||
import com.julianocanuto.controleestoque.repositorios.projections.ProdutoNomeQuantidadeProjection; | ||
|
||
@SpringBootApplication | ||
public class ControleestoqueApplication implements CommandLineRunner { | ||
|
||
@Autowired | ||
private ProdutoRepository produtoRepository; | ||
public class ControleestoqueApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(ControleestoqueApplication.class, args); | ||
} | ||
|
||
@Override | ||
public void run(String... args) throws Exception { | ||
|
||
List<ProdutoNomeQuantidadeProjection> list = produtoRepository.getNomeQuantidadeProdutos(); | ||
List<ProdutoNomeQuantidadeDTO> listDto = list.stream().map(x -> new ProdutoNomeQuantidadeDTO(x)) | ||
.collect(Collectors.toList()); | ||
|
||
for (ProdutoNomeQuantidadeDTO obj : listDto) { | ||
System.out.println(obj); | ||
} | ||
} | ||
|
||
} |
85 changes: 85 additions & 0 deletions
85
...ava/com/julianocanuto/controleestoque/dto/ProdutoComIngredientesEMedidasParaCustoDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package com.julianocanuto.controleestoque.dto; | ||
|
||
import java.io.Serializable; | ||
|
||
import com.julianocanuto.controleestoque.repositorios.projections.ProdutoComIngredientesEMedidasParaCustoProjection; | ||
|
||
public class ProdutoComIngredientesEMedidasParaCustoDTO implements Serializable { | ||
private static final long serialVersionUID = 1L; | ||
|
||
private Long idProduto; | ||
private String nomeProduto; | ||
private Double quantidadeIngrediente; | ||
private Double precoUnitarioIngrediente; | ||
private String unidadeDeMedidaIngrediente; | ||
|
||
public ProdutoComIngredientesEMedidasParaCustoDTO() { | ||
|
||
} | ||
|
||
public ProdutoComIngredientesEMedidasParaCustoDTO(Long idProduto, String nomeProduto, Double quantidadeIngrediente, | ||
Double precoUnitarioIngrediente, String unidadeDeMedidaIngrediente) { | ||
this.idProduto = idProduto; | ||
this.nomeProduto = nomeProduto; | ||
this.quantidadeIngrediente = quantidadeIngrediente; | ||
this.precoUnitarioIngrediente = precoUnitarioIngrediente; | ||
this.unidadeDeMedidaIngrediente = unidadeDeMedidaIngrediente; | ||
} | ||
|
||
public ProdutoComIngredientesEMedidasParaCustoDTO(ProdutoComIngredientesEMedidasParaCustoProjection projection) { | ||
idProduto = projection.getIdProduto(); | ||
nomeProduto = projection.getNomeProduto(); | ||
quantidadeIngrediente = projection.getQuantidadeIngrediente(); | ||
precoUnitarioIngrediente = projection.getPrecoUnitarioIngrediente(); | ||
unidadeDeMedidaIngrediente = projection.getUnidadeDeMedidaIngrediente(); | ||
} | ||
|
||
public Long getIdProduto() { | ||
return idProduto; | ||
} | ||
|
||
public void setIdProduto(Long idProduto) { | ||
this.idProduto = idProduto; | ||
} | ||
|
||
public String getNomeProduto() { | ||
return nomeProduto; | ||
} | ||
|
||
public void setNomeProduto(String nomeProduto) { | ||
this.nomeProduto = nomeProduto; | ||
} | ||
|
||
public Double getQuantidadeIngrediente() { | ||
return quantidadeIngrediente; | ||
} | ||
|
||
public void setQuantidadeIngrediente(Double quantidadeIngrediente) { | ||
this.quantidadeIngrediente = quantidadeIngrediente; | ||
} | ||
|
||
public Double getPrecoUnitarioIngrediente() { | ||
return precoUnitarioIngrediente; | ||
} | ||
|
||
public void setPrecoUnitarioIngrediente(Double precoUnitarioIngrediente) { | ||
this.precoUnitarioIngrediente = precoUnitarioIngrediente; | ||
} | ||
|
||
public String getUnidadeDeMedidaIngrediente() { | ||
return unidadeDeMedidaIngrediente; | ||
} | ||
|
||
public void setUnidadeDeMedidaIngrediente(String unidadeDeMedidaIngrediente) { | ||
this.unidadeDeMedidaIngrediente = unidadeDeMedidaIngrediente; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "ProdutoComIngredientesEMedidasParaCustoDTO [idProduto=" + idProduto + ", nomeProduto=" + nomeProduto | ||
+ ", quantidadeIngrediente=" + quantidadeIngrediente | ||
+ ", precoUnitarioIngrediente=" + precoUnitarioIngrediente + ", unidadeDeMedidaIngrediente=" | ||
+ unidadeDeMedidaIngrediente + "]"; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...leestoque/repositorios/projections/ProdutoComIngredientesEMedidasParaCustoProjection.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.julianocanuto.controleestoque.repositorios.projections; | ||
|
||
public interface ProdutoComIngredientesEMedidasParaCustoProjection { | ||
|
||
Long getIdProduto(); | ||
String getNomeProduto(); | ||
//String getNomeIngrediente(); | ||
Double getQuantidadeIngrediente(); | ||
Double getPrecoUnitarioIngrediente(); | ||
String getUnidadeDeMedidaIngrediente(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters