109 lines
2.7 KiB
HTML
109 lines
2.7 KiB
HTML
{{* -*- brindille -*- *}}
|
|
|
|
{{*
|
|
inventaire des entrées/sorties des matériels permanents
|
|
*}}
|
|
|
|
{{* Extraire et compiler les infos de la base *}}
|
|
{{:include file="./_calcul_dispo.html" keep="categories,equipments"}}
|
|
|
|
{{* Sélecteur catégories *}}
|
|
<fieldset class="shortForm" style="width: 30%;">
|
|
<legend>Filtrer par catégorie</legend>
|
|
<nav class="dropdown">
|
|
<ul>
|
|
<li><a></a></li>
|
|
<li{{if $_GET.cat_key == null}} class="selected"{{/if}}><a href="?prop=1">Toutes les catégories</a></li>
|
|
{{#foreach from=$categories key=key item=name}}
|
|
<li {{if $_GET.cat_key == $key}}class="selected"{{/if}}>
|
|
<a href="?cat_key={{$key}}&prop=1">
|
|
<strong>{{$name}}</strong>
|
|
</a>
|
|
</li>
|
|
{{/foreach}}
|
|
</ul>
|
|
</nav>
|
|
</fieldset>
|
|
|
|
{{* Vérifier s'il y a au moins un matériel propriété de l'asso *}}
|
|
{{:assign mat_present=false}}
|
|
{{#foreach from=$equipments key=key item=eqpmt}}
|
|
{{if $eqpmt|has_key:"stock"}}
|
|
{{:assign mat_present=true}}
|
|
{{:break}}
|
|
{{/if}}
|
|
{{/foreach}}
|
|
|
|
{{if $mat_present}}
|
|
|
|
<h2>Matériels propriété de l'association</h2>
|
|
|
|
{{#list
|
|
select="
|
|
$$.designation AS 'Matériel' ;
|
|
"" AS 'Catégorie' ;
|
|
"" AS 'Stock' ;
|
|
"" AS 'Sorti' ;
|
|
"" AS 'Dispo'
|
|
"
|
|
type="equipment"
|
|
order=1
|
|
}}
|
|
{{:assign var=eqpmt_key value=$key}}
|
|
{{:assign var=cat_key value=$category}}
|
|
{{:assign var=cat_name from=categories.%s|args:$cat_key}}
|
|
|
|
{{if $_GET.cat_key != null && $_GET.cat_key != $cat_key}}
|
|
{{:continue}}
|
|
{{/if}}
|
|
|
|
{{:assign var=stock from="equipments.%s.stock"|args:$eqpmt_key}}
|
|
{{:assign var=exterieur from="equipments.%s.exterieur"|args:$eqpmt_key}}
|
|
{{:assign dispo="%d-%d"|math:$stock:$exterieur}}
|
|
|
|
{{if $stock == null}}
|
|
{{:continue}}
|
|
{{/if}}
|
|
|
|
<tr>
|
|
<td>{{$designation}}</td>
|
|
<td>{{$cat_name}}</td>
|
|
<td>{{$stock}}</td>
|
|
<td>{{if $exterieur == null}}0{{else}}{{$exterieur}}{{/if}}</td>
|
|
<td>{{$dispo}}</td>
|
|
<td class="actions">
|
|
{{if $exterieur > 0}}
|
|
{{:linkbutton
|
|
label="Retour"
|
|
href="mouvements/entrees/retour.html?key=%s"|args:$eqpmt_key
|
|
shape="history"
|
|
target="_dialog"}}
|
|
{{/if}}
|
|
{{if $dispo > 0}}
|
|
{{:linkbutton
|
|
label="Sortie"
|
|
shape="plus"
|
|
href="mouvements/sorties/stock_disponible.html?key=%s"|args:$eqpmt_key
|
|
target="_dialog"}}
|
|
{{/if}}
|
|
{{:linkbutton
|
|
label="Entrée"
|
|
shape="plus"
|
|
href="mouvements/entrees/repertorie.html?key=%s"|args:$eqpmt_key
|
|
target="_dialog"}}
|
|
{{:linkbutton
|
|
label="Mouvements"
|
|
href="historique.html?key=%s&prop=1"|args:$eqpmt_key
|
|
shape="table"}}
|
|
{{:linkbutton
|
|
label="Modifier"
|
|
href="modifier_materiel.html?key=%s&prop=1"|args:$eqpmt_key
|
|
shape="edit"
|
|
target="_dialog"}}
|
|
</td>
|
|
</tr>
|
|
{{/list}}
|
|
{{else}}
|
|
<p class="block alert">Aucun matériel.</p>
|
|
{{/if}}
|