Package com.structis.fichesst.server.bean.domain

Examples of com.structis.fichesst.server.bean.domain.Lot


//      societeDao.save(societe);
//    }
//    else {
//      societe.setId(results.get(0).getId());
//    }
    Lot lot = ficheSt.getLot();
//    lot.setChantier(societe.getChantier());
    String lotName = lot.getName();
    List<Lot> results2 = lotDao.findByProperty(Lot.PROP_NAME, Arrays.asList(lotName));
    if( AppUtil.isNullOrEmpty(results2) ) {
      lotDao.save(lot);
    }
    else {
      lot.setId(results2.get(0).getId());
    }

    List<CautionFournie> cautionFournies = ficheSt.getCautionFournies();
    if( cautionFournies != null ) {
      for( CautionFournie cautionFournie : cautionFournies ) {
View Full Code Here

TOP

Related Classes of com.structis.fichesst.server.bean.domain.Lot

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.