Correction "base" dans la création de contrôle par import de MCC

This commit is contained in:
xdrm-brackets 2015-11-21 13:10:08 +01:00
parent 2eb04497a1
commit 651e3cf7d7
1 changed files with 2 additions and 2 deletions

View File

@ -166,8 +166,8 @@ class controleRepo extends DBAccess{
/* [1] SI LE CONTRÔLE N'EXISTE PAS => ON LE CRÉÉ
=====================================================*/
echo "$mcc_module|$nom|$libelle|$coefficient<br>";
$creerControle = DataBase::getPDO()->prepare("INSERT INTO controle(id_controle, id_mcc_module, nom, libelle, coefficient, date_publication)
VALUES(DEFAULT, :mcc_module, :nom, :libelle, :coefficient, NOW())");
$creerControle = DataBase::getPDO()->prepare("INSERT INTO controle(id_controle, id_mcc_module, nom, libelle, base, coefficient, date_publication)
VALUES(DEFAULT, :mcc_module, :nom, :libelle, 20, :coefficient, NOW())");
$creerControle->execute(array( ':mcc_module' => $mcc_module, ':nom' => $nom, ':libelle' => $libelle, ':coefficient' => $coefficient ));
/* ON VÉRIFIE QUE LE MODULE APPARTIENT AU MCC DE CE MCC_UE */