use of fr.univlorraine.ecandidat.entities.ecandidat.PjCandPK in project esup-ecandidat by EsupPortail.
the class CandidaturePieceController method removeFileToPj.
/* @Transactional(rollbackFor=FileException.class) public void
* removeFileToPj(PjCand pjCand) throws FileException{ Fichier fichier =
* pjCand.getFichier(); pjCandRepository.delete(pjCand); if (fichier != null){
* fileController.deleteFichier(fichier,false); } } */
/**
* Supprime un fichier d'une PJCand
* @param pjCand
*/
public void removeFileToPj(final PjCand pjCand) {
final Fichier fichier = pjCand.getFichier();
final PjCandPK idPjCand = pjCand.getId();
pjCandRepository.delete(pjCand);
if (fichier != null) {
FichierFiabilisation fichierFiabilisation = new FichierFiabilisation(fichier);
fichierFiabilisation.setIdPj(idPjCand.getIdPj());
fichierFiabilisation.setIdCand(idPjCand.getIdCand());
fichierFiabilisation = fichierFiabilisationRepository.save(fichierFiabilisation);
try {
fileController.deleteFichier(fichier);
fichierFiabilisationRepository.delete(fichierFiabilisation);
} catch (final FileException e) {
}
}
}
use of fr.univlorraine.ecandidat.entities.ecandidat.PjCandPK in project esup-ecandidat by EsupPortail.
the class CandidaturePieceController method addFileToPieceJustificative.
/**
* Ajoute un fichier a une pj
* @param pieceJustif
* @param candidature
* @param listener
*/
public void addFileToPieceJustificative(final PjPresentation pieceJustif, final Candidature candidature, final CandidatureListener listener) {
/* Verification que le service n'est pas en maintenance */
if (fileController.isFileServiceMaintenance(true)) {
return;
}
Assert.notNull(candidature, applicationContext.getMessage("assert.notNull", null, UI.getCurrent().getLocale()));
/* Verrou */
if (!lockCandidatController.getLockOrNotifyCandidature(candidature)) {
return;
}
final String user = userController.getCurrentNoDossierCptMinOrLogin();
final String cod = ConstanteUtils.TYPE_FICHIER_PJ_CAND + "_" + candidature.getCandidat().getCompteMinima().getNumDossierOpiCptMin() + "_" + candidature.getIdCand() + "_" + pieceJustif.getPieceJustif().getIdPj();
final UploadWindow uw = new UploadWindow(cod, ConstanteUtils.TYPE_FICHIER_CANDIDAT, candidature, pieceJustif.getPJCommune(), false);
uw.addUploadWindowListener(file -> {
if (file == null) {
return;
}
/* Verrou */
if (!lockCandidatController.getLockOrNotifyCandidature(candidature)) {
return;
}
final PjCandPK pk = new PjCandPK(pieceJustif.getPieceJustif().getIdPj(), pieceJustif.getIdCandidature());
PjCand pjCand = pjCandRepository.findOne(pk);
if (pjCand == null) {
pjCand = new PjCand(pk, user, candidature, pieceJustif.getPieceJustif());
}
final Fichier fichier = fileController.createFile(file, user, ConstanteUtils.TYPE_FICHIER_CANDIDAT);
if (isPjModified(pieceJustif, candidature, true, listener)) {
FichierFiabilisation fichierFiabilisation = new FichierFiabilisation(fichier);
fichierFiabilisation = fichierFiabilisationRepository.save(fichierFiabilisation);
try {
fileController.deleteFichier(fichier);
fichierFiabilisationRepository.delete(fichierFiabilisation);
} catch (final FileException e) {
}
uw.close();
return;
}
pjCand.setLibFilePjCand(fichier.getNomFichier());
pjCand.setUserModPjCand(user);
pjCand.setFichier(fichier);
final TypeStatutPiece statutTr = tableRefController.getTypeStatutPieceTransmis();
pjCand.setTypeStatutPiece(statutTr);
pjCandRepository.save(pjCand);
// obligé de recharger l'objet car le datetime est arrondi :(
final PjCand pjCandSave = pjCandRepository.findOne(pk);
pieceJustif.setFilePj(fichier);
pieceJustif.setCodStatut(statutTr.getCodTypStatutPiece());
pieceJustif.setLibStatut(i18nController.getI18nTraduction(statutTr.getI18nLibTypStatutPiece()));
pieceJustif.setDatModification(pjCandSave.getDatModPjCand());
candidature.setUserModCand(user);
candidature.updatePjCand(pjCandSave);
candidature.setDatModCand(LocalDateTime.now());
final Candidature candidatureSave = candidatureRepository.save(candidature);
listener.pjModified(pieceJustif, candidatureSave);
Notification.show(applicationContext.getMessage("window.upload.success", new Object[] { file.getFileName() }, UI.getCurrent().getLocale()), Type.TRAY_NOTIFICATION);
uw.close();
});
UI.getCurrent().addWindow(uw);
}
use of fr.univlorraine.ecandidat.entities.ecandidat.PjCandPK in project esup-ecandidat by EsupPortail.
the class CandidaturePieceController method setIsConcernedPieceJustificative.
/**
* Change le statut est concerne d'une pj
* @param pieceJustif
* @param isConcerned
* @param candidature
* @param listener
*/
public void setIsConcernedPieceJustificative(final PjPresentation pieceJustif, final Boolean isConcerned, final Candidature candidature, final CandidatureListener listener) {
Assert.notNull(candidature, applicationContext.getMessage("assert.notNull", null, UI.getCurrent().getLocale()));
/* Verrou */
if (!lockCandidatController.getLockOrNotifyCandidature(candidature)) {
return;
}
final String user = userController.getCurrentUserLogin();
if (isConcerned) {
final ConfirmWindow confirmWindow = new ConfirmWindow(applicationContext.getMessage("pj.window.concerne", new Object[] { pieceJustif.getLibPj() }, UI.getCurrent().getLocale()), applicationContext.getMessage("pj.window.conditionnel.title", null, UI.getCurrent().getLocale()));
confirmWindow.addBtnOuiListener(event -> {
/* Verrou */
if (!lockCandidatController.getLockOrNotifyCandidature(candidature)) {
return;
}
if (isPjModified(pieceJustif, candidature, true, listener)) {
return;
}
PjCand pjCand = null;
if (pieceJustif.getPJCommune()) {
final List<PjCand> listePjCand = pjCandRepository.findByIdIdPjAndCandidatureCandidatIdCandidatAndCandidatureFormationTemDematFormOrderByDatModPjCandDesc(pieceJustif.getPieceJustif().getIdPj(), candidature.getCandidat().getIdCandidat(), true);
if (listePjCand != null && listePjCand.size() > 0) {
// on cherche d'abord en priorité si la pièce est présente sur la candidature
final Optional<PjCand> pjCandOpt = listePjCand.stream().filter(e -> e.getCandidature().getIdCand().equals(pieceJustif.getIdCandidature())).findFirst();
if (pjCandOpt.isPresent()) {
pjCand = pjCandOpt.get();
} else {
pjCand = listePjCand.get(0);
}
}
} else {
final PjCandPK pk = new PjCandPK(pieceJustif.getPieceJustif().getIdPj(), candidature.getIdCand());
pjCand = pjCandRepository.findOne(pk);
}
if (pjCand != null && pjCand.getFichier() == null) {
pjCandRepository.delete(pjCand);
candidature.setUserModCand(user);
candidature.setDatModCand(LocalDateTime.now());
candidature.removePjCand(pjCand);
final TypeStatutPiece statutAtt = tableRefController.getTypeStatutPieceAttente();
pieceJustif.setCodStatut(statutAtt.getCodTypStatutPiece());
pieceJustif.setLibStatut(i18nController.getI18nTraduction(statutAtt.getI18nLibTypStatutPiece()));
pieceJustif.setDatModification(null);
final Candidature candidatureSave = candidatureRepository.save(candidature);
listener.pjModified(pieceJustif, candidatureSave);
}
});
UI.getCurrent().addWindow(confirmWindow);
} else {
final ConfirmWindow confirmWindow = new ConfirmWindow(applicationContext.getMessage("pj.window.nonConcerne", new Object[] { pieceJustif.getLibPj() }, UI.getCurrent().getLocale()), applicationContext.getMessage("pj.window.conditionnel.title", null, UI.getCurrent().getLocale()));
confirmWindow.addBtnOuiListener(event -> {
/* Verrou */
if (!lockCandidatController.getLockOrNotifyCandidature(candidature)) {
return;
}
if (isPjModified(pieceJustif, candidature, true, listener)) {
return;
}
PjCand pjCand = null;
final PjCandPK pk = new PjCandPK(pieceJustif.getPieceJustif().getIdPj(), candidature.getIdCand());
if (pieceJustif.getPJCommune()) {
final List<PjCand> listePjCand = pjCandRepository.findByIdIdPjAndCandidatureCandidatIdCandidatAndCandidatureFormationTemDematFormOrderByDatModPjCandDesc(pieceJustif.getPieceJustif().getIdPj(), candidature.getCandidat().getIdCandidat(), true);
if (listePjCand != null && listePjCand.size() > 0) {
// on cherche d'abord en priorité si la pièce est présente sur la candidature
final Optional<PjCand> pjCandOpt = listePjCand.stream().filter(e -> e.getCandidature().getIdCand().equals(pieceJustif.getIdCandidature())).findFirst();
if (pjCandOpt.isPresent()) {
pjCand = pjCandOpt.get();
} else {
pjCand = listePjCand.get(0);
}
}
} else {
pjCand = pjCandRepository.findOne(pk);
}
if (pjCand == null) {
pjCand = new PjCand(pk, user, candidature, pieceJustif.getPieceJustif());
pjCand.setLibFilePjCand(null);
pjCand.setUserModPjCand(user);
pjCand.setFichier(null);
final TypeStatutPiece statutNotConcern = tableRefController.getTypeStatutPieceNonConcerne();
pieceJustif.setCodStatut(statutNotConcern.getCodTypStatutPiece());
pieceJustif.setLibStatut(i18nController.getI18nTraduction(statutNotConcern.getI18nLibTypStatutPiece()));
pjCand.setTypeStatutPiece(statutNotConcern);
pjCand = pjCandRepository.saveAndFlush(pjCand);
// obligé de recharger l'objet car le datetime est arrondi :(
final PjCand pjCandSave = pjCandRepository.findOne(pk);
pieceJustif.setFilePj(null);
pieceJustif.setCodStatut(statutNotConcern.getCodTypStatutPiece());
pieceJustif.setLibStatut(i18nController.getI18nTraduction(statutNotConcern.getI18nLibTypStatutPiece()));
pieceJustif.setIdCandidature(candidature.getIdCand());
pieceJustif.setDatModification(pjCandSave.getDatModPjCand());
candidature.setUserModCand(user);
candidature.updatePjCand(pjCandSave);
candidature.setDatModCand(LocalDateTime.now());
final Candidature candidatureSave = candidatureRepository.save(candidature);
listener.pjModified(pieceJustif, candidatureSave);
}
});
UI.getCurrent().addWindow(confirmWindow);
}
}
use of fr.univlorraine.ecandidat.entities.ecandidat.PjCandPK in project esup-ecandidat by EsupPortail.
the class CandidaturePieceController method checkPJAdmin.
/**
* @param pj
*/
public void checkPJAdmin(final PjPresentation pj, final Candidature candidature, final CandidatureListener listener) {
/* Verrou */
if (!lockCandidatController.getLockOrNotifyCandidature(candidature)) {
return;
}
if (!userController.isAdmin()) {
return;
}
final PjCandPK pk = new PjCandPK(pj.getPieceJustif().getIdPj(), pj.getIdCandidature());
final PjCand pjCand = pjCandRepository.findOne(pk);
if (pjCand == null) {
Notification.show(applicationContext.getMessage("pj.admin.pjnotexist", null, UI.getCurrent().getLocale()), Type.WARNING_MESSAGE);
return;
}
final Fichier fichier = pjCand.getFichier();
final String user = userController.getCurrentNoDossierCptMinOrLogin();
if (fichier != null) {
try {
if (!fileController.testDemat(false)) {
return;
}
final Boolean exist = fileController.existFile(fichier);
if (!exist) {
final ConfirmWindow confirmWindow = new ConfirmWindow(applicationContext.getMessage("pj.admin.window.filenotexist", null, UI.getCurrent().getLocale()), applicationContext.getMessage("pj.admin.window.title", null, UI.getCurrent().getLocale()));
confirmWindow.addBtnOuiListener(event -> {
pjCandRepository.delete(pjCand);
fichierRepository.delete(fichier);
final TypeStatutPiece statutAtt = tableRefController.getTypeStatutPieceAttente();
pj.setFilePj(null);
pj.setCodStatut(statutAtt.getCodTypStatutPiece());
pj.setLibStatut(i18nController.getI18nTraduction(statutAtt.getI18nLibTypStatutPiece()));
pj.setCommentaire(null);
pj.setDatModification(null);
candidature.setUserModCand(user);
candidature.setDatModCand(LocalDateTime.now());
candidature.removePjCand(pjCand);
final Candidature candidatureSave = candidatureRepository.save(candidature);
listener.pjModified(pj, candidatureSave);
Notification.show(applicationContext.getMessage("pj.admin.success", null, UI.getCurrent().getLocale()), Type.TRAY_NOTIFICATION);
});
UI.getCurrent().addWindow(confirmWindow);
} else {
Notification.show(applicationContext.getMessage("pj.admin.error.fileexist", null, UI.getCurrent().getLocale()), Type.WARNING_MESSAGE);
}
} catch (final FileException e) {
return;
}
}
}
use of fr.univlorraine.ecandidat.entities.ecandidat.PjCandPK in project esup-ecandidat by EsupPortail.
the class CandidaturePieceController method isPjModified.
/**
* Methode inutilisée, controle dans le batch
* @param pieceJustif
* @param candidature
* @return true si une pièce existe alors qu'on veut l'ajouter
*/
/* public Boolean controlPjAdd(PjPresentation pieceJustif, Candidature
* candidature, CandidatureListener listener){ if
* (!candidature.getFormation().getTemDematForm()){ return false; } if
* (pieceJustif.getPjCandidatFromApogee() != null){ return false; } Boolean
* needToReload = false; //Le fichier de la pièce devrai être a null, sinon ca
* veut dire que le listener d'ajout de pièce n'a pas fonctionné if
* (pieceJustif.getFilePj()!=null){ logger.
* debug("Ajout PJ en erreur, rechargement demandé, la pièce devrait être null.."
* ); needToReload = true; }else if (pieceJustif.getPJCommune()){ //Si commune,
* on recherche la pièce dans toutes candidatures pour trouver si un fichier a
* été déposé List<PjCand> listePjCand = pjCandRepository.
* findByIdIdPjAndCandidatureCandidatIdCandidatAndCandidatureFormationTemDematFormOrderByDatModPjCandDesc
* (pieceJustif.getPieceJustif().getIdPj(),
* candidature.getCandidat().getIdCandidat(), true); if (listePjCand!=null &&
* listePjCand.size()>0 &&
* listePjCand.stream().filter(e->e.getFichier()!=null).count()>0){
* logger.debug("Ajout PJ en erreur, piece commune nok"); needToReload = true; }
* }else{ //Sinon, on recherche dans la candidature PjCandPK pk = new
* PjCandPK(pieceJustif.getPieceJustif().getIdPj(),candidature.getIdCand());
* PjCand pjCand = pjCandRepository.findOne(pk);
* if (pjCand!=null && pjCand.getFichier()!=null){
* logger.debug("Ajout PJ en erreur, piece non commune nok"); needToReload =
* true; } } if (needToReload){
* logger.debug("Ajout PJ en erreur, rechargement demandé");
* Notification.show(applicationContext.getMessage("pj.add.error", null,
* UI.getCurrent().getLocale()), Type.WARNING_MESSAGE); Candidature
* candidatureLoad = candidatureRepository.findOne(candidature.getIdCand());
* listener.reloadAllPiece(getPjCandidature(candidatureLoad), candidatureLoad);
* return true; } return false; } */
/**
* Methode qui vérifie si la PJ a été modifiée par qqun d'autre obligatoire pour
* les PJ commune qui peuvent etre modifiées dans une autre candidature on se
* base sur la date de modification
* @param pieceJustif
* @return true si la PJ a été modifiée
*/
public Boolean isPjModified(final PjPresentation pieceJustif, final Candidature candidature, final Boolean showNotif, final CandidatureListener listener) {
if (!candidature.getFormation().getTemDematForm()) {
return false;
}
if (pieceJustif.getPjCandidatFromApogee() != null) {
logger.debug("Pas de verification pièce pour les PJ d'Apogée : " + pieceJustif);
return false;
}
logger.debug("Verification pièce : " + pieceJustif);
Boolean needToReload = false;
if (pieceJustif.getPJCommune()) {
final List<PjCand> listePjCand = pjCandRepository.findByIdIdPjAndCandidatureCandidatIdCandidatAndCandidatureFormationTemDematFormOrderByDatModPjCandDesc(pieceJustif.getPieceJustif().getIdPj(), candidature.getCandidat().getIdCandidat(), true);
PjCand pjCandFind = null;
if (listePjCand != null && listePjCand.size() > 0) {
// on cherche d'abord en priorité si la pièce est présente sur la candidature
final Optional<PjCand> pjCandOpt = listePjCand.stream().filter(e -> e.getCandidature().getIdCand().equals(pieceJustif.getIdCandidature())).findFirst();
if (pjCandOpt.isPresent()) {
pjCandFind = pjCandOpt.get();
} else {
pjCandFind = listePjCand.get(0);
}
}
logger.debug("Pièces trouvées : " + listePjCand.size() + " : " + pjCandFind);
// nouvelle pièce, si il en existe une, on recharge
if (pieceJustif.getDatModification() == null) {
// la piece etait vide et on en a ajouté une
if (pjCandFind != null) {
logger.debug("Cas no1, pièces nouvelle et pièce trouvée : " + pieceJustif.getDatModification() + " - " + pjCandFind);
needToReload = true;
}
} else /* ce n'est pas une nouvelle pièce, on vérifie : - qu'elle n'a pas été supprimée
* en route - que sa date de modif est différente */
{
// piece supprimée
if (pjCandFind == null) {
logger.debug("Cas no2, pièces vide : " + pjCandFind);
needToReload = true;
} else // !pjCandFind.getDatModPjCand().equals(pieceJustif.getDatModification())){
if (!pjCandFind.getDatModPjCand().equals(pieceJustif.getDatModification())) {
needToReload = true;
logger.debug("Cas no3, dates différente : " + pieceJustif.getDatModification() + " - " + pjCandFind.getDatModPjCand() + " - test = " + pjCandFind.getDatModPjCand().equals(pieceJustif.getDatModification()));
}
}
} else {
// si pièce non commune, présente dans la fenetre mais absente en base
if (pieceJustif.getDatModification() != null) {
final PjCandPK pk = new PjCandPK(pieceJustif.getPieceJustif().getIdPj(), candidature.getIdCand());
final PjCand pjCand = pjCandRepository.findOne(pk);
if (pjCand == null) {
logger.debug("Cas no4, pièce non commune mais supprimée");
needToReload = true;
}
}
}
/* Si on est dans un des deux cas, on recharge la liste de pièces */
if (needToReload) {
logger.debug("Rechargement demandé");
if (showNotif) {
Notification.show(applicationContext.getMessage("pj.modified", null, UI.getCurrent().getLocale()), Type.WARNING_MESSAGE);
}
final Candidature candidatureLoad = candidatureRepository.findOne(candidature.getIdCand());
listener.reloadAllPiece(getPjCandidature(candidatureLoad), candidatureLoad);
return true;
}
return false;
}
Aggregations