43 lines
2.4 KiB
PHP
43 lines
2.4 KiB
PHP
<?php
|
|
$this->titre = "INTER-SANTE - Consultation collège";
|
|
?>
|
|
|
|
<INPUT class="sr-only" TYPE="text" id="idPolice" name="idPolice" value="<?= $_SESSION['idPolice_C'] ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="numeroPolice" name="numeroPolice" value="<?= $_SESSION['numeroPolice_C'] ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="idCollegeTemp" name="idCollegeTemp" value="<?= $this->nettoyer($collegeTemp['idCollegeTemp']) ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="idCollege" name="idCollege" value="<?= $this->nettoyer($collegeTemp['idCollege']) ?>">
|
|
<INPUT class="sr-only" TYPE="text" id="rachatTm" name="rachatTm" value="<?= $this->nettoyer($collegeTemp['rachatTm']) ?>">
|
|
<input class="sr-only" id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="submit" value=<?= _("Enregistrer") ?> />
|
|
|
|
<button id="btn_pop" NAME="btn_pop" type="button" class="sr-only" data-bs-toggle="modal" data-bs-target="#poptableauprestation"> <?= _("Tickets Modérateurs...") ?> </button>
|
|
|
|
<button id="btn_pop_lib_college" NAME="btn_pop_lib_college" type="button" class="sr-only" data-bs-toggle="modal" data-bs-target="#popmajlibellecollege"> <?= _("Modifier Libellé Collège") ?> </button>
|
|
|
|
<div class="container-fluid animate__fadeIn">
|
|
<fieldset class="card mb-3">
|
|
<div class="card-header">
|
|
<h5 class="mb-0"><?= _("Consultation Collège") ?></h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="row g-3">
|
|
<div class="col-md-4">
|
|
<label for="codeProduit" class="form-label"><?= _("Catégorie") ?></label>
|
|
<select class="form-control" id="codeProduit" name="codeProduit" readonly>
|
|
<?php liste_options($produit, $this->nettoyer($collegeTemp['codeProduit'])); ?>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<label for="libelleCollege" class="form-label"><?= _("Collège") ?></label>
|
|
<input type="text" class="form-control" id="libelleCollege" name="libelleCollege"
|
|
value="<?= $collegeTemp['libelleCollege'] ?>" readonly>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<label for="rachatTm" class="form-label"><?= _("Rachat TM") ?></label>
|
|
<select class="form-control" id="rachatTm" name="rachatTm" readonly>
|
|
<?php liste_options($rachattm, $collegeTemp['rachatTm'], true); ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</div>
|