a
This commit is contained in:
parent
0c3eac2dc1
commit
792ba198ad
|
|
@ -21,6 +21,8 @@ class ControleurAjaxdetailprescription extends Controleur {
|
|||
|
||||
$detailprescriptions = $this->detailprescription->getdetailprescription($numeroPrescription);
|
||||
|
||||
$geds = $this->ged->getgedpharmacie();
|
||||
|
||||
$this->genererVueAjax(array('prescription' => $prescription, 'detailprescriptions' => $detailprescriptions));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -193,52 +193,4 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="div_ged_0">
|
||||
<form enctype="multipart/form-data" action="Prescription" method="post">
|
||||
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td> <?= _("Document") ?> </td>
|
||||
<td> <input style="font-size: 15px; height: 40px" class="form-control btn btn-info" name="fichier_upload" type="file" id="fichier_upload" /> </td>
|
||||
|
||||
<td> </td>
|
||||
<td> <input style='font-size:10pt;' class="form-control btn btn-primary" type="submit" name="submit" value="<?= _("Envoyer") ?>" /> </td>
|
||||
|
||||
<td> </td>
|
||||
<td > <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:prescription_medicament();"><?= _("Actualiser...") ?></button> </td>
|
||||
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<?php if((isset($msgErreurGed)) && ($msgErreurGed>" ")) : ?>
|
||||
<INPUT style='font-size:12pt; color:red; text-align:center;' class="form-control" type="text" value="<?= $msgErreurGed ?>" readonly >
|
||||
<?php endif; ?>
|
||||
|
||||
<table class="table table-striped table-hover table-condensed table-responsive" style="font-size:9pt;" >
|
||||
<thead>
|
||||
<th width="12%" style='text-align:center'> Date </th>
|
||||
<th style='text-align:center'> <?= _("Document GED") ?></th>
|
||||
<th width="11%" style='text-align:center'> <?= _("Télécharger") ?> </th>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<?php foreach ($geds as $ged):
|
||||
$idGed=$this->nettoyer($ged['idGed']);
|
||||
$cheminFichier = $this->nettoyer($ged['cheminFichier']);
|
||||
?>
|
||||
<tr valign="top">
|
||||
<td align='center'><?= dateheureLang($this->nettoyer($ged['dateSysteme'])) ?></td>
|
||||
<td align='center'><?= $this->nettoyer($ged['nomOrigine']) ?></td>
|
||||
<td align="center">
|
||||
<a style="font-size:10pt;" href="<?= $cheminFichier ?>" target="_blank" > <?= _("Télécharger") ?> </a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
|
|
|
|||
|
|
@ -462,53 +462,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="div_ged_0">
|
||||
<form enctype="multipart/form-data" action="Prescription" method="post">
|
||||
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td> <?= _("Document") ?> </td>
|
||||
<td> <input style="font-size: 15px; height: 40px" class="form-control btn btn-info" name="fichier_upload" type="file" id="fichier_upload" /> </td>
|
||||
|
||||
<td> </td>
|
||||
<td> <input style='font-size:10pt;' class="form-control btn btn-primary" type="submit" name="submit" value="<?= _("Envoyer") ?>" /> </td>
|
||||
|
||||
<td> </td>
|
||||
<td > <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:prescription_medicament();"><?= _("Actualiser...") ?></button> </td>
|
||||
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<?php if((isset($msgErreurGed)) && ($msgErreurGed>" ")) : ?>
|
||||
<INPUT style='font-size:12pt; color:red; text-align:center;' class="form-control" type="text" value="<?= $msgErreurGed ?>" readonly >
|
||||
<?php endif; ?>
|
||||
|
||||
<table class="table table-striped table-hover table-condensed table-responsive" style="font-size:9pt;" >
|
||||
<thead>
|
||||
<th width="12%" style='text-align:center'> Date </th>
|
||||
<th style='text-align:center'> <?= _("Document GED") ?></th>
|
||||
<th width="11%" style='text-align:center'> <?= _("Télécharger") ?> </th>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<?php foreach ($geds as $ged):
|
||||
$idGed=$this->nettoyer($ged['idGed']);
|
||||
$cheminFichier = $this->nettoyer($ged['cheminFichier']);
|
||||
?>
|
||||
<tr valign="top">
|
||||
<td align='center'><?= dateheureLang($this->nettoyer($ged['dateSysteme'])) ?></td>
|
||||
<td align='center'><?= $this->nettoyer($ged['nomOrigine']) ?></td>
|
||||
<td align="center">
|
||||
<a style="font-size:10pt;" href="<?= $cheminFichier ?>" target="_blank" > <?= _("Télécharger") ?> </a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="modal fade" id="popRechercheMedecin" role="dialog">
|
||||
|
|
@ -618,3 +571,52 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="div_ged_0">
|
||||
GED MEDIC
|
||||
<form enctype="multipart/form-data" action="Prescription" method="post">
|
||||
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td> <?= _("Document") ?> </td>
|
||||
<td> <input style="font-size: 15px; height: 40px" class="form-control btn btn-info" name="fichier_upload" type="file" id="fichier_upload" /> </td>
|
||||
|
||||
<td> </td>
|
||||
<td> <input style='font-size:10pt;' class="form-control btn btn-primary" type="submit" name="submit" value="<?= _("Envoyer") ?>" /> </td>
|
||||
|
||||
<td> </td>
|
||||
<td > <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:prescription_medicament();"><?= _("Actualiser...") ?></button> </td>
|
||||
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<?php if((isset($msgErreurGed)) && ($msgErreurGed>" ")) : ?>
|
||||
<INPUT style='font-size:12pt; color:red; text-align:center;' class="form-control" type="text" value="<?= $msgErreurGed ?>" readonly >
|
||||
<?php endif; ?>
|
||||
|
||||
<table class="table table-striped table-hover table-condensed table-responsive" style="font-size:9pt;" >
|
||||
<thead>
|
||||
<th width="12%" style='text-align:center'> Date </th>
|
||||
<th style='text-align:center'> <?= _("Document GED") ?></th>
|
||||
<th width="11%" style='text-align:center'> <?= _("Télécharger") ?> </th>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<?php foreach ($geds as $ged):
|
||||
$idGed=$this->nettoyer($ged['idGed']);
|
||||
$cheminFichier = $this->nettoyer($ged['cheminFichier']);
|
||||
?>
|
||||
<tr valign="top">
|
||||
<td align='center'><?= dateheureLang($this->nettoyer($ged['dateSysteme'])) ?></td>
|
||||
<td align='center'><?= $this->nettoyer($ged['nomOrigine']) ?></td>
|
||||
<td align="center">
|
||||
<a style="font-size:10pt;" href="<?= $cheminFichier ?>" target="_blank" > <?= _("Télécharger") ?> </a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user