use of com.tomasio.projects.trainning.dto.AcaoDTO in project trainning by fernandotomasio.
the class MainPlanejamentoController method listItensAtaAjax.
@RequestMapping("/itens_ata_ajax")
@ResponseBody
public List listItensAtaAjax(Model model, WebRequest request) {
List result = new ArrayList<>();
String itemPlanejamentoId = request.getParameter("itemPlanejamentoId");
ItemAtaDTO[] itensAta = ataService.findAllItensAtasByItemPlanejamentoId(Long.parseLong(itemPlanejamentoId));
for (ItemAtaDTO itemAtaDTO : itensAta) {
Map<String, Object> item = new HashMap<>();
item.put("id", itemAtaDTO.getId());
item.put("texto", itemAtaDTO.getTexto());
String tipo = "";
String tipoSigla = "";
String tipoCSS = "";
if (itemAtaDTO instanceof AcaoDTO) {
AcaoDTO acao = (AcaoDTO) itemAtaDTO;
tipo = "Ação";
tipoCSS = "label-purple";
tipoSigla = acao.getTipoSigla();
item.put("prazo", acao.getPrazo());
item.put("responsavel", acao.getResponsavel());
}
if (itemAtaDTO instanceof DecisaoDTO) {
DecisaoDTO decisao = (DecisaoDTO) itemAtaDTO;
tipo = "Decisão";
tipoSigla = decisao.getTipoSigla();
tipoCSS = "label-success";
item.put("prazo", "-");
item.put("responsavel", decisao.getResponsavel());
}
if (itemAtaDTO instanceof ComentarioDTO) {
ComentarioDTO comentario = (ComentarioDTO) itemAtaDTO;
tipo = "Comentário";
tipoSigla = comentario.getTipoSigla();
tipoCSS = "label-warning";
item.put("prazo", "-");
item.put("responsavel", "-");
}
item.put("dataCriacao", itemAtaDTO.getDataCriacaoFormatted());
item.put("tipo", tipo);
item.put("tipoSigla", tipoSigla);
item.put("tipoCSS", tipoCSS);
item.put("user", itemAtaDTO.getUser());
result.add(item);
}
return result;
}
use of com.tomasio.projects.trainning.dto.AcaoDTO in project trainning by fernandotomasio.
the class MainPlanejamentoController method saveItemAta.
@RequestMapping("/save_itens_ata_ajax")
@ResponseBody
public boolean saveItemAta(Model model, WebRequest request) {
String itemAtaId = request.getParameter("itemAtaId");
String itemPlanejamentoId = request.getParameter("itemPlanejamentoId");
String texto = request.getParameter("texto");
String responsavel = request.getParameter("responsavel");
String prazo = request.getParameter("prazo");
String tipo = request.getParameter("tipo");
String username = request.getParameter("username");
ItemAtaDTO itemAta;
if (tipo.equals("A")) {
itemAta = new AcaoDTO();
((AcaoDTO) itemAta).setResponsavel(responsavel);
((AcaoDTO) itemAta).setPrazo(prazo);
} else if (tipo.equals("D")) {
itemAta = new DecisaoDTO();
((DecisaoDTO) itemAta).setResponsavel(responsavel);
} else if (tipo.equals("C")) {
itemAta = new ComentarioDTO();
} else {
return false;
}
itemAta.setItemPlanejamento(planningService.findItemPlanejamento(Long.parseLong(itemPlanejamentoId)));
itemAta.setTexto(texto);
itemAta.setDataCriacao(new Date());
itemAta.setUser(username);
if (itemAtaId != null && !itemAtaId.equals("")) {
try {
itemAta.setId(Long.parseLong(itemAtaId));
ataService.updateItemAta(itemAta);
} catch (CoreException e) {
return false;
}
} else {
try {
ataService.createItemAta(itemAta);
} catch (CoreException e) {
return false;
}
}
return true;
}
use of com.tomasio.projects.trainning.dto.AcaoDTO in project trainning by fernandotomasio.
the class AtaServiceSimpleImpl method createItemAta.
@Override
@Transactional
public Long createItemAta(ItemAtaDTO itemAta) {
ItemAtaDAO dao = factory.getItemAtaDAO();
ItemAta _itemAta = null;
if (itemAta instanceof AcaoDTO) {
_itemAta = new Acao((AcaoDTO) itemAta);
}
if (itemAta instanceof DecisaoDTO) {
_itemAta = new Decisao((DecisaoDTO) itemAta);
}
if (itemAta instanceof ComentarioDTO) {
_itemAta = new Comentario((ComentarioDTO) itemAta);
}
Long id = null;
try {
id = dao.create(_itemAta);
} catch (DAOException ex) {
throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
}
return id;
}
use of com.tomasio.projects.trainning.dto.AcaoDTO in project trainning by fernandotomasio.
the class HibernateItemAtaDAO method update.
@Override
public void update(ItemAtaDTO itemAta) throws DAOException {
Session session = sessionFactory.getCurrentSession();
try {
ItemAta _itemAta;
if (itemAta instanceof AcaoDTO) {
_itemAta = new Acao((AcaoDTO) itemAta);
} else if (itemAta instanceof DecisaoDTO) {
_itemAta = new Decisao((DecisaoDTO) itemAta);
} else if (itemAta instanceof ComentarioDTO) {
_itemAta = new Comentario((ComentarioDTO) itemAta);
} else {
_itemAta = null;
}
session.update(_itemAta);
} catch (HibernateException e) {
Logger.getLogger(HibernateItemAtaDAO.class.getName()).log(Level.SEVERE, null, e);
throw new DAOException(MessageHelper.getMessage("itens_atas.update.error"));
}
}
use of com.tomasio.projects.trainning.dto.AcaoDTO in project trainning by fernandotomasio.
the class PLN004ODF method makeReport.
@Override
public void makeReport() {
TrainningService trainningService = (TrainningService) services.get("trainningService");
PlanningService planningService = (PlanningService) services.get("planningService");
AtaService ataService = (AtaService) services.get("ataService");
try {
Long areaId = (Long) params.get("areaId");
Long planejamentoId = (Long) params.get("planejamentoId");
PlanejamentoDTO planejamento = planningService.findPlanejamento(planejamentoId);
AreaDTO area = trainningService.findArea(areaId);
ItemPlanejamentoDTO[] itensPlanejamento = planningService.findAllItensPlanejamentoByAreaId(areaId, planejamentoId);
odt = OdfTextDocument.newTextDocument();
odt.newParagraph("ATA DA REUNIÃO DE PLANEJAMENTO " + planejamento.getExercicioFormatted() + " DA ÁREA " + area.getNome() + " (" + area.getSigla() + ")");
odt.newParagraph("");
List<ItemAtaDTO> listItemAta = new ArrayList<ItemAtaDTO>();
for (ItemPlanejamentoDTO itemPlanejamento : itensPlanejamento) {
ItemAtaDTO[] itensAta = ataService.findAllItensAtasByItemPlanejamentoId(itemPlanejamento.getId());
if (itensAta != null && itensAta.length > 0) {
listItemAta.addAll(Arrays.asList(itensAta));
}
}
OdfTable ataTable = OdfTable.newTable(odt, listItemAta.size() + 1, 6);
OdfTableCell numeroHeader = ataTable.getCellByPosition(0, 0);
numeroHeader.setStringValue("#");
numeroHeader.setHorizontalAlignment("left");
OdfTableCell tipoHeader = ataTable.getCellByPosition(1, 0);
tipoHeader.setStringValue("Tipo");
tipoHeader.setHorizontalAlignment("left");
OdfTableCell cursoHeader = ataTable.getCellByPosition(2, 0);
cursoHeader.setStringValue("Curso");
cursoHeader.setHorizontalAlignment("center");
OdfTableCell descricaoHeader = ataTable.getCellByPosition(3, 0);
descricaoHeader.setStringValue("Descrição");
descricaoHeader.setHorizontalAlignment("left");
OdfTableCell reponsavelHeader = ataTable.getCellByPosition(4, 0);
reponsavelHeader.setStringValue("Responsável");
reponsavelHeader.setHorizontalAlignment("center");
OdfTableCell prazoHeader = ataTable.getCellByPosition(5, 0);
prazoHeader.setStringValue("Prazo");
prazoHeader.setHorizontalAlignment("center");
for (int i = 0; i < listItemAta.size(); i++) {
ItemAtaDTO itemAtaDTO = (ItemAtaDTO) listItemAta.get(i);
String tipo = "";
String responsavel = "";
String prazo = "";
if (itemAtaDTO instanceof AcaoDTO) {
tipo = "A";
responsavel = ((AcaoDTO) itemAtaDTO).getResponsavel();
prazo = ((AcaoDTO) itemAtaDTO).getPrazo();
} else if (itemAtaDTO instanceof DecisaoDTO) {
tipo = "D";
responsavel = ((DecisaoDTO) itemAtaDTO).getResponsavel();
} else {
tipo = "C";
}
OdfTableCell numeroCell = ataTable.getCellByPosition(0, i + 1);
numeroCell.setStringValue(Integer.toString(i + 1));
OdfTableCell tipoCell = ataTable.getCellByPosition(1, i + 1);
tipoCell.setStringValue(tipo);
OdfTableCell cursoCell = ataTable.getCellByPosition(2, i + 1);
cursoCell.setStringValue(itemAtaDTO.getItemPlanejamento().getCurso().getCodigo());
OdfTableCell descricaoCell = ataTable.getCellByPosition(3, i + 1);
descricaoCell.setStringValue(itemAtaDTO.getTexto());
OdfTableCell responsavelCell = ataTable.getCellByPosition(4, i + 1);
responsavelCell.setStringValue(responsavel);
OdfTableCell prazoCell = ataTable.getCellByPosition(5, i + 1);
prazoCell.setStringValue(prazo);
}
odt.newParagraph("");
odt.newParagraph("DISTRIBUIÇAO DE VAGAS: ");
for (ItemPlanejamentoDTO itemPlanejamento : itensPlanejamento) {
odt.newParagraph("");
odt.newParagraph(itemPlanejamento.getCurso().getCodigo() + " - " + itemPlanejamento.getCurso().getDescricao());
odt.newParagraph("");
StripItemPlanejamentoDTO[] strips = planningService.findAllStripItemPlanejamento(itemPlanejamento.getId());
itemPlanejamento = planningService.findItemPlanejamento(itemPlanejamento.getId());
ResponsavelAreaDTO[] responsaveis = planningService.findAllResponsaveisAnalise(itemPlanejamento.getPlanejamento().getId(), itemPlanejamento.getCurso().getArea().getId());
OdfTable distribuicaoTable = OdfTable.newTable(odt, strips.length + 1, 7 + responsaveis.length);
int pos_responsavel = 7;
OdfTableCell organizacaoHeader = distribuicaoTable.getCellByPosition(0, 0);
organizacaoHeader.setStringValue("OM");
organizacaoHeader.setHorizontalAlignment("left");
OdfTableCell minimoHeader = distribuicaoTable.getCellByPosition(1, 0);
minimoHeader.setStringValue("Mínimo");
minimoHeader.setHorizontalAlignment("center");
OdfTableCell idealHeader = distribuicaoTable.getCellByPosition(2, 0);
idealHeader.setStringValue("Ideal");
idealHeader.setHorizontalAlignment("center");
OdfTableCell existenteHeader = distribuicaoTable.getCellByPosition(3, 0);
existenteHeader.setStringValue("Existente");
existenteHeader.setHorizontalAlignment("center");
OdfTableCell gapMinimoHeader = distribuicaoTable.getCellByPosition(4, 0);
gapMinimoHeader.setStringValue("Gap Min");
gapMinimoHeader.setHorizontalAlignment("center");
OdfTableCell gapIdealHeader = distribuicaoTable.getCellByPosition(5, 0);
gapIdealHeader.setStringValue("Gap Ideal");
gapIdealHeader.setHorizontalAlignment("center");
OdfTableCell solicitadoHeader = distribuicaoTable.getCellByPosition(6, 0);
solicitadoHeader.setStringValue("Sol.");
solicitadoHeader.setHorizontalAlignment("center");
for (ResponsavelAreaDTO responsavel : responsaveis) {
System.out.println(responsavel.getOrganizacao().getSigla());
OdfTableCell responsavelHeader = distribuicaoTable.getCellByPosition(pos_responsavel, 0);
responsavelHeader.setStringValue(responsavel.getOrganizacao().getSigla());
responsavelHeader.setHorizontalAlignment("center");
pos_responsavel++;
}
int linha = 1;
for (StripItemPlanejamentoDTO stripItem : strips) {
OdfTableCell om = distribuicaoTable.getCellByPosition(0, linha);
om.setStringValue(stripItem.getOrganizacao().getSigla());
om.setHorizontalAlignment("left");
OdfTableCell minimo = distribuicaoTable.getCellByPosition(1, linha);
minimo.setStringValue(Integer.toString(stripItem.getIndicadorMinimo()));
minimo.setHorizontalAlignment("center");
OdfTableCell ideal = distribuicaoTable.getCellByPosition(2, linha);
ideal.setStringValue(Integer.toString(stripItem.getIndicadorIdeal()));
ideal.setHorizontalAlignment("center");
OdfTableCell existente = distribuicaoTable.getCellByPosition(3, linha);
existente.setStringValue(Integer.toString(stripItem.getIndicadorExistente()));
existente.setHorizontalAlignment("center");
OdfTableCell gapMinimo = distribuicaoTable.getCellByPosition(4, linha);
gapMinimo.setStringValue(Integer.toString(Math.abs(stripItem.getGapMinimo())));
gapMinimo.setHorizontalAlignment("center");
OdfTableCell gapIdeal = distribuicaoTable.getCellByPosition(5, linha);
gapIdeal.setStringValue(Integer.toString(Math.abs(stripItem.getGapIdeal())));
gapIdeal.setHorizontalAlignment("center");
OdfTableCell solicitado = distribuicaoTable.getCellByPosition(6, linha);
if (stripItem.getTreinamentoSolicitado() != null) {
solicitado.setStringValue(Integer.toString(stripItem.getTreinamentoSolicitado().getQuantidade()));
} else {
solicitado.setStringValue("-");
}
solicitado.setHorizontalAlignment("center");
Map analisesMap = stripItem.getAnalises();
pos_responsavel = 7;
for (ResponsavelAreaDTO responsavel : responsaveis) {
String quantidade = "-";
if (analisesMap != null) {
AnaliseDTO analise = (AnaliseDTO) analisesMap.get(responsavel.getOrganizacao().getId().toString());
if (analise != null) {
quantidade = String.valueOf(analise.getQuantidade());
}
}
OdfTableCell valor = distribuicaoTable.getCellByPosition(pos_responsavel, linha);
valor.setStringValue(quantidade);
valor.setHorizontalAlignment("center");
pos_responsavel++;
}
linha++;
}
}
odt.save(os);
} catch (Exception ex) {
Logger.getLogger(PLN004ODF.class.getName()).log(Level.SEVERE, null, ex);
}
}
Aggregations