Package dao

Examples of dao.ProiectDao


        getContext().getRequest().getSession(true).setAttribute("proiecteGeologSef", getProiecteGeologSef());
        return new ForwardResolution("/WEB-INF/jsp/proiecteGeologSef.jsp");
    }

    public Resolution submit() {
        IProiectDao proiectDao = new ProiectDao();
        int idBeneficiar = ((Beneficiar) getContext().getRequest().getSession().getAttribute("beneficiarProiect")).getIdBeneficiar();
        int idGeolog = getIdGeologLogat();
        Proiect proiect = new Proiect(getNumeProiect(), idGeolog, idBeneficiar);
        proiectDao.saveOrUpdate(proiect);
        Proiect p = proiectDao.getUltimulProiectAdaugat(idGeolog);
        getContext().getRequest().getSession(true).setAttribute("proiectInLucru", proiectDao.getUltimulProiectAdaugat(idGeolog));
        return new ForwardResolution("/WEB-INF/jsp/repartizareAmplasamente.jsp");
    }
View Full Code Here


        }
        return new ForwardResolution("/WEB-INF/jsp/repartizareAmplasamente.jsp");
    }
public Resolution stergeProiect(){
     int idProiect = ((Proiect) getContext().getRequest().getSession().getAttribute("proiectInLucru")).getIdProiect();
     IProiectDao proiectDao=new ProiectDao();
     IAmplasamentDao amplasamentDao=new AmplasamentDao();
     IGeologBeneficiarDao geologBeneficiarDao=new GeologBeneficiarDao();
     int idGeologSef=proiectDao.getProiectByID(idProiect).getIdGeolog();
     int idBeneficiar=proiectDao.getProiectByID(idProiect).getIdBeneficiar();
     List<Amplasament> amplasamente=amplasamentDao.getAmplasamenteByProiectId(idProiect);
     Iterator it=amplasamente.iterator();
     while(it.hasNext()){
         Amplasament amplasament=(Amplasament)it.next();
         geologBeneficiarDao.delete(amplasament.getIdGeolog(), idBeneficiar);
         amplasamentDao.delete(amplasament.getIdAmplasament());
     }
     geologBeneficiarDao.delete(idGeologSef, idBeneficiar);
     proiectDao.delete(idProiect);
     return new ForwardResolution("/WEB-INF/jsp/geologLogat.jsp");
}
View Full Code Here

        this.radioNeselectat = radioNeselectat;
    }

    public List<ProiecteGeologSef> getProiecteGeologSef() {
        IBeneficiarDao beneficiarDao = new BeneficiarDao();
        IProiectDao proiectDao = new ProiectDao();
        IAmplasamentDao amplasamentDao = new AmplasamentDao();
        IGeologDao geologDao = new GeologDao();
        Proiect p;
        ProiecteGeologSef proiect;
        RepartizareProiect repartizareProiect;
        List<Amplasament> amplasamente;
        List<Geolog> geologi;
        List<String> orase;
        List<String> locatii;
        Amplasament amplasament;
        Geolog geolog;
        String oras, locatie;
        List<ProiecteGeologSef> proiecteGeologSef = new ArrayList<ProiecteGeologSef>();

        List<Proiect> proiecte = proiectDao.getProiecteByGeologId(getIdGeologLogat());
        Iterator it = proiecte.iterator();
        while (it.hasNext()) {
            p = (Proiect) it.next();
            proiect = new ProiecteGeologSef();
            proiect.setNumeProiect(p.getNumeProiect()); //nume proiect
View Full Code Here

    public List<Amplasament> getAmplasamente() {
        int idB = getIdBeneficiarCurent();
        List<Amplasament> amplasamente = null;
        IAmplasamentDao amplasamentDao = new AmplasamentDao();
        IProiectDao proiectDao = new ProiectDao();
        String vizilibilitate = getContext().getRequest().getSession().getAttribute("vizualizareForaj").toString();
        if (vizilibilitate.equals("proiectePrivate")) {
            amplasamente = amplasamentDao.getAmplasamenteByBeneficiarIdAndGeologId(idB, getIdGeologLogat());
            List<Proiect> proiecte = proiectDao.getProiecteByGeologIdAndBeneficiarId(getIdGeologLogat(), idB);
            Iterator it = proiecte.iterator();
            int idProiect;
            while (it.hasNext()) {
                idProiect = ((Proiect) it.next()).getIdProiect();
                List<Amplasament> amplasamenteDinProiecte = amplasamentDao.getAmplasamenteByProiectId(idProiect);
View Full Code Here

TOP

Related Classes of dao.ProiectDao

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.