From b84a064fb414a233f32cab567b66978ce0c0de9f Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Mon, 16 Nov 2015 21:42:00 +0100 Subject: [PATCH] =?UTF-8?q?M=C3=A0j=20BDD=20ajout=20de=20la=20table=20FORM?= =?UTF-8?q?ATION=20+=20refactor=20de=20page/career=20+=20page/modules=20en?= =?UTF-8?q?=20utilisant=20maintenant=20les=20identifiants=20uniques=20de?= =?UTF-8?q?=20BDD=20(pour=20formations,=20semestre,=20UE)=20afin=20de=20pe?= =?UTF-8?q?rmettre=20des=20UEs=20de=20m=C3=AAme=20nom=20(=C3=A0=20travers?= =?UTF-8?q?=20diff=C3=A9rentes=20formations)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/global.css | 6 +- manager/repo/semestre.php | 16 +-- page/career.php | 108 +++++++++++-------- page/modules.php | 219 +++++++++++++++++++++++--------------- xdoc/sid.sql | 31 +++--- 5 files changed, 232 insertions(+), 148 deletions(-) diff --git a/css/global.css b/css/global.css index fe219f9..ea808f2 100755 --- a/css/global.css +++ b/css/global.css @@ -338,12 +338,14 @@ body.trHoverActivated tr:hover td .confirm.active{ /* @radius */ #CONTAINER > section > .partlist td:first-child{ - border-radius: 5px 0 0 5px; + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; } /* @border + @radius */ #CONTAINER > section > .partlist td:last-child{ - border-radius: 0 5px 5px 0; + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; border-right: 1px solid #2dcc70; } diff --git a/manager/repo/semestre.php b/manager/repo/semestre.php index 6e1a027..0584eab 100755 --- a/manager/repo/semestre.php +++ b/manager/repo/semestre.php @@ -57,9 +57,9 @@ class semestreRepo extends DBAccess{ */ public static function info($semestreUID){ // on considère que le semestre existe - $getSemestreInfo = DataBase::getPDO()->prepare("SELECT s.id_semestre as s.id, f.code as formation, f.nom as nom_formation, s.nom, s.rang, s.annee ". + $getSemestreInfo = DataBase::getPDO()->prepare("SELECT s.id_semestre as s.id, f.id_formation, f.code as formation, f.nom as nom_formation, s.nom, s.rang, s.annee ". "FROM semestre as s, formation as f ". - "WHERE s.formation = f.id_formation ". + "WHERE s.id_formation = f.id_formation ". "AND id_semestre = :semestreUID"); $getSemestreInfo->execute(array( ':semestreUID' => $semestreUID )); @@ -89,9 +89,9 @@ class semestreRepo extends DBAccess{ // on formate les variables $semestre_pair = ($semestre_pair) ? '0' : '1'; - $getSemestreUID = DataBase::getPDO()->prepare("SELECT s.id_semestre as id, f.code as formation, f.nom as nom_formation ". + $getSemestreUID = DataBase::getPDO()->prepare("SELECT s.id_semestre as id, f.id_formation, f.code as formation, f.nom as nom_formation ". "FROM semestre as s, appartenance as app, formation as f ". - "WHERE s.formation = f.id_formation ". + "WHERE s.id_formation = f.id_formation ". "AND app.id_semestre = s.id_semestre ". "AND app.id_etudiant = :etudiant ". @@ -122,10 +122,10 @@ class semestreRepo extends DBAccess{ * */ public static function forTeacher($enseignant, $semestre_pair, $annee){ - $getSemestreList = DataBase::getPDO()->prepare("SELECT DISTINCT s.id_semestre as id, f.code as formation, f.nom as nom_formation, s.nom, s.rang, s.annee ". + $getSemestreList = DataBase::getPDO()->prepare("SELECT DISTINCT s.id_semestre as id, f.id_formation, f.code as formation, f.nom as nom_formation, s.nom, s.rang, s.annee ". "FROM semestre as s, formation as f, enseignement as ens, mcc_module as mcc_m, mcc_ue ". "WHERE s.id_semestre = mcc_ue.id_semestre ". // semestre <-> mcc_ue - "AND s.formation = f.id_formation ". // semestre <-> formation + "AND s.id_formation = f.id_formation ". // semestre <-> formation "AND mcc_ue.id_mcc_ue = mcc_m.id_mcc_ue ". // mcc_ue <-> mcc_module "AND mcc_m.id_mcc_module = ens.id_mcc_module ". // mcc_module <-> enseignement @@ -149,9 +149,9 @@ class semestreRepo extends DBAccess{ * */ public static function forYear($annee){ - $getSemestreList = DataBase::getPDO()->prepare("SELECT DISTINCT s.id_semestre as id, f.code as formation, f.nom as nom_formation, s.nom, s.rang, s.annee ". + $getSemestreList = DataBase::getPDO()->prepare("SELECT DISTINCT s.id_semestre as id, f.id_formation, f.code as formation, f.nom as nom_formation, s.nom, s.rang, s.annee ". "FROM semestre as s, formation as f ". - "WHERE s.formation = f.id_formation ". + "WHERE s.id_formation = f.id_formation ". "AND annee = :annee ". "ORDER BY rang ASC"); $getSemestreList->execute(array( ':annee' => $annee )); diff --git a/page/career.php b/page/career.php index 8c643ac..9ed0d42 100755 --- a/page/career.php +++ b/page/career.php @@ -174,64 +174,88 @@ if( permission('teacher') && $controleOpt == null ){ // si c'est un enseignant e /* ON RECUPERE UNE LISTE UNIQUE DES SEMESTRES */ - $ListeNomsSemestres = array(); - $ListeNomsFormations = array(); - $ListeNomsUE = array(); + $ListeUIDFormations = array(); + $ListeUIDSemestres = array(); + $ListeUIDUE = array(); - // on selectionne les formations présentes - foreach($answer->semestres as $semestre) - array_push( $ListeNomsFormations, $semestre['formation'] ); - - // si la formation optionnelle n'est pas définie ou pas dans la liste, on la définit - $ListeNomsFormations = array_unique($ListeNomsFormations); - if( $formationOpt == null || !in_array($formationOpt, $ListeNomsFormations) ) $formationOpt = $ListeNomsFormations[0]; - - - foreach($answer->semestres as $semestre){ if( $semestre['formation'] == $formationOpt ){ - array_push( $ListeNomsSemestres, $semestre['nom'] ); - - /* ON RECUPERE UNE LISTE UNIQUE DES UEs */ - foreach($semestre['UElist'] as $UE) - array_push( $ListeNomsUE, $UE['nom'] ); - }} - - $ListeNomsSemestres = array_unique($ListeNomsSemestres); - $ListeNomsUE = array_unique($ListeNomsUE); + // Vérification de la formation si elle est définie + $verificationUIDFormations = array(); + foreach($answer->semestres as $semestre) // on récupère la liste des UID de FORMATIONS + if( !in_array($semestre['id_formation'], $verificationUIDFormations) ) + array_push($verificationUIDFormations, $semestre['id_formation']); + // si la formation optionnelle n'est pas définie ou incohérente, on le fait (première valeur trouvée) + if( $formationOpt == null || !in_array($formationOpt, $verificationUIDFormations) ) + $formationOpt = $verificationUIDFormations[0]; + /**************************/ + /* AFFINAGE PAR FORMATION */ + /**************************/ echo ""; - foreach($ListeNomsFormations as $NomFormation) - if( $NomFormation == $formationOpt ) // si c'est le semestre séléctionné - echo "'; - else // sinon on affiche normalement - echo "'; + foreach($answer->semestres as $semestre){ if( !in_array($semestre['id_formation'], $ListeUIDFormations) ){ + + + if( $semestre['id_formation'] == $formationOpt ) // si c'est la formation séléctionnée + echo "'; + else // sinon on affiche normalement + echo "'; + + // on ajoute la formation à la liste pour ne pas la répéter + array_push($ListeUIDFormations, $semestre['id_formation']); + + }} echo "
".$NomFormation.'".$NomFormation.'".$semestre['formation'].'".$semestre['formation'].'
"; + + /*************************/ + /* AFFINAGE PAR SEMESTRE */ + /*************************/ echo ""; - if( $semestreOpt == null ) echo ""; - else echo ""; - - foreach($ListeNomsSemestres as $NomSemestre) - if( $NomSemestre == $semestreOpt ) // si c'est le semestre séléctionné - echo "'; - else // sinon on affiche normalement - echo "'; + if( $semestreOpt == null ) echo ""; + else echo ""; + + /* On récupère la liste des SEMESTRES en accord avec la FORMATION sélectionnée */ + foreach($answer->semestres as $semestre){ if( $semestre['id_formation'] == $formationOpt && !in_array($semestre['id'], $ListeUIDSemestres) ){ + + if( $semestre['id'] == $semestreOpt ) // si c'est le semestre séléctionné + echo "'; + else // sinon on affiche normalement + echo "'; + + + // on ajoute le semestre à la liste pour ne pas le répéter + array_push($ListeUIDSemestres, $semestre['id']); + + }} + echo ""; // ajouter un semestre echo "
TousTous".$NomSemestre.'".$NomSemestre.'TousTous".$semestre['nom'].'".$semestre['nom'].'+
"; + + /*******************/ + /* AFFINAGE PAR UE */ + /*******************/ echo ""; if( $ueOpt == null ) echo ""; else echo ""; - - foreach($ListeNomsUE as $NomUE) - if( $NomUE == $ueOpt ) // si c'est le semestre séléctionné - echo "'; + + /* On récupère la liste des UEs en accord avec la FORMATION et le SEMESTRE sélectionnés */ + foreach($answer->semestres as $semestre){ if( $semestre['id_formation'] == $formationOpt && in_array($semestre['id'], $ListeUIDSemestres) ){ + foreach($semestre['UElist'] as $UE){ if( !in_array($UE['id'], $ListeUIDUE) ){ + if( $UE['id'] == $ueOpt ) // si c'est l'UE séléctionnée + echo "'; else // sinon on affiche normalement - echo "'; + echo "'; + + // on ajoute l'UE à la liste pour ne pas le répéter + array_push($ListeUIDUE, $UE['id']); + }} + }} + echo ""; // ajouter un UE echo "
TousTous".$NomUE.'".$UE['nom'].'".$NomUE.'".$UE['nom'].'+
"; @@ -240,11 +264,11 @@ if( permission('teacher') && $controleOpt == null ){ // si c'est un enseignant e foreach($answer->semestres as $semestre){ - if( ($semestreOpt == null || $semestre['nom'] == $semestreOpt) && ($formationOpt == null || $semestre['formation'] == $formationOpt) ){ // on affiche les semestres en fonction de l'affinage + if( ($semestreOpt == null || $semestre['id'] == $semestreOpt) && ($formationOpt == null || $semestre['id_formation'] == $formationOpt) ){ // on affiche les semestres en fonction de l'affinage foreach($semestre['UElist'] as $UE){ // pour chaque UE - if( $ueOpt == null || $UE['nom'] == $ueOpt ){ // on affiche l'UE en fonction du paramètre passé par l'URL + if( $ueOpt == null || $UE['id'] == $ueOpt ){ // on affiche l'UE en fonction du paramètre passé par l'URL if( count($UE['modules']) > 0 ){ // s'il y a au moins un module diff --git a/page/modules.php b/page/modules.php index a2fba9f..539b3d7 100755 --- a/page/modules.php +++ b/page/modules.php @@ -150,64 +150,88 @@ if( permission('teacher') ){ // si l'utilisateur est un prof echo "
"; /* ON RECUPERE UNE LISTE UNIQUE DES SEMESTRES */ - $ListeNomsSemestres = array(); - $ListeNomsFormations = array(); - $ListeNomsUE = array(); + $ListeUIDFormations = array(); + $ListeUIDSemestres = array(); + $ListeUIDUE = array(); - // on selectionne les formations présentes - foreach($answer->semestres as $semestre) - array_push( $ListeNomsFormations, $semestre['formation'] ); - - // si la formation optionnelle n'est pas définie ou pas dans la liste, on la définit - $ListeNomsFormations = array_unique($ListeNomsFormations); - if( $formationOpt == null || !in_array($formationOpt, $ListeNomsFormations) ) $formationOpt = $ListeNomsFormations[0]; - - - foreach($answer->semestres as $semestre){ if( $semestre['formation'] == $formationOpt ){ - array_push( $ListeNomsSemestres, $semestre['nom'] ); - - /* ON RECUPERE UNE LISTE UNIQUE DES UEs */ - foreach($semestre['UElist'] as $UE) - array_push( $ListeNomsUE, $UE['nom'] ); - }} - - $ListeNomsSemestres = array_unique($ListeNomsSemestres); - $ListeNomsUE = array_unique($ListeNomsUE); + // Vérification de la formation si elle est définie + $verificationUIDFormations = array(); + foreach($answer->semestres as $semestre) // on récupère la liste des UID de FORMATIONS + if( !in_array($semestre['id_formation'], $verificationUIDFormations) ) + array_push($verificationUIDFormations, $semestre['id_formation']); + // si la formation optionnelle n'est pas définie ou incohérente, on le fait (première valeur trouvée) + if( $formationOpt == null || !in_array($formationOpt, $verificationUIDFormations) ) + $formationOpt = $verificationUIDFormations[0]; + /**************************/ + /* AFFINAGE PAR FORMATION */ + /**************************/ echo ""; - foreach($ListeNomsFormations as $NomFormation) - if( $NomFormation == $formationOpt ) // si c'est le semestre séléctionné - echo "'; - else // sinon on affiche normalement - echo "'; + foreach($answer->semestres as $semestre){ if( !in_array($semestre['id_formation'], $ListeUIDFormations) ){ + + + if( $semestre['id_formation'] == $formationOpt ) // si c'est la formation séléctionnée + echo "'; + else // sinon on affiche normalement + echo "'; + + // on ajoute la formation à la liste pour ne pas la répéter + array_push($ListeUIDFormations, $semestre['id_formation']); + + }} echo "
".$NomFormation.'".$NomFormation.'".$semestre['formation'].'".$semestre['formation'].'
"; + + /*************************/ + /* AFFINAGE PAR SEMESTRE */ + /*************************/ echo ""; - if( $semestreOpt == null ) echo ""; - else echo ""; - - foreach($ListeNomsSemestres as $NomSemestre) - if( $NomSemestre == $semestreOpt ) // si c'est le semestre séléctionné - echo "'; - else // sinon on affiche normalement - echo "'; + if( $semestreOpt == null ) echo ""; + else echo ""; + + /* On récupère la liste des SEMESTRES en accord avec la FORMATION sélectionnée */ + foreach($answer->semestres as $semestre){ if( $semestre['id_formation'] == $formationOpt && !in_array($semestre['id'], $ListeUIDSemestres) ){ + + if( $semestre['id'] == $semestreOpt ) // si c'est le semestre séléctionné + echo "'; + else // sinon on affiche normalement + echo "'; + + + // on ajoute le semestre à la liste pour ne pas le répéter + array_push($ListeUIDSemestres, $semestre['id']); + + }} + echo ""; // ajouter un semestre echo "
TousTous".$NomSemestre.'".$NomSemestre.'TousTous".$semestre['nom'].'".$semestre['nom'].'+
"; + + /*******************/ + /* AFFINAGE PAR UE */ + /*******************/ echo ""; if( $ueOpt == null ) echo ""; else echo ""; - - foreach($ListeNomsUE as $NomUE) - if( $NomUE == $ueOpt ) // si c'est le semestre séléctionné - echo "'; + + /* On récupère la liste des UEs en accord avec la FORMATION et le SEMESTRE sélectionnés */ + foreach($answer->semestres as $semestre){ if( $semestre['id_formation'] == $formationOpt && in_array($semestre['id'], $ListeUIDSemestres) ){ + foreach($semestre['UElist'] as $UE){ if( !in_array($UE['id'], $ListeUIDUE) ){ + if( $UE['id'] == $ueOpt ) // si c'est l'UE séléctionnée + echo "'; else // sinon on affiche normalement - echo "'; + echo "'; + + // on ajoute l'UE à la liste pour ne pas le répéter + array_push($ListeUIDUE, $UE['id']); + }} + }} + echo ""; // ajouter un UE echo "
TousTous".$NomUE.'".$UE['nom'].'".$NomUE.'".$UE['nom'].'+
"; @@ -215,11 +239,11 @@ if( permission('teacher') ){ // si l'utilisateur est un prof foreach($answer->semestres as $semestre){ - if( ($semestreOpt == null || $semestre['nom'] == $semestreOpt) && ($formationOpt == null || $semestre['formation'] == $formationOpt) ){ // on affiche les semestres en fonction de l'affinage + if( ($semestreOpt == null || $semestre['id'] == $semestreOpt) && ($formationOpt == null || $semestre['id_formation'] == $formationOpt) ){ // on affiche les semestres en fonction de l'affinage foreach($semestre['UElist'] as $UE){ - if( $ueOpt == null || $UE['nom'] == $ueOpt ){ // on affiche les UEs en fonction de l'affinage + if( $ueOpt == null || $UE['id'] == $ueOpt ){ // on affiche les UEs en fonction de l'affinage echo ""; echo ""; @@ -293,81 +317,108 @@ if( permission('admin') ){ // si l'utilisateur est un admin modules_switch_level_1($request, $answer); + if( $answer->request == 'success' ){ // si on a bien récupéré les membres du groupe //////////////////////////////////////////////////////////////////////////////// echo "
"; /* ON RECUPERE UNE LISTE UNIQUE DES SEMESTRES */ - $ListeNomsSemestres = array(); - $ListeNomsFormations = array(); - $ListeNomsUE = array(); + $ListeUIDFormations = array(); + $ListeUIDSemestres = array(); + $ListeUIDUE = array(); - // on selectionne les formations présentes - foreach($answer->semestres as $semestre) - array_push( $ListeNomsFormations, $semestre['formation'] ); - - // si la formation optionnelle n'est pas définie, on la définit - $ListeNomsFormations = array_unique($ListeNomsFormations); - if( $formationOpt == null || !in_array($formationOpt, $ListeNomsFormations) ) $formationOpt = $ListeNomsFormations[0]; - - - foreach($answer->semestres as $semestre){ if( $semestre['formation'] == $formationOpt ){ - array_push( $ListeNomsSemestres, $semestre['nom'] ); - - /* ON RECUPERE UNE LISTE UNIQUE DES UEs */ - foreach($semestre['UElist'] as $UE) - array_push( $ListeNomsUE, $UE['nom'] ); - }} - - $ListeNomsSemestres = array_unique($ListeNomsSemestres); - $ListeNomsUE = array_unique($ListeNomsUE); + // Vérification de la formation si elle est définie + $verificationUIDFormations = array(); + foreach($answer->semestres as $semestre) // on récupère la liste des UID de FORMATIONS + if( !in_array($semestre['id_formation'], $verificationUIDFormations) ) + array_push($verificationUIDFormations, $semestre['id_formation']); + // si la formation optionnelle n'est pas définie ou incohérente, on le fait (première valeur trouvée) + if( $formationOpt == null || !in_array($formationOpt, $verificationUIDFormations) ) + $formationOpt = $verificationUIDFormations[0]; + /**************************/ + /* AFFINAGE PAR FORMATION */ + /**************************/ echo "
"; - foreach($ListeNomsFormations as $NomFormation) - if( $NomFormation == $formationOpt ) // si c'est le semestre séléctionné - echo "'; - else // sinon on affiche normalement - echo "'; + foreach($answer->semestres as $semestre){ if( !in_array($semestre['id_formation'], $ListeUIDFormations) ){ + + + if( $semestre['id_formation'] == $formationOpt ) // si c'est la formation séléctionnée + echo "'; + else // sinon on affiche normalement + echo "'; + + // on ajoute la formation à la liste pour ne pas la répéter + array_push($ListeUIDFormations, $semestre['id_formation']); + + }} echo "
".$NomFormation.'".$NomFormation.'".$semestre['formation'].'".$semestre['formation'].'
"; + + + + /*************************/ + /* AFFINAGE PAR SEMESTRE */ + /*************************/ echo ""; - if( $semestreOpt == null ) echo ""; - else echo ""; - - foreach($ListeNomsSemestres as $NomSemestre) - if( $NomSemestre == $semestreOpt ) // si c'est le semestre séléctionné - echo "'; - else // sinon on affiche normalement - echo "'; + if( $semestreOpt == null ) echo ""; + else echo ""; + + /* On récupère la liste des SEMESTRES en accord avec la FORMATION sélectionnée */ + foreach($answer->semestres as $semestre){ if( $semestre['id_formation'] == $formationOpt && !in_array($semestre['id'], $ListeUIDSemestres) ){ + + if( $semestre['id'] == $semestreOpt ) // si c'est le semestre séléctionné + echo "'; + else // sinon on affiche normalement + echo "'; + + + // on ajoute le semestre à la liste pour ne pas le répéter + array_push($ListeUIDSemestres, $semestre['id']); + + }} + echo ""; // ajouter un semestre echo "
TousTous".$NomSemestre.'".$NomSemestre.'TousTous".$semestre['nom'].'".$semestre['nom'].'+
"; + + /*******************/ + /* AFFINAGE PAR UE */ + /*******************/ echo ""; if( $ueOpt == null ) echo ""; else echo ""; - - foreach($ListeNomsUE as $NomUE) - if( $NomUE == $ueOpt ) // si c'est le semestre séléctionné - echo "'; + + /* On récupère la liste des UEs en accord avec la FORMATION et le SEMESTRE sélectionnés */ + foreach($answer->semestres as $semestre){ if( $semestre['id_formation'] == $formationOpt && in_array($semestre['id'], $ListeUIDSemestres) ){ + foreach($semestre['UElist'] as $UE){ if( !in_array($UE['id'], $ListeUIDUE) ){ + if( $UE['id'] == $ueOpt ) // si c'est l'UE séléctionnée + echo "'; else // sinon on affiche normalement - echo "'; + echo "'; + + // on ajoute l'UE à la liste pour ne pas le répéter + array_push($ListeUIDUE, $UE['id']); + }} + }} + echo ""; // ajouter un UE echo "
TousTous".$NomUE.'".$UE['nom'].'".$NomUE.'".$UE['nom'].'+
"; foreach($answer->semestres as $semestre){ - if( ($semestreOpt == null || $semestre['nom'] == $semestreOpt) && ($formationOpt == null || $semestre['formation'] == $formationOpt) ){ // on affiche les semestres en fonction de l'affinage + if( ($semestreOpt == null || $semestre['id'] == $semestreOpt) && ($formationOpt == null || $semestre['id_formation'] == $formationOpt) ){ // on affiche les semestres en fonction de l'affinage foreach($semestre['UElist'] as $UE){ - if( $ueOpt == null || $UE['nom'] == $ueOpt ){ // on affiche les UEs en fonction de l'affinage + if( $ueOpt == null || $UE['id'] == $ueOpt ){ // on affiche les UEs en fonction de l'affinage echo ""; echo ""; diff --git a/xdoc/sid.sql b/xdoc/sid.sql index 5d36a16..05df873 100755 --- a/xdoc/sid.sql +++ b/xdoc/sid.sql @@ -3,7 +3,7 @@ -- http://www.phpmyadmin.net -- -- Client: localhost --- Généré le: Lun 16 Novembre 2015 à 12:42 +-- Généré le: Lun 16 Novembre 2015 à 21:41 -- Version du serveur: 5.5.46-0ubuntu0.14.04.2 -- Version de PHP: 5.5.9-1ubuntu4.14 @@ -429,7 +429,7 @@ CREATE TABLE IF NOT EXISTS `note` ( PRIMARY KEY (`id_note`), KEY `id_appartenance` (`id_appartenance`), KEY `id_controle` (`id_controle`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=50 ; +) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=57 ; -- -- RELATIONS POUR LA TABLE `note`: @@ -445,7 +445,7 @@ CREATE TABLE IF NOT EXISTS `note` ( INSERT INTO `note` (`id_note`, `id_appartenance`, `id_controle`, `valeur`) VALUES (11, 103, 1, 15.25), -(12, 54, 2, 2), +(12, 54, 2, 5), (13, 103, 3, 3), (14, 103, 4, 4), (15, 103, 5, 5), @@ -459,9 +459,9 @@ INSERT INTO `note` (`id_note`, `id_appartenance`, `id_controle`, `valeur`) VALUE (23, 91, 1, 3.5), (24, 19, 1, 4.5), (25, 58, 1, 5.25), -(26, 49, 2, 3), -(27, 87, 2, 4), -(28, 3, 2, 5), +(26, 49, 2, 6), +(27, 87, 2, 7), +(28, 3, 2, 8), (29, 74, 1, 14.75), (30, 26, 1, 1.9), (31, 97, 1, 10), @@ -482,7 +482,14 @@ INSERT INTO `note` (`id_note`, `id_appartenance`, `id_controle`, `valeur`) VALUE (46, 13, 1, 2), (47, 67, 1, 0), (48, 70, 1, 0.5), -(49, 5, 1, 1.75); +(49, 5, 1, 1.75), +(50, 46, 11, 1), +(51, 33, 11, 2), +(52, 61, 11, 3), +(53, 48, 11, 4), +(54, 43, 11, 5), +(55, 98, 11, 6), +(56, 56, 11, 1); -- -------------------------------------------------------- @@ -492,18 +499,18 @@ INSERT INTO `note` (`id_note`, `id_appartenance`, `id_controle`, `valeur`) VALUE CREATE TABLE IF NOT EXISTS `semestre` ( `id_semestre` int(11) NOT NULL AUTO_INCREMENT, - `formation` int(11) NOT NULL, + `id_formation` int(11) NOT NULL, `nom` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `rang` tinyint(4) NOT NULL, `annee` year(4) NOT NULL, PRIMARY KEY (`id_semestre`), UNIQUE KEY `rang` (`rang`,`annee`), - KEY `id_formation` (`formation`) + KEY `id_formation` (`id_formation`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; -- -- RELATIONS POUR LA TABLE `semestre`: --- `formation` +-- `id_formation` -- `formation` -> `id_formation` -- @@ -511,7 +518,7 @@ CREATE TABLE IF NOT EXISTS `semestre` ( -- Contenu de la table `semestre` -- -INSERT INTO `semestre` (`id_semestre`, `formation`, `nom`, `rang`, `annee`) VALUES +INSERT INTO `semestre` (`id_semestre`, `id_formation`, `nom`, `rang`, `annee`) VALUES (1, 1, 'S1', 1, 2015), (2, 1, 'S2', 2, 2015), (3, 2, 'S3', 3, 2015), @@ -721,7 +728,7 @@ ALTER TABLE `note` -- Contraintes pour la table `semestre` -- ALTER TABLE `semestre` - ADD CONSTRAINT `semestre_id_formation` FOREIGN KEY (`formation`) REFERENCES `formation` (`id_formation`); + ADD CONSTRAINT `semestre_id_formation` FOREIGN KEY (`id_formation`) REFERENCES `formation` (`id_formation`); /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;