@RequestMapping(value = "delete/{id}", method = RequestMethod.GET) public String deleteDCTAPById(@PathVariable String id, Model model) { DemandeValidationConsoTempsAccPers currentDctap = manager.getDVCTAPById(Long.valueOf(id)); // Test que la DCTAP appartient à la bonne personne if (currentDctap.getEleve().equals(UtilSession.getUserInSession())) { currentDctap.setDctapAnnule(); manager.updateDVCTAP(currentDctap); } return "redirect:/app/eleve/mesdctap"; }
@RequestMapping(value = "edit", method = RequestMethod.GET) public String editDCTAPById( @RequestParam("id") String id, FormDemandeConsoTempsAccPers formDctap, Model model) { // System.out.println("TEST id recu :" + formDctap.getId()); DemandeValidationConsoTempsAccPers currentDctap = manager.getDVCTAPById(Long.valueOf(id)); System.out.println("DCTAP : " + currentDctap); // valorise le bean de vue avec le dctap courant formDctap.setId(currentDctap.getId()); // en provenance d'un champ caché formDctap.setDateAction(currentDctap.getDateAction()); formDctap.setProfId(currentDctap.getProf().getId()); // formDctap.setProfNom(currentDctap.getProf().getNom()); formDctap.setIdEleve(currentDctap.getEleve().getId()); formDctap.setAccPersId(currentDctap.getAccPers().getId()); formDctap.setMinutes(currentDctap.getMinutes()); model.addAttribute("minute", currentDctap.getMinutes()); model.addAttribute("lesProfs", manager.getAllProf()); model.addAttribute("etat", manager.getDVCTAPById(formDctap.getId()).getEtat()); model.addAttribute("lesAP", manager.getAllAPForEleve()); return "eleve/edit"; }
@RequestMapping(value = "refuse/{id}", method = RequestMethod.GET) public String refuseDCTAPById(@PathVariable String id, Model model) { DemandeValidationConsoTempsAccPers dctap = manager.getDVCTAPById(Long.valueOf(id)); // Test que la DCTAP appartient à la bonne personne if (dctap.getEleve().equals(UtilSession.getUserInSession()) && dctap.getEtat() > 1023) { try { dctap.transitionRejeteeParEleve(); manager.updateDVCTAP(dctap); } catch (DVCTAPException e) { // TODO redirect error view } } return "redirect:/app/eleve/mesdctap"; }
@RequestMapping(value = "doedit", method = RequestMethod.POST) public String doeditDCTAPById( FormDemandeConsoTempsAccPers formDctap, BindingResult bindResult, Model model) { User prof = manager.getUserById(formDctap.getProfId()); if (prof == null) bindResult.rejectValue("profId", "required", "Erreur d'identifiant de professeur"); if (bindResult.hasErrors()) { model.addAttribute("lesProfs", manager.getAllProf()); return "eleve/edit"; } else { User user = UtilSession.getUserInSession(); DemandeValidationConsoTempsAccPers dctapForUpdate = manager.getDVCTAPById(Long.valueOf(formDctap.getId())); if (dctapForUpdate.getEtat() == 0 || dctapForUpdate.getEtat() == 4) { AccPersonalise acc = new AccPersonalise(null, formDctap.getAccPersNom(), 1, user.getId()); if (manager.getAPById(formDctap.getAccPersId()) != null) { acc = manager.getAPById(formDctap.getAccPersId()); dctapForUpdate.setAccPers(manager.getAPById(formDctap.getAccPersId())); } else { manager.addAP(acc); dctapForUpdate.setAccPers(manager.getAPByNom(formDctap.getAccPersNom())); } dctapForUpdate.setDateAction(formDctap.getDateAction()); dctapForUpdate.setMinutes(formDctap.getMinutes()); dctapForUpdate.setProf(manager.getUserById(formDctap.getProfId())); dctapForUpdate.setDctapModifEleve(); manager.updateDVCTAP(dctapForUpdate); } return "redirect:/app/eleve/mesdctap"; } }