2022-01-14 09:04:45 +01:00
|
|
|
{include file="admin/_head.tpl" title="%s"|args:$plugin.nom current="plugin_%s"|args:$plugin.id}
|
|
|
|
|
|
|
|
<h2>Liste des versements par activité et tarif</h2>
|
|
|
|
|
|
|
|
{* TODO : vérifier le détail de ce div *}
|
|
|
|
<div class="year-header noprint">
|
2022-01-14 18:59:18 +01:00
|
|
|
<button type="button" data-icon="↓" class="icn-btn" id="open_details">Déplier toutes les activités</button>
|
|
|
|
<button type="button" data-icon="↑" class="icn-btn" id="close_details">Replier toutes les activités</button>
|
2022-01-14 09:04:45 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<form method="post" action="action.php" class="memberList">
|
|
|
|
|
2022-01-25 20:18:00 +01:00
|
|
|
<fieldset class="versements" id="versements_global">
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
class="check_global"
|
|
|
|
id="check_global"
|
|
|
|
onclick="cocherDecocherTout(check_global)" />
|
|
|
|
<label for="check_global">Cliquer pour cocher toutes les lignes</label>
|
|
|
|
</fieldset>
|
|
|
|
|
2022-01-14 18:59:18 +01:00
|
|
|
{* Itération sur les activités *}
|
|
|
|
{foreach from=$listeParActiviteEtTarif item="activite"}
|
2022-01-14 09:04:45 +01:00
|
|
|
|
2022-01-14 18:59:18 +01:00
|
|
|
{* Itération sur les tarifs de l'activité *}
|
|
|
|
{foreach from=$activite->tarifs item="tarif"}
|
2022-01-14 09:04:45 +01:00
|
|
|
|
2022-01-14 18:59:18 +01:00
|
|
|
<details open="open">
|
2022-01-25 20:18:00 +01:00
|
|
|
<summary class="activite">
|
2022-01-14 18:59:18 +01:00
|
|
|
<h3>Activité « {$activite->label} »</h3>
|
|
|
|
{if !empty($activite->description)}
|
|
|
|
<h4>{$activite->description}</h4>
|
|
|
|
{/if}
|
|
|
|
<h4>tarif « {$tarif->titreTarif} », montant : {if $tarif->montantTarif > 0}{$tarif->montantTarif}
|
|
|
|
€{else}libre
|
|
|
|
{/if}
|
|
|
|
</h4>
|
|
|
|
</summary>
|
2022-01-14 09:04:45 +01:00
|
|
|
|
2022-01-14 18:59:18 +01:00
|
|
|
{*
|
|
|
|
Itération sur les versements d'un tarif d'une activité
|
|
|
|
présentation : une table pour les versements d'une personne
|
|
|
|
*}
|
|
|
|
<?php $currentUser = -1; $firstUser = true; ?>
|
|
|
|
{foreach from=$lesVersements key="rang" item="versement"}
|
|
|
|
{if $versement.idActivite == $activite->id &&
|
|
|
|
$versement.idTarif == $tarif->idTarif}
|
|
|
|
{if $versement.idUser != $currentUser}
|
|
|
|
{* changement de personne *}
|
|
|
|
{if $firstUser}
|
|
|
|
<?php $firstUser = false; ?>
|
|
|
|
{else}
|
|
|
|
{* fermer le tableau précédent *}
|
|
|
|
</fieldset>
|
|
|
|
{/if}
|
|
|
|
{* Afficher les infos de la personne *}
|
|
|
|
<?php $idVersements = $versement->idTarif."_".$versement->idUser; ?>
|
2022-01-25 20:18:00 +01:00
|
|
|
<h3 class="personne">Versements de {$versement.nom} : <span id="total_{$idVersements}">0,00 €</span></h3>
|
2022-01-14 18:59:18 +01:00
|
|
|
<fieldset class="versements" id="versements_{$idVersements}">
|
2022-01-15 19:17:18 +01:00
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
class="check_{$idVersements}"
|
|
|
|
id="check_{$idVersements}"
|
2022-01-14 20:26:00 +01:00
|
|
|
onclick="cocherDecocherPersonne(check_{$idVersements}, total_{$idVersements})" />
|
2022-01-25 20:18:00 +01:00
|
|
|
<label for="check_{$idVersements}">Cliquer pour cocher toutes les lignes</label>
|
2022-01-19 16:04:42 +01:00
|
|
|
<br />
|
2022-01-14 18:59:18 +01:00
|
|
|
<hr>
|
2022-01-19 16:04:42 +01:00
|
|
|
<?php $currentUser = $versement->idUser; ?>
|
2022-01-14 18:59:18 +01:00
|
|
|
{/if}
|
|
|
|
{* afficher les infos du versement de la personne*}
|
2022-01-15 19:17:18 +01:00
|
|
|
<div {if $rang%2==0}class="pair"{else}class="impair"{/if}>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
class="check_{$idVersements}"
|
2022-01-14 20:26:00 +01:00
|
|
|
id="check_{$idVersements}_{$rang}"
|
2022-01-15 19:17:18 +01:00
|
|
|
name="selected[]"
|
|
|
|
value={$rang}
|
2022-01-14 20:26:00 +01:00
|
|
|
onclick="cocherDecocherVersement(check_{$idVersements}_{$rang}, total_{$idVersements})" />
|
|
|
|
<label for=check_{$idVersements}_{$rang}></label>
|
2022-01-19 16:04:42 +01:00
|
|
|
<span class="montant">{$versement.versement}</span>
|
|
|
|
<span>{$versement.date|date_format:"%d/%m/%Y"}</span>
|
2022-01-15 19:17:18 +01:00
|
|
|
</div>
|
2022-01-14 18:59:18 +01:00
|
|
|
{/if}
|
|
|
|
{/foreach} {* Itération sur les versements *}
|
|
|
|
</fieldset>
|
|
|
|
</details>
|
|
|
|
{/foreach} {* Itération sur les tarifs de l'activité *}
|
|
|
|
{/foreach} {* Itération sur les activités *}
|
2022-01-19 16:04:42 +01:00
|
|
|
|
|
|
|
<input type="submit" value="Générer les reçus" onclick="return verifierChoix(this.form)">
|
2022-01-14 09:04:45 +01:00
|
|
|
</form>
|
|
|
|
|
2022-01-14 18:59:18 +01:00
|
|
|
{* scripts pour cases à cocher *}
|
|
|
|
<script src="script.js"></script>
|
|
|
|
|
2022-01-14 09:04:45 +01:00
|
|
|
{literal}
|
|
|
|
<script type="text/javascript">
|
2022-01-14 18:59:18 +01:00
|
|
|
// ouvrir/fermer les détails
|
|
|
|
document.querySelector('#open_details').onclick = () => {
|
|
|
|
document.querySelectorAll('details').forEach((e) => {
|
|
|
|
e.setAttribute('open', 'open');
|
|
|
|
});
|
|
|
|
};
|
|
|
|
document.querySelector('#close_details').onclick = () => {
|
|
|
|
document.querySelectorAll('details').forEach((e) => {
|
|
|
|
e.removeAttribute('open');
|
|
|
|
});
|
|
|
|
};
|
2022-01-14 09:04:45 +01:00
|
|
|
</script>
|
|
|
|
{/literal}
|
|
|
|
|
|
|
|
<!-- footer -->
|
2022-01-14 18:59:18 +01:00
|
|
|
{include file="admin/_foot.tpl"}
|