Compare commits
No commits in common. "498e24e7edee0d194ce233d65371d6ca4e5b8aca" and "ea0fd3b1a2bee9c6e89f92c262549c688b546837" have entirely different histories.
498e24e7ed
...
ea0fd3b1a2
@ -7,20 +7,14 @@
|
|||||||
|
|
||||||
<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>
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
{{* barre de navigation *}}
|
{{* barre de navigation *}}
|
||||||
{{if ! $dialog}}
|
{{if ! $dialog}}
|
||||||
{{:include file="./_nav.html" current="index" subcurrent="mouvements" eqpmt=$equipment.designation category=$category.name}}
|
{{:include file="./_nav.html" current="mouvements"}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{* récupérer la config des entrées/sorties *}}
|
{{* récupérer la config des entrées/sorties *}}
|
||||||
@ -76,11 +76,8 @@
|
|||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
|
||||||
{{* lister tous les mouvements du matériel passé en paramètre *}}
|
{{* lister tous les mouvements du matériel passé en paramètre *}}
|
||||||
{{if $_GET.prop}}
|
<h2>Mouvements de {{$equipment.designation}} ({{$category.name}})</h2>
|
||||||
<h3>Matériel propriété de l'association</h3>
|
<h3>Matériel qui {{if $_GET.prop}}appartient{{else}}n'appartient pas{{/if}} à l'association</h3>
|
||||||
{{else}}
|
|
||||||
<h3>Matériel temporairement dans l'association</h3>
|
|
||||||
{{/if}}
|
|
||||||
|
|
||||||
{{#list
|
{{#list
|
||||||
type="movement"
|
type="movement"
|
||||||
|
169
inventaire.html
169
inventaire.html
@ -1,9 +1,9 @@
|
|||||||
{{* -*- brindille -*- *}}
|
{{* -*- brindille -*- *}}
|
||||||
|
|
||||||
{{*
|
{{*
|
||||||
inventaire des entrées/sorties des matériels permanents de l'association
|
inventaire des entrées/sorties des matériels permanants de l'association
|
||||||
paramètres
|
paramètres
|
||||||
- category_keys : catégories dont on veut faire l'inventaire
|
- category_keys
|
||||||
*}}
|
*}}
|
||||||
|
|
||||||
{{* Extraire et compiler les infos de la base *}}
|
{{* Extraire et compiler les infos de la base *}}
|
||||||
@ -22,91 +22,106 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
|
||||||
{{* Sélecteur catégories *}}
|
{{* TODO Sélecteur catégories *}}
|
||||||
<fieldset class="shortForm" style="width: 30%;">
|
<fieldset class="shortFormRight">
|
||||||
<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{{if $_GET.cat_key == null}} class="selected"{{/if}}><a href="?">Choisir une catégorie</a></li>
|
<li><a href=""><strong>Audiovisuel</strong></a></li>
|
||||||
{{#load type="category" assign="category"}}
|
<li><a href=""><strong>Informatique</strong></a></li>
|
||||||
<li {{if $_GET.cat_key == $key}}class="selected"{{/if}}>
|
<li><a href=""><strong>Mobilier</strong></a></li>
|
||||||
<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 propriété de l'association</h2>
|
<h2>Matériels dont l'association est propriétaire</h2>
|
||||||
{{#list
|
<fieldset>
|
||||||
select="
|
{{* itérer sur les catégories *}}
|
||||||
$$.date AS 'Date' ;
|
{{#foreach from=$cumul_mvt key="cat_key" item="cat_elem"}}
|
||||||
(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
|
|
||||||
}}
|
|
||||||
|
|
||||||
{{:assign var=cat_key from="equipments.%s.category"|args:$equipment}}
|
{{* vérifier s'il y a des matériels dans cette catégorie *}}
|
||||||
{{if $_GET.cat_key != null && $_GET.cat_key != $cat_key}}
|
{{:assign present=false}}
|
||||||
{{:continue}}
|
{{if $cat_elem|keys|has:"eqpmt"}}
|
||||||
{{/if}}
|
{{#foreach from=$cat_elem.eqpmt key="eqpmt_key" item="eqpmt"}}
|
||||||
|
{{if $eqpmt.stock !== null && $eqpmt.stock !== 0}}
|
||||||
|
{{:assign present=true}}
|
||||||
|
{{:break}}
|
||||||
|
{{/if}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{:assign var=cat_name from="cumul_mvt.%s.name"|args:$cat_key}}
|
{{if $present}}
|
||||||
{{:assign var=stock from="equipments.%s.stock"|args:$equipment}}
|
<h3>{{$cat_elem.name}}</h3>
|
||||||
{{:assign var=exterieur from="equipments.%s.exterieur"|args:$equipment}}
|
|
||||||
{{:assign dispo="%d-%d"|math:$stock:$exterieur}}
|
<table class="list">
|
||||||
{{*:debug stock=$stock exterieur=$exterieur dispo=$dispo*}}
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{$date|date_short}}</td>
|
<th>Désignation</th>
|
||||||
<td>{{$col2}}</td>
|
<th>Stock</th>
|
||||||
<td>{{$cat_name}}</td>
|
<th>Sortie</th>
|
||||||
<td>{{$stock}}</td>
|
<th>Disponible</th>
|
||||||
<td>{{if $exterieur == null}}0{{else}}{{$exterieur}}{{/if}}</td>
|
<th class="actions"></th>
|
||||||
<td>{{$dispo}}</td>
|
</tr>
|
||||||
<td class="actions">
|
</thead>
|
||||||
{{if $exterieur > 0}}
|
<tbody>
|
||||||
{{:linkbutton
|
|
||||||
label="Retour"
|
{{* itérer sur les matériels de la catégorie *}}
|
||||||
href="mouvements/entrees/retour.html?key=%s&prop=1"|args:$equipment
|
{{#foreach from=$cat_elem.eqpmt key="eqpmt_key" item="eqpmt"}}
|
||||||
shape="history"
|
{{:assign keys=$eqpmt|keys}}
|
||||||
target="_dialog"}}
|
{{if "stock"|in:$keys}} {{* && $eqpmt.stock !== 0}}*}}
|
||||||
{{/if}}
|
{{if "exterieur"|in:$keys}}
|
||||||
{{if $dispo > 0}}
|
{{:assign dispo="%d-%d"|math:$eqpmt.stock:$eqpmt.exterieur}}
|
||||||
{{:linkbutton
|
{{:assign exterieur=$eqpmt.exterieur}}
|
||||||
label="Sortie"
|
{{else}}
|
||||||
shape="plus"
|
{{:assign dispo=$eqpmt.stock}}
|
||||||
href="mouvements/sorties/stock_disponible.html?key=%s&prop=1"|args:$equipment
|
{{:assign exterieur=0}}
|
||||||
target="_dialog"}}
|
{{/if}}
|
||||||
{{/if}}
|
<tr>
|
||||||
{{:linkbutton
|
<td>{{$eqpmt.designation}}</td>
|
||||||
label="Entrée"
|
<td>{{$eqpmt.stock}}</td>
|
||||||
shape="plus"
|
<td>{{$exterieur}}</td>
|
||||||
href="mouvements/entrees/repertorie.html?key=%s&prop=1"|args:$equipment
|
<td>{{$dispo}}</td>
|
||||||
target="_dialog"}}
|
<td class="actions">
|
||||||
{{:linkbutton
|
{{if $exterieur > 0}}
|
||||||
label="Mouvements"
|
{{:linkbutton
|
||||||
href="%shistorique.html?key=%s&prop=1"|args:$module.url:$equipment
|
label="Retour"
|
||||||
shape="table"}}
|
href="mouvements/entrees/retour.html?key=%s&prop=1"|args:$eqpmt_key
|
||||||
{{:linkbutton
|
shape="history"
|
||||||
label="Modifier"
|
target="_dialog"}}
|
||||||
href="%smodifier_materiel.html?key=%s&prop=1"|args:$module.url:$equipment
|
{{/if}}
|
||||||
shape="edit"
|
{{if $dispo > 0}}
|
||||||
target="_dialog"}}
|
{{:linkbutton
|
||||||
</td>
|
label="Sortie"
|
||||||
</tr>
|
shape="plus"
|
||||||
{{/list}}
|
href="mouvements/sorties/stock_disponible.html?key=%s&prop=1"|args:$eqpmt_key
|
||||||
|
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}}
|
||||||
|
@ -27,82 +27,77 @@
|
|||||||
{{/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 temporairement dans l'association</h2>
|
<h2>Matériels dont l'association n'est pas propriétaire</h2>
|
||||||
|
|
||||||
{{#list
|
<fieldset>
|
||||||
select="
|
{{* itérer sur les catégories *}}
|
||||||
$$.date AS 'Date' ;
|
{{#foreach from=$cumul_mvt key="cat_key" item="cat_elem"}}
|
||||||
(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
|
|
||||||
}}
|
|
||||||
|
|
||||||
{{:assign var=cat_key from="equipments.%s.category"|args:$equipment}}
|
{{* vérifier s'il y a des matériels dans cette catégorie *}}
|
||||||
{{if $_GET.cat_key != null && $_GET.cat_key != $cat_key}}
|
{{:assign present=false}}
|
||||||
{{:continue}}
|
{{if $cat_elem|keys|has:"eqpmt"}}
|
||||||
{{/if}}
|
{{#foreach from=$cat_elem.eqpmt key="eqpmt_key" item="eqpmt"}}
|
||||||
|
{{if $eqpmt.nonproprio !== null && $eqpmt.nonproprio !== 0}}
|
||||||
|
{{:assign present=true}}
|
||||||
|
{{:break}}
|
||||||
|
{{/if}}
|
||||||
|
{{/foreach}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{:assign var=cat_name from="cumul_mvt.%s.name"|args:$cat_key}}
|
{{if $present}}
|
||||||
{{:assign var=qte from="equipments.%s.nonproprio"|args:$equipment}}
|
<h3>{{$cat_elem.name}}</h3>
|
||||||
|
|
||||||
{{if $qte == null}}
|
<table class="list">
|
||||||
{{:continue}}
|
<thead>
|
||||||
{{/if}}
|
<tr>
|
||||||
<tr>
|
<th>Désignation</th>
|
||||||
<td>{{$date|date_short}}</td>
|
<th>Quantité</th>
|
||||||
<td>{{$col2}}</td>
|
<th class="actions"></th>
|
||||||
<td>{{$cat_name}}</td>
|
</tr>
|
||||||
<td>{{$qte}}</td>
|
</thead>
|
||||||
<td class="actions">
|
<tbody>
|
||||||
{{if $qte > 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/sorties/emprunte.html?key=%s&prop=0"|args:$equipment
|
{{:assign keys=$eqpmt|keys}}
|
||||||
shape="history"
|
{{if "nonproprio"|in:$keys && $eqpmt.nonproprio !== 0}}
|
||||||
target="_dialog"}}
|
{{:assign dispo="%d-%d"|math:$eqpmt.stock:$eqpmt.exterieur}}
|
||||||
{{/if}}
|
<tr>
|
||||||
{{:linkbutton
|
<td>{{$eqpmt.designation}}</td>
|
||||||
label="Entrée"
|
<td>{{$eqpmt.nonproprio}}</td>
|
||||||
shape="plus"
|
<td class="actions">
|
||||||
href="mouvements/entrees/repertorie.html?key=%s&prop=0"|args:$equipment
|
{{if $eqpmt.nonproprio > 0}}
|
||||||
target="_dialog"}}
|
{{:linkbutton
|
||||||
{{:linkbutton
|
label="Retour"
|
||||||
label="Mouvements"
|
href="mouvements/sorties/emprunte.html?key=%s&prop=0"|args:$eqpmt_key
|
||||||
href="%shistorique.html?key=%s&prop=0"|args:$module.url:$equipment
|
shape="history"
|
||||||
shape="table"}}
|
target="_dialog"}}
|
||||||
{{:linkbutton
|
{{/if}}
|
||||||
label="Modifier"
|
{{:linkbutton
|
||||||
href="modifier_materiel.html?key=%s&prop=0"|args:$equipment
|
label="Entrée"
|
||||||
shape="edit"
|
shape="plus"
|
||||||
target="_dialog"}}
|
href="mouvements/entrees/repertorie.html?key=%s&prop=0"|args:$eqpmt_key
|
||||||
</td>
|
target="_dialog"}}
|
||||||
</tr>
|
{{:linkbutton
|
||||||
{{/list}}
|
label="Mouvements"
|
||||||
|
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}}
|
||||||
|
Loading…
Reference in New Issue
Block a user