a
This commit is contained in:
parent
34e90f8f6e
commit
45ad8232fb
|
|
@ -55,7 +55,6 @@ class Feuillemaladie extends Modele {
|
||||||
|
|
||||||
public function getfeuillemaladie($numeroFeuilleMaladie)
|
public function getfeuillemaladie($numeroFeuilleMaladie)
|
||||||
{
|
{
|
||||||
|
|
||||||
$sql = 'call sp_p_get_feuille_maladie(?);';
|
$sql = 'call sp_p_get_feuille_maladie(?);';
|
||||||
|
|
||||||
$feuillemaladie = $this->executerRequete($sql, array($numeroFeuilleMaladie));
|
$feuillemaladie = $this->executerRequete($sql, array($numeroFeuilleMaladie));
|
||||||
|
|
|
||||||
|
|
@ -80,8 +80,16 @@
|
||||||
|
|
||||||
$contestation = $this->nettoyer($feuillemaladie['contestation']);
|
$contestation = $this->nettoyer($feuillemaladie['contestation']);
|
||||||
$noPrescription = $this->nettoyer($feuillemaladie['noPrescription']);
|
$noPrescription = $this->nettoyer($feuillemaladie['noPrescription']);
|
||||||
?>
|
$nbMedicamentsPrescrits = $this->nettoyer($feuillemaladie['nbMedicamentsPrescrits']);
|
||||||
|
|
||||||
|
var_dump
|
||||||
|
(
|
||||||
|
array(
|
||||||
|
"noPrescription" => $noPrescription,
|
||||||
|
"nbMedicamentsPrescrits" => $nbMedicamentsPrescrits,
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
|
||||||
<button type="button" class="sr-only" id="btn_refresh" name="btn_refresh" onClick="javascript:feuillemaladie();" > </button>
|
<button type="button" class="sr-only" id="btn_refresh" name="btn_refresh" onClick="javascript:feuillemaladie();" > </button>
|
||||||
|
|
||||||
|
|
@ -490,7 +498,7 @@
|
||||||
<td> </td>
|
<td> </td>
|
||||||
|
|
||||||
<td colspan="1">
|
<td colspan="1">
|
||||||
<?php if ($facture=="0" && $noPrescription=="0") : ?>
|
<?php if ($facture=="0" && $nbMedicamentsPrescrits=="0") : ?>
|
||||||
<button style='font-size:10pt;' type="button" class="form-control btn btn-info" onclick="javascript:no_presciption();" style='font-size:10pt;'>
|
<button style='font-size:10pt;' type="button" class="form-control btn btn-info" onclick="javascript:no_presciption();" style='font-size:10pt;'>
|
||||||
<span><?= _("Sans Médicaments") ?></span>
|
<span><?= _("Sans Médicaments") ?></span>
|
||||||
</button>
|
</button>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user