Filtrage inventaire par catégorie

This commit is contained in:
Jean-Christophe Engel 2024-11-15 20:26:29 +01:00
parent ea0fd3b1a2
commit 8305433f5b

View File

@ -23,71 +23,64 @@
{{/foreach}} {{/foreach}}
{{* TODO Sélecteur catégories *}} {{* TODO Sélecteur catégories *}}
<fieldset class="shortFormRight"> <fieldset class="shortForm" style="width: 30%;">
<legend>Filtrer par catégorie</legend> <legend>Filtrer par catégorie</legend>
<nav class="dropdown"> <nav class="dropdown">
<ul> <ul>
<li><a></a></li> <li><a></a></li>
<li><a href=""><strong>Audiovisuel</strong></a></li> <li{{if $_GET.cat_key == null}} class="selected"{{/if}}><a href="?">Choisir une catégorie</a></li>
<li><a href=""><strong>Informatique</strong></a></li> {{#load type="category" assign="category"}}
<li><a href=""><strong>Mobilier</strong></a></li> <li {{if $_GET.cat_key == $key}}class="selected"{{/if}}>
<a href="?cat_key={{$key}}">
<strong>{{$category.name}}</strong>
</a>
</li>
{{/load}}
</ul> </ul>
</nav> </nav>
</fieldset> </fieldset>
{{if $mat_prop}} {{if $mat_prop}}
<h2>Matériels dont l'association est propriétaire</h2> <h2>Matériels propriété de l'association</h2>
<fieldset> {{#list
{{* itérer sur les catégories *}} select="
{{#foreach from=$cumul_mvt key="cat_key" item="cat_elem"}} $$.date AS 'Date' ;
(SELECT $$.designation
FROM @TABLE AS b
WHERE b.key = @TABLE.$$.equipment) AS 'Matériel' ;
"" as 'Catégorie' ;
"" AS 'Stock' ;
"" AS 'Sortie' ;
"" AS 'Dispo'
"
type="movement"
group="$$.equipment"
direction="input"
order=2
}}
{{* vérifier s'il y a des matériels dans cette catégorie *}} {{:assign var=cat_key from="equipments.%s.category"|args:$equipment}}
{{:assign present=false}} {{if $_GET.cat_key != null && $_GET.cat_key != $cat_key}}
{{if $cat_elem|keys|has:"eqpmt"}} {{:continue}}
{{#foreach from=$cat_elem.eqpmt key="eqpmt_key" item="eqpmt"}}
{{if $eqpmt.stock !== null && $eqpmt.stock !== 0}}
{{:assign present=true}}
{{:break}}
{{/if}}
{{/foreach}}
{{/if}} {{/if}}
{{if $present}} {{:assign var=cat_name from="cumul_mvt.%s.name"|args:$cat_key}}
<h3>{{$cat_elem.name}}</h3> {{:assign var=stock from="equipments.%s.stock"|args:$equipment}}
{{:assign var=exterieur from="equipments.%s.exterieur"|args:$equipment}}
<table class="list"> {{:assign dispo="%d-%d"|math:$stock:$exterieur}}
<thead> {{*:debug stock=$stock exterieur=$exterieur dispo=$dispo*}}
<tr> <tr>
<th>Désignation</th> <td>{{$date|date_short}}</td>
<th>Stock</th> <td>{{$col2}}</td>
<th>Sortie</th> <td>{{$cat_name}}</td>
<th>Disponible</th> <td>{{$stock}}</td>
<th class="actions"></th> <td>{{if $exterieur == null}}0{{else}}{{$exterieur}}{{/if}}</td>
</tr>
</thead>
<tbody>
{{* itérer sur les matériels de la catégorie *}}
{{#foreach from=$cat_elem.eqpmt key="eqpmt_key" item="eqpmt"}}
{{:assign keys=$eqpmt|keys}}
{{if "stock"|in:$keys}} {{* && $eqpmt.stock !== 0}}*}}
{{if "exterieur"|in:$keys}}
{{:assign dispo="%d-%d"|math:$eqpmt.stock:$eqpmt.exterieur}}
{{:assign exterieur=$eqpmt.exterieur}}
{{else}}
{{:assign dispo=$eqpmt.stock}}
{{:assign exterieur=0}}
{{/if}}
<tr>
<td>{{$eqpmt.designation}}</td>
<td>{{$eqpmt.stock}}</td>
<td>{{$exterieur}}</td>
<td>{{$dispo}}</td> <td>{{$dispo}}</td>
<td class="actions"> <td class="actions">
{{if $exterieur > 0}} {{if $exterieur > 0}}
{{:linkbutton {{:linkbutton
label="Retour" label="Retour"
href="mouvements/entrees/retour.html?key=%s&prop=1"|args:$eqpmt_key href="mouvements/entrees/retour.html?key=%s&prop=1"|args:$equipment
shape="history" shape="history"
target="_dialog"}} target="_dialog"}}
{{/if}} {{/if}}
@ -95,33 +88,26 @@
{{:linkbutton {{:linkbutton
label="Sortie" label="Sortie"
shape="plus" shape="plus"
href="mouvements/sorties/stock_disponible.html?key=%s&prop=1"|args:$eqpmt_key href="mouvements/sorties/stock_disponible.html?key=%s&prop=1"|args:$equipment
target="_dialog"}} target="_dialog"}}
{{/if}} {{/if}}
{{:linkbutton {{:linkbutton
label="Entrée" label="Entrée"
shape="plus" shape="plus"
href="mouvements/entrees/repertorie.html?key=%s&prop=1"|args:$eqpmt_key href="mouvements/entrees/repertorie.html?key=%s&prop=1"|args:$equipment
target="_dialog"}} target="_dialog"}}
{{:linkbutton {{:linkbutton
label="Mouvements" label="Mouvements"
href="%shistorique.html?key=%s&prop=1"|args:$module.url:$eqpmt_key href="%shistorique.html?key=%s&prop=1"|args:$module.url:$equipment
shape="table"}} shape="table"}}
{{:linkbutton {{:linkbutton
label="Modifier" label="Modifier"
href="%smodifier_materiel.html?key=%s&prop=1"|args:$module.url:$eqpmt_key href="%smodifier_materiel.html?key=%s&prop=1"|args:$module.url:$equipment
shape="edit" shape="edit"
target="_dialog"}} target="_dialog"}}
</td> </td>
</tr> </tr>
{{/if}} {{/list}}
{{else}}
<p class="block alert">Il n'y a aucun matériel dans cette catégorie.</p>
{{/foreach}}
</tbody>
</table>
{{/if}}
{{/foreach}}
</fieldset>
{{/if}} {{/if}}
{{/if}} {{/if}}