Compare commits
3 Commits
795e55e172
...
cdb7b83325
Author | SHA1 | Date | |
---|---|---|---|
cdb7b83325 | |||
c2844a17bf | |||
86443b9bb0 |
@ -24,10 +24,19 @@
|
||||
{{* afficher les catégories déjà enregistrées *}}
|
||||
<section class="categories">
|
||||
{{#list select="$$.name AS 'Catégorie'" order="1" where="$$.type = 'category'"}}
|
||||
{{:assign category_key=$key}}
|
||||
{{* voir s'il y a des matériels dans cette catégorie *}}
|
||||
{{:assign materiel_present=true}}
|
||||
{{#load type="equipment" where="$$.category = :category_key" :category_key=$category_key}}
|
||||
{{else}}
|
||||
{{:assign materiel_present=false}}
|
||||
{{/load}}
|
||||
<tr>
|
||||
<th>{{$name}}</th>
|
||||
<td class="actions">
|
||||
{{if $materiel_present}}
|
||||
{{:linkbutton label="Liste des matériels" href="list_equipment.html?key=%s&dialog"|args:$key shape="search" target="_dialog"}}
|
||||
{{/if}}
|
||||
{{:linkbutton label="Modifier" href="modify_category.html?key=%s"|args:$key shape="edit" target="_dialog"}}
|
||||
{{:linkbutton label="Supprimer" href="delete_category.html?key=%s"|args:$key shape="delete" target="_dialog"}}
|
||||
</td>
|
||||
|
@ -6,16 +6,28 @@
|
||||
{{:include file="./_calcul_dispo.html" keep="cumul_mvt,category_keys,equipments"}}
|
||||
|
||||
{{* Afficher les résultats *}}
|
||||
|
||||
{{if $equipments === null}}
|
||||
<p class="block alert">Aucun matériel.</p>
|
||||
{{else}}
|
||||
{{* Vérifier s'il y a au moins un matériel propriété ou non de l'asso *}}
|
||||
{{:assign mat_prop=false}}
|
||||
{{:assign mat_non_prop=false}}
|
||||
{{#foreach from=$equipments key=key item=eqpmt}}
|
||||
{{if $eqpmt|has_key:"stock"}}
|
||||
{{:assign mat_prop=true}}
|
||||
{{/if}}
|
||||
{{if $eqpmt|has_key:"nonproprio"}}
|
||||
{{:assign mat_non_prop=true}}
|
||||
{{/if}}
|
||||
{{/foreach}}
|
||||
|
||||
{{if $mat_prop}}
|
||||
<details class="inventaire" open="open">
|
||||
<summary>
|
||||
<h2>Matériels dont l'association est propriétaire</h2>
|
||||
</summary>
|
||||
<fieldset>
|
||||
|
||||
<fieldset>
|
||||
{{* itérer sur les catégories *}}
|
||||
{{#foreach from=$cumul_mvt key="cat_key" item="cat_elem"}}
|
||||
|
||||
@ -89,13 +101,15 @@
|
||||
{{/foreach}}
|
||||
</fieldset>
|
||||
</details>
|
||||
{{/if}}
|
||||
|
||||
{{if $mat_non_prop}}
|
||||
<details class="inventaire" open="open">
|
||||
<summary>
|
||||
<h2>Matériels dont l'association n'est pas propriétaire</h2>
|
||||
</summary>
|
||||
<fieldset>
|
||||
|
||||
<fieldset>
|
||||
{{* itérer sur les catégories *}}
|
||||
{{#foreach from=$cumul_mvt key="cat_key" item="cat_elem"}}
|
||||
|
||||
@ -161,3 +175,4 @@
|
||||
</fieldset>
|
||||
</details>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
@ -30,6 +30,10 @@
|
||||
{{#form on="save"}}
|
||||
|
||||
{{* vérifier les infos saisies *}}
|
||||
{{if $_POST.quantite <= 0}}
|
||||
{{:error message="La quantité (%s) doit être strictement positive !!"|args:$_POST.quantite}}
|
||||
{{/if}}
|
||||
|
||||
{{if $_POST.equipment == null &&
|
||||
$_POST.category == null && $_POST.designation == null}}
|
||||
{{:error message="Il faut choisir un matériel existant ou sélectionner une catégorie et indiquer le nom du nouveau matériel"}}
|
||||
@ -42,8 +46,7 @@
|
||||
{{#load key=$_POST.equipment assign=equipment}}
|
||||
{{/load}}
|
||||
{{if $_POST.designation != null}}
|
||||
{{:assign message="Vous avez choisi un matériel dans la liste (%s) et indiqué le nom d'un nouveau matériel (%s) : l'un des deux est de trop"|args:$equipment.designation:$_POST.designation}}
|
||||
{{:error message=$message}}
|
||||
{{:error message="Vous avez choisi un matériel dans la liste (%s) et indiqué le nom d'un nouveau matériel (%s) : l'un des deux est de trop"|args:$equipment.designation:$_POST.designation}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
@ -70,8 +73,7 @@
|
||||
{{if $present}}
|
||||
{{* voir si le matériel existe dans une autre catégorie *}}
|
||||
{{if $nom_cat != $post_category.name}}
|
||||
{{:assign message="Le matériel « %s » est déjà présent dans la catégorie « %s » ..."|args:$post_mat:$nom_cat}}
|
||||
{{:error message=$message}}
|
||||
{{:error message="Le matériel « %s » est déjà présent dans la catégorie « %s » ..."|args:$post_mat:$nom_cat}}
|
||||
{{/if}}
|
||||
{{* utiliser la clé du matériel trouvé *}}
|
||||
|
||||
|
@ -66,6 +66,10 @@
|
||||
-------------------- Traiter la saisie --------------------
|
||||
*}}
|
||||
{{#form on="change"}}
|
||||
{{if $_POST.amount <= 0}}
|
||||
{{:error message="La quantité (%s) doit être strictement positive !!"|args:$_POST.amount}}
|
||||
{{/if}}
|
||||
|
||||
{{* préparer le mouvement modifié *}}
|
||||
{{if $direction_mvt == "input"}}
|
||||
{{:assign var="mvt_modif.input_nature" from="input_labels.%s"|args:$_POST.type_operation}}
|
||||
@ -157,7 +161,8 @@
|
||||
{{:redirect force="../index.html?ok=1&msg=modification"}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{else}}
|
||||
{{:form_errors}}
|
||||
{{/form}}
|
||||
|
||||
{{*
|
||||
|
Loading…
Reference in New Issue
Block a user