Package bo

Examples of bo.Proiect


    Session session = null;

    public Proiect getProiectByID(int proiectID) {

        Proiect proiect = null;
        try {
            this.session = (Session) HibernateUtil.getSessionFactory().getCurrentSession();
            org.hibernate.Transaction tx = session.beginTransaction();
            proiect = (Proiect) session.get(Proiect.class, proiectID);
        } catch (Exception e) {
View Full Code Here


        return proiecte;
    }

    public Proiect getUltimulProiectAdaugat(int geologID) {
        List<Proiect> proiecte = null;
        Proiect proiect = null;
        try {
            this.session = (Session) HibernateUtil.getSessionFactory().getCurrentSession();
            org.hibernate.Transaction tx = session.beginTransaction();
            Query q = session.createQuery("from Proiect as proiect where proiect.idGeolog = '" + geologID + "'");
            proiecte = (List<Proiect>) q.list();
View Full Code Here

        }
    }

    public void delete(int idProiect) {
        List<Proiect> list = null;
        Proiect p = null;
        try {
            this.session = (Session) HibernateUtil.getSessionFactory().getCurrentSession();
            org.hibernate.Transaction tx = session.beginTransaction();
            Query q = session.createQuery("from Proiect as lang where lang.idProiect='" + idProiect + "' ");
            list = (List<Proiect>) q.list();
View Full Code Here

    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

    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
            //nume beneficiar
            proiect.setNumeBeneficiar(beneficiarDao.getBeneficiarByID(p.getIdBeneficiar()).getNumeBeneficiar());
            // determinam amplasamentele pt un proiect
            amplasamente = amplasamentDao.getAmplasamenteByProiectId(p.getIdProiect());
            repartizareProiect = new RepartizareProiect();
            geologi = new ArrayList<Geolog>();
            orase = new ArrayList<String>();
            locatii = new ArrayList<String>();
View Full Code Here

TOP

Related Classes of bo.Proiect

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.