Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/grupo eventos controller #209

Merged
merged 16 commits into from
Dec 6, 2023

Conversation

Francisco-Paulino-Arruda-Filho
Copy link
Collaborator

Controller de grupo de eventos

Copy link
Collaborator

@Joao-Pedro-P-Holanda Joao-Pedro-P-Holanda left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Finalizar transações de update primeiro

Copy link
Collaborator

@Joao-Pedro-P-Holanda Joao-Pedro-P-Holanda left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Adicionar método getMetasSelecionadas que verifica as checkboxes marcadas e retorna uma lista de Metas
  • Adicionar método updateMetas que chama a operação do DAO com o retorno de getMetasSelecionadas
  • Chamar updateMetas na transação de atualizarEvento
  • Implementar método de removerEvento (branch cadastrarEventoController já possui o necessário no preview de evento)

Comment on lines +352 to +373
public void adicionarEventoE(Evento evento){
if (!contemEvento(listaPreviewEventos, evento)
&& !contemEvento(listaPreviewEventos, evento)) {
FXMLLoader loaderEvento = new FXMLLoader(
App.class.getResource("view/preview/previewEventoExistente.fxml"));
try {
loaderEvento.load();
PreviewEventoController controller = loaderEvento.getController();
controller.setEvento(evento);
listaPreviewEventos.add(controller);

listaDeEventos.add(evento);
} catch (IOException e) {
Alert alert = new Alert(AlertType.WARNING, "falha carregando organizador");
alert.show();
}
} else {
mensagem.setAlertType(AlertType.ERROR);
mensagem.setContentText("Não foi possivel realizar a vinculação: Instituição já foi vinculada!");
mensagem.show();
}
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

chamar adicionar organizador e adicionar colaborador para os organizadores e colaboradores do novo evento

Comment on lines +414 to +427
ArrayList<Instituicao> listaDeOrganizadores = new ArrayList<>(this.listaDeOrganizadores);
ArrayList<Instituicao> listaDeColaboradores = new ArrayList<>(this.listaDeColaboradores);
ArrayList<Evento> listaDeEventos = new ArrayList<>(this.listaDeEventos);

grupoEventos.setOrganizadores(listaDeOrganizadores);
grupoEventos.setColaboradores(listaDeColaboradores);
grupoEventos.setEventos(listaDeEventos);

dao.updateGrupoEventos(grupoEventos);

// ArrayList<Instituicao> auxColaboradores = new ArrayList<>(listaDeColaboradores);
// ArrayList<Instituicao> auxOrganizadores = new ArrayList<>(listaDeOrganizadores);
// dao.atualizarColaboradores(auxColaboradores, grupoEventos);
// dao.atualizarOrganizadores(auxOrganizadores, grupoEventos);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

colaboradores, organizadores e eventos são atualizados com os métodos do DAO

@Joao-Pedro-P-Holanda Joao-Pedro-P-Holanda merged commit ec0d3c9 into development Dec 6, 2023
1 check failed
@Joao-Pedro-P-Holanda Joao-Pedro-P-Holanda deleted the feature/grupoEventosController branch December 6, 2023 14:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants