}
SimpleDateFormat formatDate = new SimpleDateFormat("dd/MM/YYYY");
for (Catalog cInd : c) {
CatalogBean v = new CatalogBean();
v.setData(formatDate.format(cInd.getDataNotei()));
v.setC(cInd);
v.setSelected(false);
catalog.add(v);
}
em.getTransaction().commit();