Dissocier dans l'inventaire les matériels propriété de l'asso ou non
This commit is contained in:
parent
5e5c470a24
commit
7575cc8a71
|
@ -10,6 +10,37 @@
|
||||||
{{/load}}
|
{{/load}}
|
||||||
{{:admin_header title="Historique des mouvements de %s (%s)"|args:$equipment.designation:$category.name current="module_equipment"}}
|
{{:admin_header title="Historique des mouvements de %s (%s)"|args:$equipment.designation:$category.name current="module_equipment"}}
|
||||||
|
|
||||||
|
{{* 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}}
|
||||||
|
|
||||||
{{* lister tous les mouvements du matériel passé en paramètre *}}
|
{{* lister tous les mouvements du matériel passé en paramètre *}}
|
||||||
{{#list
|
{{#list
|
||||||
type="movement"
|
type="movement"
|
||||||
|
@ -20,6 +51,9 @@
|
||||||
$$.comment AS 'Commentaire'"
|
$$.comment AS 'Commentaire'"
|
||||||
equipment=$equipment_key
|
equipment=$equipment_key
|
||||||
order=1
|
order=1
|
||||||
|
}}
|
||||||
|
{{if $direction === "input" && $input_nature|in:$input_types ||
|
||||||
|
$direction === "output" && $output_nature|in:$output_types
|
||||||
}}
|
}}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{$date|date_short}}</td>
|
<td>{{$date|date_short}}</td>
|
||||||
|
@ -29,6 +63,7 @@
|
||||||
<td>{{$comment}}</td>
|
<td>{{$comment}}</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
{{/if}}
|
||||||
{{/list}}
|
{{/list}}
|
||||||
|
|
||||||
{{:admin_footer}}
|
{{:admin_footer}}
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
<td class="actions">
|
<td class="actions">
|
||||||
{{:linkbutton
|
{{:linkbutton
|
||||||
label="Historique des mouvements"
|
label="Historique des mouvements"
|
||||||
href="%shistorique.html?key=%s"|args:$module.url:$eqpmt_key
|
href="%shistorique.html?key=%s&prop=1"|args:$module.url:$eqpmt_key
|
||||||
shape="table"
|
shape="table"
|
||||||
target="_dialog"}}
|
target="_dialog"}}
|
||||||
{{:linkbutton
|
{{:linkbutton
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
{{:error message="Aucune %s avec la clé %s"|args:$msg_direction:$key_mvt}}
|
{{:error message="Aucune %s avec la clé %s"|args:$msg_direction:$key_mvt}}
|
||||||
{{/load}}
|
{{/load}}
|
||||||
|
|
||||||
{{if $direction == "input"}}
|
{{if $direction == "input"}}
|
||||||
{{:assign input_init=$mvt_modif.input_nature}}
|
{{:assign input_init=$mvt_modif.input_nature}}
|
||||||
{{:assign url="entrees/index.html"}}
|
{{:assign url="entrees/index.html"}}
|
||||||
|
@ -22,10 +23,17 @@
|
||||||
{{:assign output_init=$mvt_modif.output_nature}}
|
{{:assign output_init=$mvt_modif.output_nature}}
|
||||||
{{:assign url="sorties/index.html"}}
|
{{:assign url="sorties/index.html"}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{:assign amount_init=$mvt_modif.amount}}
|
{{:assign amount_init=$mvt_modif.amount}}
|
||||||
{{:assign date_init=$mvt_modif.date|date_short}}
|
{{:assign date_init=$mvt_modif.date|date_short}}
|
||||||
{{:assign key_eqpmt_init=$mvt_modif.equipment}}
|
{{:assign key_eqpmt_init=$mvt_modif.equipment}}
|
||||||
|
|
||||||
|
{{* récupérer les infos du matériel associé *}}
|
||||||
|
{{#load key=$key_eqpmt_init assign="eqpmt_init"}}
|
||||||
|
{{else}}
|
||||||
|
{{:error message="Aucun matériel avec la clé « %s »"|args:$key_eqpmt_init}}
|
||||||
|
{{/load}}
|
||||||
|
|
||||||
{{* récupérer la config des entrées/sorties *}}
|
{{* récupérer la config des entrées/sorties *}}
|
||||||
{{:include file="../_get_config.html" keep="config"}}
|
{{:include file="../_get_config.html" keep="config"}}
|
||||||
|
|
||||||
|
@ -47,12 +55,6 @@
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{* récupérer les infos du matériel associé *}}
|
|
||||||
{{#load key=$key_eqpmt_init assign="eqpmt_init"}}
|
|
||||||
{{else}}
|
|
||||||
{{:error message="Aucun matériel avec la clé « %s »"|args:$key_eqpmt_init}}
|
|
||||||
{{/load}}
|
|
||||||
|
|
||||||
{{*
|
{{*
|
||||||
-------------------- Traiter la saisie --------------------
|
-------------------- Traiter la saisie --------------------
|
||||||
*}}
|
*}}
|
||||||
|
@ -73,7 +75,6 @@
|
||||||
en l'insérant à sa place par date croissante
|
en l'insérant à sa place par date croissante
|
||||||
*}}
|
*}}
|
||||||
{{:assign insere=false}}
|
{{:assign insere=false}}
|
||||||
|
|
||||||
{{#load
|
{{#load
|
||||||
where="
|
where="
|
||||||
$$.type = 'movement'
|
$$.type = 'movement'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{{*
|
{{* -*- brindille -*-
|
||||||
|
|
||||||
Vérifier la cohérence des E/S d'un matériel
|
Vérifier la cohérence des E/S d'un matériel
|
||||||
- paramètres :
|
- paramètres :
|
||||||
- movements : liste de mouvements
|
- movements : liste de mouvements
|
||||||
|
|
Loading…
Reference in New Issue