Correction "base" dans la création de contrôle par import de MCC
This commit is contained in:
parent
2eb04497a1
commit
651e3cf7d7
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue