2023-10-30 17:45:56 +01:00
|
|
|
{{:assign equipment_key=$_GET.key|trim}}
|
|
|
|
{{#load key=$_GET.key assign="equipment"}}
|
|
|
|
{{else}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{:error message="Pas de matériel avec la clé %s"|args:$equipment_key}}
|
2023-10-30 17:45:56 +01:00
|
|
|
{{/load}}
|
|
|
|
|
|
|
|
{{#load type="category" where="key = :cle" :cle=$equipment.category assign="category"}}
|
|
|
|
{{else}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{:error message="Le matériel %s n'appartient à aucune catégorie"|args:$equipment.designation}}
|
2023-10-30 17:45:56 +01:00
|
|
|
{{/load}}
|
2023-12-07 11:34:04 +01:00
|
|
|
{{:admin_header title="Historique des mouvements de %s (%s)"|args:$equipment.designation:$category.name current="module_equipment"}}
|
2023-10-30 17:45:56 +01:00
|
|
|
|
2024-10-18 17:15:56 +02:00
|
|
|
{{* récupérer la config des entrées/sorties *}}
|
|
|
|
{{:include file="./_get_config.html" keep="config"}}
|
|
|
|
|
|
|
|
{{* déterminer les type de mouvements selon l'affection du matériel *}}
|
|
|
|
{{#foreach from=$config.input_nature key=mvt item=type_mvt}}
|
|
|
|
{{if $_GET.prop}}
|
|
|
|
{{* matériel propriété de l'asso *}}
|
|
|
|
{{if $type_mvt != 'temporaire'}}
|
|
|
|
{{:assign var="input_types." value=$mvt}}
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
{{* matériel non propriété de l'asso *}}
|
|
|
|
{{if $type_mvt == 'temporaire'}}
|
|
|
|
{{:assign var="input_types." value=$mvt}}
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{/foreach}}
|
|
|
|
{{#foreach from=$config.output_nature key=mvt item=type_mvt}}
|
|
|
|
{{if $_GET.prop}}
|
|
|
|
{{* matériel propriété de l'asso *}}
|
|
|
|
{{if $type_mvt != 'retour'}}
|
|
|
|
{{:assign var="output_types." value=$mvt}}
|
|
|
|
{{/if}}
|
|
|
|
{{else}}
|
|
|
|
{{* matériel non propriété de l'asso *}}
|
|
|
|
{{if $type_mvt == 'retour'}}
|
|
|
|
{{:assign var="output_types." value=$mvt}}
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
{{/foreach}}
|
|
|
|
|
2023-10-30 17:45:56 +01:00
|
|
|
{{* lister tous les mouvements du matériel passé en paramètre *}}
|
|
|
|
{{#list
|
2023-12-06 09:59:11 +01:00
|
|
|
type="movement"
|
|
|
|
select="$$.date AS 'Date';
|
|
|
|
CASE $$.direction WHEN 'input' THEN 'Entrée' WHEN 'output' THEN 'Sortie' END AS 'Mvt';
|
2024-10-18 17:15:56 +02:00
|
|
|
CASE $$.direction WHEN 'input' THEN $$.input_nature WHEN 'output' THEN $$.output_nature END AS 'Type';
|
2023-12-06 09:59:11 +01:00
|
|
|
$$.amount AS 'Nombre';
|
|
|
|
$$.comment AS 'Commentaire'"
|
|
|
|
equipment=$equipment_key
|
|
|
|
order=1
|
2023-10-30 17:45:56 +01:00
|
|
|
}}
|
2024-10-18 17:15:56 +02:00
|
|
|
{{if $direction === "input" && $input_nature|in:$input_types ||
|
|
|
|
$direction === "output" && $output_nature|in:$output_types
|
|
|
|
}}
|
|
|
|
<tr>
|
|
|
|
<td>{{$date|date_short}}</td>
|
|
|
|
<td>{{$col2}}</td>
|
|
|
|
<td>{{$col3}}</td>
|
|
|
|
<td>{{$amount}}</td>
|
|
|
|
<td>{{$comment}}</td>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
{{/if}}
|
2023-10-30 17:45:56 +01:00
|
|
|
{{/list}}
|
|
|
|
|
|
|
|
{{:admin_footer}}
|