order by date menu

This commit is contained in:
Blandine Bajard 2022-03-01 17:45:51 +01:00
parent 5c92159b53
commit ff1df20b1f
3 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ public class MenuController {
}
//Mise a jour d'un menu par son ID
@PutMapping("/update/{team_id}/{id}")
@PutMapping(value="/update/{team_id}/{id}", produces="application/json", consumes= "application/json")
//@PreAuthorize("hasRole('ROLE_PARENT')")
public ResponseEntity<?> updateMenu(@RequestBody Menu menu, @PathVariable Integer team_id, @PathVariable Integer id) throws Exception {
Menu resultMenu = null;

View File

@ -15,7 +15,7 @@ public class Menu {
private String repasSoir;
@ManyToOne
@JoinColumn(name="TEAM_ID")
@JsonIgnoreProperties({"menu","membre"})
@JsonIgnoreProperties({"menu"})
private Team team;
public Menu() {

View File

@ -12,7 +12,7 @@ import java.util.List;
@Repository
public interface MenuRepository extends JpaRepository <Menu, Integer> {
@Query(value = "select * from menu where team_id = :team_id", nativeQuery = true)
@Query(value = "select * from menu where team_id = :team_id order by date_menu ASC", nativeQuery = true)
List<Menu> FindMenusByTeam(@Param("team_id") int team_id);
}