use of com.tomasio.projects.trainning.form.instrutores.PropostaHabilitacaoInstrutorForm in project trainning by fernandotomasio.
the class InstrutoresController method initializePropostaHabilitacaoInstrutorForm.
public PropostaHabilitacaoInstrutorForm initializePropostaHabilitacaoInstrutorForm(Map pessoa, Map curso) {
PropostaHabilitacaoInstrutorForm form = new PropostaHabilitacaoInstrutorForm();
Long pessoaId = (Long) pessoa.get("id");
Long cursoId = (Long) curso.get("id");
PessoaDTO pessoaDTO = organizationalService.findPessoa(pessoaId);
form.setPessoaTargeta(pessoaDTO.getTargetaCompleta());
form.setOMSigla(pessoaDTO.getOrganizacao().getSigla());
form.setPessoaId(pessoaId);
form.setCursoId(cursoId);
return form;
}
use of com.tomasio.projects.trainning.form.instrutores.PropostaHabilitacaoInstrutorForm in project trainning by fernandotomasio.
the class InstrutoresController method editPropostaHabilitacaoInstrutorForm.
public PropostaHabilitacaoInstrutorForm editPropostaHabilitacaoInstrutorForm(Long habilitacaoPropostaId) {
PropostaHabilitacaoInstrutorForm form = new PropostaHabilitacaoInstrutorForm();
HabilitacaoInstrutorPropostaDTO proposta = (HabilitacaoInstrutorPropostaDTO) instructorsService.findHabilitacaoInstrutor(habilitacaoPropostaId);
PessoaDTO pessoa = organizationalService.findPessoa(proposta.getPessoa().getId());
form.setCursoId(proposta.getCurso().getId());
form.setPessoaId(proposta.getPessoa().getId());
form.setExperiencia(proposta.getExperiencia());
form.setId(proposta.getId());
form.setJustificativa(proposta.getJustificativa());
if (pessoa.getOrganizacao() != null) {
form.setOMSigla(pessoa.getOrganizacao().getSigla());
}
form.setPessoaTargeta(pessoa.getTargetaCompleta());
return form;
}
Aggregations