Compare commits
No commits in common. "470d876d87dc89e7a7905b654b1ab11fd0238893" and "3b4687647da3a9e38db65ec8598604e4d7e256b8" have entirely different histories.
470d876d87
...
3b4687647d
@ -61,7 +61,7 @@
|
||||
<fieldset class="ajout_categorie">
|
||||
<legend>Ajouter une catégorie</legend>
|
||||
<dl>
|
||||
{{:input type="text" name="name" label="Nom" autofocus=true required=true maxlength="100"}}
|
||||
{{:input type="text" name="name" label="Nom" required=true maxlength="100"}}
|
||||
</dl>
|
||||
<p class="submit">
|
||||
{{:button type="submit" name="save" label="Ajouter" shape="right" class="main"}}
|
||||
|
135
config.html
135
config.html
@ -19,29 +19,24 @@
|
||||
{{:redirect to="./config.html?ok=1"}}
|
||||
{{/form}}
|
||||
|
||||
{{* lecture config (défaut ou enregistrée) *}}
|
||||
{{:include file="./_get_config.html" keep="config"}}
|
||||
{{* config par défaut *}}
|
||||
{{:read file="./defaut.json" assign="config_defaut"}}
|
||||
{{:assign config_defaut=$config_defaut|json_decode}}
|
||||
|
||||
{{* types d'entrées *}}
|
||||
{{#foreach from=$config.input_nature key="label" item="type"}}
|
||||
{{:assign var='input_types.%s'|args:$type value=$type}}
|
||||
{{#foreach from=$config_defaut.inputs item="elem"}}
|
||||
{{#foreach from=$elem key=label item=value}}
|
||||
{{:assign var='input_types.%s'|args:$value value=$value}}
|
||||
{{/foreach}}
|
||||
{{/foreach}}
|
||||
|
||||
{{* Natures d'entrées qui ne peuvent être supprimées *}}
|
||||
{{#load type="movement" where="$$.direction='input'" group="$$.input_nature"}}
|
||||
{{:assign var="locked_inputs." value=$input_nature}}
|
||||
{{/load}}
|
||||
|
||||
{{* types de sorties *}}
|
||||
{{#foreach from=$config.output_nature key="label" item="type"}}
|
||||
{{:assign var='output_types.%s'|args:$type value=$type}}
|
||||
{{#foreach from=$config_defaut.outputs item="elem"}}
|
||||
{{#foreach from=$elem key=label item=value}}
|
||||
{{:assign var='output_typess.%s'|args:$value value=$value}}
|
||||
{{/foreach}}
|
||||
{{/foreach}}
|
||||
|
||||
{{* Natures de sorties qui ne peuvent être supprimées *}}
|
||||
{{#load type="movement" where="$$.direction='output'" group="$$.output_nature"}}
|
||||
{{:assign var="locked_outputs." value=$output_nature}}
|
||||
{{/load}}
|
||||
|
||||
<form method="post" action="">
|
||||
<fieldset>
|
||||
<legend>Entrées</legend>
|
||||
@ -54,23 +49,62 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="input_body">
|
||||
{{#foreach from=$config.input_nature key="label" item="type"}}
|
||||
{{#foreach from=$module.config.input_nature item="input_field"}}
|
||||
|
||||
{{* Vérifier si la suppression de ce type d'entrée est possible *}}
|
||||
{{:assign suppr=true}}
|
||||
{{#load type="movement" where="$$.input_nature = :libelle" :libelle=$input_field.label}}
|
||||
{{:assign suppr=false}}
|
||||
{{/load}}
|
||||
|
||||
<tr>
|
||||
<td>{{:input type="text" name="input_fields[label][]" default=$label}}</td>
|
||||
<td>{{:input type="text" name="input_fields[label][]" default=$input_field.label}}</td>
|
||||
<td>{{:input type="select"
|
||||
name="input_fields[type][]"
|
||||
options=$input_types
|
||||
default=$type
|
||||
default=$input_field.type
|
||||
required=true
|
||||
default_empty="— Choisir un type —"}}
|
||||
</td>
|
||||
<td class="action">
|
||||
{{:button
|
||||
label="Supprimer" shape="minus"
|
||||
disabled=$locked_inputs|has:$label
|
||||
onclick="this.parentNode.parentNode.remove();"}}
|
||||
{{if $suppr}}
|
||||
{{:button label="Supprimer" shape="minus" onclick="this.parentNode.parentNode.remove();"}}
|
||||
{{else}}
|
||||
{{:button label="Supprimer" shape="minus" disabled=true}}
|
||||
{{/if}}
|
||||
</td>
|
||||
</tr>
|
||||
{{else}}
|
||||
{{* pas de config enregistrée : utiliser les valeurs par défaut *}}
|
||||
{{#foreach from=$config_defaut.inputs item="elem"}}
|
||||
{{#foreach from=$elem key=label item=value}}
|
||||
|
||||
{{* Vérifier si la suppression de ce type d'entrée est possible *}}
|
||||
{{:assign suppr=true}}
|
||||
{{#load type="movement" where="$$.input_nature = :libelle" :libelle=$label}}
|
||||
{{:assign suppr=false}}
|
||||
{{/load}}
|
||||
|
||||
<tr>
|
||||
<td>{{:input type="text" name="input_fields[label][]" default=$label}}</td>
|
||||
<td>{{:input
|
||||
type="select"
|
||||
name="input_fields[type][]"
|
||||
options=$input_types
|
||||
required=true
|
||||
default=$value
|
||||
default_empty="— Choisir un type —"}}
|
||||
</td>
|
||||
<td class="action">
|
||||
{{if $suppr}}
|
||||
{{:button label="Supprimer" shape="minus" onclick="this.parentNode.parentNode.remove();"}}
|
||||
{{else}}
|
||||
{{:button label="Supprimer" shape="minus" disabled=true}}
|
||||
{{/if}}
|
||||
</td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
{{/foreach}}
|
||||
{{/foreach}}
|
||||
</tbody>
|
||||
</table>
|
||||
@ -98,24 +132,63 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="output_body">
|
||||
{{#foreach from=$config.output_nature key="label" item="type"}}
|
||||
{{#foreach from=$module.config.output_nature item="output_field"}}
|
||||
|
||||
{{* Vérifier si la suppression de ce type de sortie est possible *}}
|
||||
{{:assign suppr=true}}
|
||||
{{#load type="movement" where="$$.output_nature = :libelle" :libelle=$output_field.label}}
|
||||
{{:assign suppr=false}}
|
||||
{{/load}}
|
||||
|
||||
<tr>
|
||||
<td>{{:input type="text" name="output_fields[label][]" default=$label}}</td>
|
||||
<td>{{:input type="text" name="output_fields[label][]" default=$output_field.label}}</td>
|
||||
<td>{{:input
|
||||
type="select"
|
||||
name="output_fields[type][]"
|
||||
options=$output_types
|
||||
default=$type
|
||||
options=$output_typess
|
||||
default=$output_field.type
|
||||
required=true
|
||||
default_empty="— Choisir un type —"}}
|
||||
</td>
|
||||
<td class="action">
|
||||
{{:button
|
||||
label="Supprimer" shape="minus"
|
||||
disabled=$locked_outputs|has:$label
|
||||
onclick="this.parentNode.parentNode.remove();"}}
|
||||
{{if $suppr}}
|
||||
{{:button label="Supprimer" shape="minus" onclick="this.parentNode.parentNode.remove();"}}
|
||||
{{else}}
|
||||
{{:button label="Supprimer" shape="minus" disabled=true}}
|
||||
{{/if}}
|
||||
</td>
|
||||
</tr>
|
||||
{{else}}
|
||||
{{* pas de config enregistrée : utiliser les valeurs par défaut *}}
|
||||
{{#foreach from=$config_defaut.outputs item="elem"}}
|
||||
{{#foreach from=$elem key=label item=value}}
|
||||
|
||||
{{* Vérifier si la suppression de ce type de sortie est possible *}}
|
||||
{{:assign suppr=true}}
|
||||
{{#load type="movement" where="$$.input_nature = :libelle" :libelle=$label}}
|
||||
{{:assign suppr=false}}
|
||||
{{/load}}
|
||||
|
||||
<tr>
|
||||
<td>{{:input type="text" name="output_fields[label][]" default=$label}}</td>
|
||||
<td>{{:input
|
||||
type="select"
|
||||
name="output_fields[type][]"
|
||||
options=$output_typess
|
||||
required=true
|
||||
default=$value
|
||||
default_empty="— Choisir un type —"}}
|
||||
</td>
|
||||
<td class="action">
|
||||
{{if $suppr}}
|
||||
{{:button label="Supprimer" shape="minus" onclick="this.parentNode.parentNode.remove();"}}
|
||||
{{else}}
|
||||
{{:button label="Supprimer" shape="minus" disabled=true}}
|
||||
{{/if}}
|
||||
</td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
{{/foreach}}
|
||||
{{/foreach}}
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -95,6 +95,6 @@
|
||||
|
||||
</form>
|
||||
{{else}}
|
||||
<p class="block error">Il n'y a aucune catégorie, il faut en créer au moins une</p>
|
||||
<p class="block error">Il n'y a aucune catégorie</p>
|
||||
{{/if}}
|
||||
{{:admin_footer}}
|
||||
|
@ -78,7 +78,7 @@
|
||||
</p>
|
||||
</form>
|
||||
{{else}}
|
||||
<p class="block error">Il n'y a aucun matériel déjà répertorié</p>
|
||||
<p class="block error">Il n'y a aucun matériel</p>
|
||||
{{/if}}
|
||||
|
||||
{{:admin_footer}}
|
||||
|
@ -101,7 +101,7 @@
|
||||
</p>
|
||||
</form>
|
||||
{{else}}
|
||||
<p class="block error">Il n'y a aucun matériel sorti temporairement</p>
|
||||
<p class="block error">Il n'y a aucun matériel</p>
|
||||
{{/if}}
|
||||
{{else}}
|
||||
<p class="block error">Il n'y a aucun matériel</p>
|
||||
|
@ -99,10 +99,10 @@
|
||||
</p>
|
||||
</form>
|
||||
{{else}}
|
||||
<p class="block error">Il n'y a aucun matériel présent temporairement</p>
|
||||
<p class="block error">Il n'y a aucun matériel</p>
|
||||
{{/if}}
|
||||
{{else}}
|
||||
<p class="block error">Il n'y a aucun matériel en stock</p>
|
||||
<p class="block error">Il n'y a aucun matériel</p>
|
||||
{{/if}}
|
||||
|
||||
<script type="text/javascript">
|
||||
|
@ -103,7 +103,7 @@
|
||||
</p>
|
||||
</form>
|
||||
{{else}}
|
||||
<p class="block error">Il n'y a aucun matériel en stock</p>
|
||||
<p class="block error">Il n'y a aucun matériel</p>
|
||||
{{/if}}
|
||||
|
||||
<script type="text/javascript">
|
||||
|
Loading…
Reference in New Issue
Block a user