2024-11-14 16:21:10 +01:00
|
|
|
{{* -*- brindille -*- *}}
|
|
|
|
|
|
|
|
{{*
|
|
|
|
inventaire des entrées/sorties des matériels temporaires
|
|
|
|
paramètres
|
|
|
|
- category_keys : catégories dont on veut faire l'inventaire
|
|
|
|
*}}
|
|
|
|
|
|
|
|
{{* Extraire et compiler les infos de la base *}}
|
|
|
|
{{:include file="./_calcul_dispo.html" keep="cumul_mvt,category_keys,equipments"}}
|
|
|
|
|
2024-11-16 10:26:48 +01:00
|
|
|
{{* Vérifier s'il y a au moins un matériel non propriété de l'asso *}}
|
|
|
|
{{:assign mat_non_prop=false}}
|
|
|
|
{{#foreach from=$equipments key=key item=eqpmt}}
|
|
|
|
{{if $eqpmt|has_key:"nonproprio"}}
|
|
|
|
{{:assign mat_non_prop=true}}
|
|
|
|
{{:break}}
|
|
|
|
{{/if}}
|
|
|
|
{{/foreach}}
|
|
|
|
|
|
|
|
{{if $mat_non_prop}}
|
2024-11-14 16:21:10 +01:00
|
|
|
|
2024-11-16 10:26:48 +01:00
|
|
|
{{* Sélecteur catégories *}}
|
2024-11-15 20:40:35 +01:00
|
|
|
<fieldset class="shortForm" style="width: 30%;">
|
|
|
|
<legend>Filtrer par catégorie</legend>
|
|
|
|
<nav class="dropdown">
|
|
|
|
<ul>
|
|
|
|
<li><a></a></li>
|
2024-11-18 12:22:23 +01:00
|
|
|
<li{{if $_GET.cat_key == null}} class="selected"{{/if}}><a href="?prop=0">Toutes les catégories</a></li>
|
|
|
|
{{#load type="category" assign="category" order="$$.name"}}
|
2024-11-15 20:40:35 +01:00
|
|
|
<li {{if $_GET.cat_key == $key}}class="selected"{{/if}}>
|
2024-11-18 12:22:23 +01:00
|
|
|
<a href="?cat_key={{$key}}&prop=0">
|
2024-11-15 20:40:35 +01:00
|
|
|
<strong>{{$category.name}}</strong>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{/load}}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</fieldset>
|
2024-11-14 16:21:10 +01:00
|
|
|
|
2024-11-16 10:26:48 +01:00
|
|
|
<h2>Matériels temporairement dans l'association</h2>
|
2024-11-14 16:21:10 +01:00
|
|
|
|
2024-11-16 10:26:48 +01:00
|
|
|
{{#list
|
|
|
|
select="
|
|
|
|
$$.date AS 'Date' ;
|
|
|
|
(SELECT $$.designation
|
|
|
|
FROM @TABLE AS b
|
|
|
|
WHERE b.key = @TABLE.$$.equipment) AS 'Matériel' ;
|
|
|
|
"" as 'Catégorie' ;
|
|
|
|
"" AS 'Quantité'
|
|
|
|
"
|
|
|
|
type="movement"
|
|
|
|
group="$$.equipment"
|
|
|
|
direction="input"
|
|
|
|
order=2
|
|
|
|
}}
|
2024-11-14 16:21:10 +01:00
|
|
|
|
2024-11-16 10:26:48 +01:00
|
|
|
{{:assign var=cat_key from="equipments.%s.category"|args:$equipment}}
|
|
|
|
{{if $_GET.cat_key != null && $_GET.cat_key != $cat_key}}
|
|
|
|
{{:continue}}
|
|
|
|
{{/if}}
|
2024-11-14 16:21:10 +01:00
|
|
|
|
2024-11-16 10:26:48 +01:00
|
|
|
{{:assign var=cat_name from="cumul_mvt.%s.name"|args:$cat_key}}
|
|
|
|
{{:assign var=qte from="equipments.%s.nonproprio"|args:$equipment}}
|
2024-11-14 16:21:10 +01:00
|
|
|
|
2024-11-16 10:26:48 +01:00
|
|
|
{{if $qte == null}}
|
|
|
|
{{:continue}}
|
|
|
|
{{/if}}
|
|
|
|
<tr>
|
|
|
|
<td>{{$date|date_short}}</td>
|
|
|
|
<td>{{$col2}}</td>
|
|
|
|
<td>{{$cat_name}}</td>
|
|
|
|
<td>{{$qte}}</td>
|
|
|
|
<td class="actions">
|
|
|
|
{{if $qte > 0}}
|
2024-11-15 20:40:35 +01:00
|
|
|
{{:linkbutton
|
2024-11-16 10:26:48 +01:00
|
|
|
label="Retour"
|
|
|
|
href="mouvements/sorties/emprunte.html?key=%s&prop=0"|args:$equipment
|
|
|
|
shape="history"
|
|
|
|
target="_dialog"}}
|
|
|
|
{{/if}}
|
|
|
|
{{:linkbutton
|
|
|
|
label="Entrée"
|
|
|
|
shape="plus"
|
|
|
|
href="mouvements/entrees/repertorie.html?key=%s&prop=0"|args:$equipment
|
|
|
|
target="_dialog"}}
|
|
|
|
{{:linkbutton
|
|
|
|
label="Mouvements"
|
|
|
|
href="%shistorique.html?key=%s&prop=0"|args:$module.url:$equipment
|
|
|
|
shape="table"}}
|
|
|
|
{{:linkbutton
|
|
|
|
label="Modifier"
|
|
|
|
href="modifier_materiel.html?key=%s&prop=0"|args:$equipment
|
|
|
|
shape="edit"
|
|
|
|
target="_dialog"}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{/list}}
|
|
|
|
{{else}}
|
|
|
|
<p class="block alert">Aucun matériel.</p>
|
2024-11-14 16:21:10 +01:00
|
|
|
{{/if}}
|