inventaire : ajout présence matériel propriété ou non
This commit is contained in:
parent
c2844a17bf
commit
cdb7b83325
|
@ -6,16 +6,28 @@
|
|||
{{:include file="./_calcul_dispo.html" keep="cumul_mvt,category_keys,equipments"}}
|
||||
|
||||
{{* Afficher les résultats *}}
|
||||
|
||||
{{if $equipments === null}}
|
||||
<p class="block alert">Aucun matériel.</p>
|
||||
{{else}}
|
||||
{{* Vérifier s'il y a au moins un matériel propriété ou non de l'asso *}}
|
||||
{{:assign mat_prop=false}}
|
||||
{{:assign mat_non_prop=false}}
|
||||
{{#foreach from=$equipments key=key item=eqpmt}}
|
||||
{{if $eqpmt|has_key:"stock"}}
|
||||
{{:assign mat_prop=true}}
|
||||
{{/if}}
|
||||
{{if $eqpmt|has_key:"nonproprio"}}
|
||||
{{:assign mat_non_prop=true}}
|
||||
{{/if}}
|
||||
{{/foreach}}
|
||||
|
||||
{{if $mat_prop}}
|
||||
<details class="inventaire" open="open">
|
||||
<summary>
|
||||
<h2>Matériels dont l'association est propriétaire</h2>
|
||||
</summary>
|
||||
<fieldset>
|
||||
|
||||
<fieldset>
|
||||
{{* itérer sur les catégories *}}
|
||||
{{#foreach from=$cumul_mvt key="cat_key" item="cat_elem"}}
|
||||
|
||||
|
@ -89,13 +101,15 @@
|
|||
{{/foreach}}
|
||||
</fieldset>
|
||||
</details>
|
||||
{{/if}}
|
||||
|
||||
{{if $mat_non_prop}}
|
||||
<details class="inventaire" open="open">
|
||||
<summary>
|
||||
<h2>Matériels dont l'association n'est pas propriétaire</h2>
|
||||
</summary>
|
||||
<fieldset>
|
||||
|
||||
<fieldset>
|
||||
{{* itérer sur les catégories *}}
|
||||
{{#foreach from=$cumul_mvt key="cat_key" item="cat_elem"}}
|
||||
|
||||
|
@ -161,3 +175,4 @@
|
|||
</fieldset>
|
||||
</details>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
|
Loading…
Reference in New Issue