68 lines
2.7 KiB
PHP
Executable File
68 lines
2.7 KiB
PHP
Executable File
<div id="div_ged">
|
|
|
|
<div class="modal fade" id="popGed" role="dialog">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
<button id="btn_close_pop_ged_facture" name="btn_close_pop_ged_facture" type="button" class="close" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
<h4 class="modal-title"> <?= _("GED Facture...") ?> </h4>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<form enctype="multipart/form-data" name="ajax_form_upload" id="ajax_form_upload" 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 onClick="javascript:valider_ged_decompte_gc();" style='font-size:10pt;' class="form-control btn btn-primary" type="button" name="btn_upload" name="btn_upload" value="<?= _("Envoyer") ?>" /> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
|
|
<?php if((isset($msgErreur)) && ($msgErreur>" ")) : ?>
|
|
<INPUT style='font-size:14pt; color:red; text-align:center;' class="form-control" type="text" value="<?= $msgErreur ?>" readonly >
|
|
<?php endif; ?>
|
|
|
|
<input class="sr-only" type="text" id="idFactureGed" name="idFactureGed" value="<?= $_SESSION['idFacture_C']?>" >
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
<th width="20%" style='text-align:center'> Date </th>
|
|
<th style='text-align:center'> <?= _("Document GED") ?> </th>
|
|
<th width="10%" 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>
|
|
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|