Compare commits

...

3 Commits

4 changed files with 162 additions and 163 deletions

View File

@ -7,14 +7,20 @@
<ul> <ul>
<li {{if $current == 'index'}} class="current"{{/if}}><a href="{{$module.url}}index.html">Inventaire</a></li> <li {{if $current == 'index'}} class="current"{{/if}}><a href="{{$module.url}}index.html">Inventaire</a></li>
{{if $current == 'mouvements'}}<li class="current"><a>Mouvements</a></li>{{/if}}
<li {{if $current == 'config'}} class="current"{{/if}}><a href="{{$module.url}}categories/index.html">Configuration</a></li> <li {{if $current == 'config'}} class="current"{{/if}}><a href="{{$module.url}}categories/index.html">Configuration</a></li>
</ul> </ul>
{{if $current == 'index'}} {{if $current == 'index'}}
<ul class="sub"> <ul class="sub">
<li {{if $subcurrent == 'proprio'}} class="current"{{/if}}><a href="{{$module.url}}index.html">Matériel permanent</a></li> <li {{if $subcurrent == 'proprio'}} class="current"{{/if}}><a href="{{$module.url}}index.html">Matériel permanent</a></li>
<li {{if $subcurrent == 'nonproprio'}} class="current"{{/if}}><a href="{{$module.url}}inventaire_nonprop.html">Matériel temporaire</a></li> <li {{if $subcurrent == 'nonproprio'}} class="current"{{/if}}><a href="{{$module.url}}inventaire_nonprop.html">Matériel temporaire</a></li>
</ul> </ul>
{{if $subcurrent == 'mouvements'}}
<ul class="sub">
<li class="title"><strong>{{$eqpmt}} ({{$category}})</strong></li>
<li class="current"><a>Mouvements</a></li>
</ul>
{{/if}}
{{elseif $current == 'config'}} {{elseif $current == 'config'}}
<ul class="sub" > <ul class="sub" >
<li {{if $subcurrent == 'categories'}} class="current"{{/if}}><a href="{{$module.url}}categories/index.html">Catégories</a></li> <li {{if $subcurrent == 'categories'}} class="current"{{/if}}><a href="{{$module.url}}categories/index.html">Catégories</a></li>

View File

@ -40,7 +40,7 @@
{{* barre de navigation *}} {{* barre de navigation *}}
{{if ! $dialog}} {{if ! $dialog}}
{{:include file="./_nav.html" current="mouvements"}} {{:include file="./_nav.html" current="index" subcurrent="mouvements" eqpmt=$equipment.designation category=$category.name}}
{{/if}} {{/if}}
{{* récupérer la config des entrées/sorties *}} {{* récupérer la config des entrées/sorties *}}
@ -76,8 +76,11 @@
{{/foreach}} {{/foreach}}
{{* lister tous les mouvements du matériel passé en paramètre *}} {{* lister tous les mouvements du matériel passé en paramètre *}}
<h2>Mouvements de {{$equipment.designation}} ({{$category.name}})</h2> {{if $_GET.prop}}
<h3>Matériel qui {{if $_GET.prop}}appartient{{else}}n'appartient pas{{/if}} à l'association</h3> <h3>Matériel propriété de l'association</h3>
{{else}}
<h3>Matériel temporairement dans l'association</h3>
{{/if}}
{{#list {{#list
type="movement" type="movement"

View File

@ -1,9 +1,9 @@
{{* -*- brindille -*- *}} {{* -*- brindille -*- *}}
{{* {{*
inventaire des entrées/sorties des matériels permanants de l'association inventaire des entrées/sorties des matériels permanents de l'association
paramètres paramètres
- category_keys - category_keys : catégories dont on veut faire l'inventaire
*}} *}}
{{* Extraire et compiler les infos de la base *}} {{* Extraire et compiler les infos de la base *}}
@ -22,106 +22,91 @@
{{/if}} {{/if}}
{{/foreach}} {{/foreach}}
{{* TODO Sélecteur catégories *}} {{* 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}}
{{if $eqpmt.stock !== null && $eqpmt.stock !== 0}}
{{:assign present=true}}
{{:break}}
{{/if}}
{{/foreach}}
{{/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> <td>{{$dispo}}</td>
</thead> <td class="actions">
<tbody> {{if $exterieur > 0}}
{{:linkbutton
{{* itérer sur les matériels de la catégorie *}} label="Retour"
{{#foreach from=$cat_elem.eqpmt key="eqpmt_key" item="eqpmt"}} href="mouvements/entrees/retour.html?key=%s&prop=1"|args:$equipment
{{:assign keys=$eqpmt|keys}} shape="history"
{{if "stock"|in:$keys}} {{* && $eqpmt.stock !== 0}}*}} target="_dialog"}}
{{if "exterieur"|in:$keys}} {{/if}}
{{:assign dispo="%d-%d"|math:$eqpmt.stock:$eqpmt.exterieur}} {{if $dispo > 0}}
{{:assign exterieur=$eqpmt.exterieur}} {{:linkbutton
{{else}} label="Sortie"
{{:assign dispo=$eqpmt.stock}} shape="plus"
{{:assign exterieur=0}} href="mouvements/sorties/stock_disponible.html?key=%s&prop=1"|args:$equipment
{{/if}} target="_dialog"}}
<tr> {{/if}}
<td>{{$eqpmt.designation}}</td> {{:linkbutton
<td>{{$eqpmt.stock}}</td> label="Entrée"
<td>{{$exterieur}}</td> shape="plus"
<td>{{$dispo}}</td> href="mouvements/entrees/repertorie.html?key=%s&prop=1"|args:$equipment
<td class="actions"> target="_dialog"}}
{{if $exterieur > 0}} {{:linkbutton
{{:linkbutton label="Mouvements"
label="Retour" href="%shistorique.html?key=%s&prop=1"|args:$module.url:$equipment
href="mouvements/entrees/retour.html?key=%s&prop=1"|args:$eqpmt_key shape="table"}}
shape="history" {{:linkbutton
target="_dialog"}} label="Modifier"
{{/if}} href="%smodifier_materiel.html?key=%s&prop=1"|args:$module.url:$equipment
{{if $dispo > 0}} shape="edit"
{{:linkbutton target="_dialog"}}
label="Sortie" </td>
shape="plus" </tr>
href="mouvements/sorties/stock_disponible.html?key=%s&prop=1"|args:$eqpmt_key {{/list}}
target="_dialog"}}
{{/if}}
{{:linkbutton
label="Entrée"
shape="plus"
href="mouvements/entrees/repertorie.html?key=%s&prop=1"|args:$eqpmt_key
target="_dialog"}}
{{:linkbutton
label="Mouvements"
href="%shistorique.html?key=%s&prop=1"|args:$module.url:$eqpmt_key
shape="table"}}
{{:linkbutton
label="Modifier"
href="%smodifier_materiel.html?key=%s&prop=1"|args:$module.url:$eqpmt_key
shape="edit"
target="_dialog"}}
</td>
</tr>
{{/if}}
{{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}}

View File

@ -27,77 +27,82 @@
{{/if}} {{/if}}
{{/foreach}} {{/foreach}}
{{* TODO 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="?">Choisir une catégorie</a></li>
{{#load type="category" assign="category"}}
<li {{if $_GET.cat_key == $key}}class="selected"{{/if}}>
<a href="?cat_key={{$key}}">
<strong>{{$category.name}}</strong>
</a>
</li>
{{/load}}
</ul>
</nav>
</fieldset>
{{if $mat_non_prop}} {{if $mat_non_prop}}
<h2>Matériels dont l'association n'est pas propriétaire</h2> <h2>Matériels temporairement dans 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 'Quantité'
"
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}}
{{if $eqpmt.nonproprio !== null && $eqpmt.nonproprio !== 0}}
{{:assign present=true}}
{{:break}}
{{/if}}
{{/foreach}}
{{/if}}
{{if $present}} {{:assign var=cat_name from="cumul_mvt.%s.name"|args:$cat_key}}
<h3>{{$cat_elem.name}}</h3> {{:assign var=qte from="equipments.%s.nonproprio"|args:$equipment}}
<table class="list"> {{if $qte == null}}
<thead> {{:continue}}
<tr> {{/if}}
<th>Désignation</th> <tr>
<th>Quantité</th> <td>{{$date|date_short}}</td>
<th class="actions"></th> <td>{{$col2}}</td>
</tr> <td>{{$cat_name}}</td>
</thead> <td>{{$qte}}</td>
<tbody> <td class="actions">
{{if $qte > 0}}
{{* itérer sur les matériels de la catégorie *}} {{:linkbutton
{{#foreach from=$cat_elem.eqpmt key="eqpmt_key" item="eqpmt"}} label="Retour"
{{:assign keys=$eqpmt|keys}} href="mouvements/sorties/emprunte.html?key=%s&prop=0"|args:$equipment
{{if "nonproprio"|in:$keys && $eqpmt.nonproprio !== 0}} shape="history"
{{:assign dispo="%d-%d"|math:$eqpmt.stock:$eqpmt.exterieur}} target="_dialog"}}
<tr> {{/if}}
<td>{{$eqpmt.designation}}</td> {{:linkbutton
<td>{{$eqpmt.nonproprio}}</td> label="Entrée"
<td class="actions"> shape="plus"
{{if $eqpmt.nonproprio > 0}} href="mouvements/entrees/repertorie.html?key=%s&prop=0"|args:$equipment
{{:linkbutton target="_dialog"}}
label="Retour" {{:linkbutton
href="mouvements/sorties/emprunte.html?key=%s&prop=0"|args:$eqpmt_key label="Mouvements"
shape="history" href="%shistorique.html?key=%s&prop=0"|args:$module.url:$equipment
target="_dialog"}} shape="table"}}
{{/if}} {{:linkbutton
{{:linkbutton label="Modifier"
label="Entrée" href="modifier_materiel.html?key=%s&prop=0"|args:$equipment
shape="plus" shape="edit"
href="mouvements/entrees/repertorie.html?key=%s&prop=0"|args:$eqpmt_key target="_dialog"}}
target="_dialog"}} </td>
{{:linkbutton </tr>
label="Mouvements" {{/list}}
href="%shistorique.html?key=%s&prop=0"|args:$module.url:$eqpmt_key
shape="table"}}
{{:linkbutton
label="Modifier"
href="modifier_materiel.html?key=%s&prop=0"|args:$eqpmt_key
shape="edit"
target="_dialog"}}
</td>
</tr>
{{/if}}
{{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}}