You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
2.6 KiB
44 lines
2.6 KiB
refaa misy produit lany = notification,
|
|
refa misy commande vaovao = notification,
|
|
refa misy recourvement = notification,
|
|
refa misy commande tsy vo payer de misy notification apres 15j
|
|
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<label for="yearFilter">Points de ventes</label>
|
|
<select id="storeFilter" class="form-control">
|
|
<option value="TOUS">TOUS</option>
|
|
<?php
|
|
foreach ($stores as $key => $value) { ?>
|
|
<option value="<?= $value['id'] ?>"><?= $value['name'] ?></option>
|
|
<?php }
|
|
|
|
?>
|
|
<!-- <script>
|
|
let year = new Date().getFullYear();
|
|
for (let i = year; i >= year - 10; i--) {
|
|
document.write(`<option value="${i}">${i}</option>`);
|
|
}
|
|
</script> -->
|
|
</select>
|
|
</div>
|
|
<!-- <div class="col-md-3">
|
|
<label for="monthFilter">Mois</label>
|
|
<select id="monthFilter" class="form-control">
|
|
<option value="">Sélectionner</option>
|
|
<script>
|
|
const months = ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"];
|
|
months.forEach((month, index) => {
|
|
document.write(`<option value="${index + 1}">${month}</option>`);
|
|
});
|
|
</script>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<label for="weekFilter">Semaine</label>
|
|
<input type="week" id="weekFilter" class="form-control">
|
|
</div> -->
|
|
<div class="col-md-3 d-flex align-items-end">
|
|
<button id="filterBtn" class="btn btn-primary btn-sm">Filtrer</button>
|
|
</div>
|
|
</div>
|