equipment/mouvements/sorties/index.html

65 lines
1.9 KiB
HTML
Raw Normal View History

2023-12-04 11:01:08 +01:00
{{#restrict section="accounting" level="read"}}{{/restrict}}
2023-10-10 16:16:03 +02:00
{{:admin_header title="Gestion des matériels" current="module_equipment"}}
{{* barre de navigation *}}
{{:include file="/%s/_nav.html"|args:$module.name current="sorties"}}
2023-10-19 14:54:03 +02:00
{{if $_GET.ok}}
<p class="block confirm">{{$_GET.msg}}</p>
{{elseif $_GET.err}}
<p class="block error">{{$_GET.msg}}</p>
2023-10-19 14:54:03 +02:00
{{/if}}
<form method="post" action="">
<fieldset class="sortie">
<legend>Ajouter une sortie </legend>
2023-11-01 16:53:20 +01:00
{{:linkbutton label="Matériel en stock disponible" shape="plus" href="stock_disponible.html?dialog" target="_dialog"}}
{{:linkbutton label="Matériel emprunté" shape="plus" href="emprunte.html?dialog" target="_dialog"}}
2023-10-19 14:54:03 +02:00
</fieldset>
</form>
{{* lister les sorties *}}
2023-10-27 10:47:59 +02:00
<section class="liste_sorties">
2023-10-19 14:54:03 +02:00
<h2>Liste des sorties</h2>
2023-10-30 13:42:49 +01:00
{{#list
select="
$$.date AS 'Date' ;
$$.outputNature AS 'Type' ;
$$.amount AS 'Nombre' ;
(SELECT $$.designation
FROM @TABLE AS b
WHERE b.key = @TABLE.$$.equipment)
AS 'Matériel' ;
$$.comment AS 'Remarques'"
type="movement"
direction="sortie"
order=1}}
2023-10-19 14:54:03 +02:00
{{:assign var='mvt_key' value=$key}}
<tr>
<td>{{$date|date_short}}</td>
<td>{{$outputNature}}</td>
<td>{{$amount}}</td>
2023-10-30 13:42:49 +01:00
<td>{{$col4}}</td>
2023-10-19 14:54:03 +02:00
<td>{{$comment}}</td>
<td class="actions">
2023-10-30 13:42:49 +01:00
{{:linkbutton
label="Supprimer"
href="delete_sortie.html?key=%s"|args:$mvt_key
shape="delete"
target="_dialog"}}
{{:linkbutton
label="Modifier"
href="../modifier_mouvement.html?key=%s&direction=sortie&caller=%s"|args:$mvt_key:$request_url
shape="edit"
2023-10-30 13:42:49 +01:00
target="_dialog"}}
2023-10-19 14:54:03 +02:00
</td>
</tr>
2023-11-29 15:35:31 +01:00
{{else}}
<p class="block alert">Il n'y a aucune sortie.</p>
2023-10-19 14:54:03 +02:00
{{/list}}
</section>
2023-10-10 16:16:03 +02:00
{{:admin_footer}}