From 37da4aacce639917e5cc922f929d05e2d728ff85 Mon Sep 17 00:00:00 2001 From: pablo rodriguez <58742538+1-pablo-rodriguez@users.noreply.github.com> Date: Mon, 31 Jul 2023 13:54:46 +0200 Subject: [PATCH] maj V1.0.6 --- base/base.xml | 2 +- src/Inscriptions/importInscriptionXLS.java | 2 +- src/Windows/Window_genere_groupe.java | 14 +++++--------- src/base/base.java | 2 +- src/gestion_version/VersionChecker.java | 1 - 5 files changed, 8 insertions(+), 13 deletions(-) diff --git a/base/base.xml b/base/base.xml index dd38a43..c999407 100644 --- a/base/base.xml +++ b/base/base.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/src/Inscriptions/importInscriptionXLS.java b/src/Inscriptions/importInscriptionXLS.java index 404ab8d..4f2202c 100644 --- a/src/Inscriptions/importInscriptionXLS.java +++ b/src/Inscriptions/importInscriptionXLS.java @@ -162,7 +162,7 @@ public class importInscriptionXLS { nFormation.setAttribut("Verouillage_Groupe_Informatique", "false"); nFormation.setAttribut("Verouillage_Groupe_Documentation", "false"); nFormation.setAttribut("Verouillage_Groupe_Projet", "false"); - nFormation.setAttribut("Verouillage_Tous_Les_Groupes", "false"); + nFormation.setAttribut("Verouillage_Tous_Les_Groupes", "true"); nFormation.setAttribut("pattern_Groupe_Principal", "groupe @"); nFormation.setAttribut("nombre_Student_Groupe_Principal", "30"); diff --git a/src/Windows/Window_genere_groupe.java b/src/Windows/Window_genere_groupe.java index bfe973d..67ce75b 100644 --- a/src/Windows/Window_genere_groupe.java +++ b/src/Windows/Window_genere_groupe.java @@ -56,7 +56,7 @@ public class Window_genere_groupe extends JFrame { private void initialize( String nameGroupe,Window_gestionnaire instance) { setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); - setBounds(0, 0, 863, 534); + setBounds(0, 0, 863, 500); setTitle("Générer des groupes"); setLocationRelativeTo(null); // Centre la fenêtre à l'écran @@ -84,7 +84,7 @@ public class Window_genere_groupe extends JFrame { JButton btnGenere_Groupe = new JButton("Générer les groupes"); btnGenere_Groupe.setFont(new Font("Arial", Font.BOLD, 14)); - btnGenere_Groupe.setBounds(487, 396, 350, 80); + btnGenere_Groupe.setBounds(487, 396, 350, 58); getContentPane().add(btnGenere_Groupe); textPattern_Groupe = new JTextField(); @@ -144,11 +144,11 @@ public class Window_genere_groupe extends JFrame { lblNombre_Etudiant_Groupe.setBounds(382, 318, 332, 36); getContentPane().add(lblNombre_Etudiant_Groupe); - JLabel lblNewLabel_1 = new JLabel("(1) - Si le caractère @ ou # n'est pas présent alors pattern fixe.

@ : correspond à une lettre de A à Z
# : correspond à un nombre de 1 à 100"); + JLabel lblNewLabel_1 = new JLabel("(1) - Si le caractère @ ou # n'est pas présent alors pattern fixe.
@ : correspond à une lettre de A à Z
# : correspond à un nombre de 1 à 100"); lblNewLabel_1.setForeground(Color.BLUE); lblNewLabel_1.setFont(new Font("Arial", Font.BOLD | Font.ITALIC, 14)); lblNewLabel_1.setVerticalAlignment(SwingConstants.TOP); - lblNewLabel_1.setBounds(10, 376, 441, 100); + lblNewLabel_1.setBounds(10, 366, 441, 58); getContentPane().add(lblNewLabel_1); @@ -203,10 +203,6 @@ public class Window_genere_groupe extends JFrame { rdbtnAlphabetique.setBounds(670, 366, 167, 23); getContentPane().add(rdbtnAlphabetique); - - - - rdbtnAlphabetique.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { @@ -423,7 +419,7 @@ public class Window_genere_groupe extends JFrame { int compteur = 0; String str = patternGroupe + String.valueOf(nombreDeGroupes); for (noeud child : tableChild) { - if(verrouillageGroupe) { + if(!verrouillageGroupe) { if(compteur==tailleDesGroupes) { compteur = 0; nombreDeGroupes++; diff --git a/src/base/base.java b/src/base/base.java index 0586c9b..9a50fab 100644 --- a/src/base/base.java +++ b/src/base/base.java @@ -101,7 +101,7 @@ public class base { } else { JPanel panel = new JPanel(); - JLabel message = new JLabel("

Le format est valide, la première année n'est pas inférieure à la seconde année d'une année.

" + JLabel message = new JLabel("

Le format est invalide, la première année n'est pas inférieure à la seconde année d'une année.

" + "

Exemple de format : 2023-2024

"); panel.add(message); JOptionPane.showMessageDialog(null, panel, "Erreur", JOptionPane.ERROR_MESSAGE); diff --git a/src/gestion_version/VersionChecker.java b/src/gestion_version/VersionChecker.java index 319a5d0..0a5c90e 100644 --- a/src/gestion_version/VersionChecker.java +++ b/src/gestion_version/VersionChecker.java @@ -428,7 +428,6 @@ public class VersionChecker { } nFormation.triAlphabetiqueDesEnfants(commandes.nomColonneNomEtudiant); } - return nBase; }