This commit is contained in:
KANE LAZENI 2026-06-23 17:49:02 +00:00
parent 5e551bc3a9
commit d8fe367f58

View File

@ -254,4 +254,14 @@ class Detailprescription extends Modele {
$this->executerRequete($sql, array($numeroPrescription));
}
public function getdetailprescriptionbon($numeroPrescription)
{
$sql = 'call sp_p_get_detail_prescription_bon(?)';
$resultat = $this->executerRequete($sql, array($numeroPrescription));
return $resultat->fetchAll(PDO::FETCH_ASSOC);
}
}