Compare commits

..

3 commits
v0.19 ... main

Author SHA1 Message Date
Jean-Christophe Engel
5c34c127ee Harmonisation libellés pour classification 2025-06-26 10:19:50 +02:00
Jean-Christophe Engel
fd1397bd5c module.ini : mise à jour url 2025-06-04 10:48:19 +02:00
Jean-Christophe Engel
757ac7d5ce Amélioration présentation onglet Autres si vide 2025-06-03 08:54:07 +02:00
9 changed files with 19 additions and 14 deletions

View file

@ -1,6 +1,6 @@
{{* -*- brindille -*- *}}
{{* Liste des immobilisations amortissable ou à définir *}}
{{* Liste des immobilisations en cours ou amorties *}}
<section class="immobilisation">
{{if $type_immo == "encours"}}

View file

@ -4,6 +4,7 @@
<section class="immobilisation">
<h2 class="ruler">Autres immobilisations</h2>
{{:assign nb_immo=0}}
<table class="list">
<thead>
@ -96,6 +97,7 @@
{{if $ignore}}
{{:continue}}
{{/if}}
{{:assign nb_immo="%d+1"|math:$nb_immo}}
<tr>
<td class="num"><a href={{$trans_url}}>#{{$trans_id}}</a></td>
@ -108,21 +110,21 @@
{{if $status == "nsp"}}
{{:linkbutton
label="Paramètres"
href="add_infos.html?immo_id=%s&amort=0&op=new&type_immo=autres"|args:$immo_id
href="add_infos.html?immo_id=%s&amort=0&op=new&type_immo=autre"|args:$immo_id
shape="settings"
target="_dialog"
}}
{{else}}
{{:linkbutton
label="Paramètres"
href="add_infos.html?immo_id=%s&amort=0&op=modif&type_immo=autres"|args:$immo_id
href="add_infos.html?immo_id=%s&amort=0&op=modif&type_immo=autre"|args:$immo_id
shape="settings"
target="_dialog"
}}
{{/if}}
{{:linkbutton
label="Amortissements"
href="amortization.html?immo_id=%s&type_immo=autres"|args:$immo_id
href="amortization.html?immo_id=%s&type_immo=autre"|args:$immo_id
shape="table"
}}
</td>
@ -130,4 +132,7 @@
{{/select}}
</tbody>
</table>
{{if $nb_immo == 0}}
<p class="block alert">Aucune immobilisation</p>
{{/if}}
</section>

View file

@ -20,7 +20,7 @@
<li {{if $subcurrent == 'encours'}}class="current"{{/if}}><a href="index.html?type_immo=encours">En cours</a></li>
<li {{if $subcurrent == 'fini'}}class="current"{{/if}}><a href="index.html?type_immo=fini">Terminées</a></li>
<li {{if $subcurrent == 'archive'}}class="current"{{/if}}><a href="index.html?type_immo=archive">Archivées</a></li>
<li {{if $subcurrent == 'autres'}}class="current"{{/if}}><a href="index.html?type_immo=autres">Autres</a></li>
<li {{if $subcurrent == 'autre'}}class="current"{{/if}}><a href="index.html?type_immo=autre">Autres</a></li>
</ul>
{{/if}}

View file

@ -117,11 +117,11 @@
status=$status
}}
{{if $_POST.amortir}}
{{:assign amort="encours"}}
{{:assign type_immo="encours"}}
{{else}}
{{:assign amort="autres"}}
{{:assign type_immo="autre"}}
{{/if}}
{{:redirect force="index.html?ok=1&msg=immobilisation&amort=%s"|args:$amort}}
{{:redirect force="index.html?ok=1&msg=immobilisation&type_immo=%s"|args:$type_immo}}
{{/form}}
{{:admin_header title="Ajout immobilisation" current="module_amortissement"}}

View file

@ -63,7 +63,7 @@
}}
{{if ! $_POST.amortir}}
{{:assign type_immo="autres"}}
{{:assign type_immo="autre"}}
{{else}}
{{:assign type_immo=$_GET.type_immo}}
{{/if}}

View file

@ -75,7 +75,7 @@
{{elseif $_GET.type_immo == null || $_GET.type_immo == "encours"}}
{{:assign subcurrent="encours"}}
{{else}}
{{:assign subcurrent="autres"}}
{{:assign subcurrent="autre"}}
{{/if}}
{{:include file="_nav.html" current="index" subcurrent="%s"|args:$subcurrent subsubcurrent="amortization"}}

View file

@ -34,7 +34,7 @@
{{/select}}
{{/load}}
{{if $type_immo == "autres"}}
{{if $type_immo == "autre"}}
{{:include file="_immobilisations_autres.html"}}
{{elseif $type_immo == "archive"}}
{{:include file="_archives.html"}}

View file

@ -1,7 +1,7 @@
name="Amortissements"
description="Gestion des amortissements pour le logiciel de comptabilité Paheko (v0.16)"
description="Gestion des amortissements pour le logiciel de comptabilité Paheko"
author="Jean-Christophe Engel"
author_url="https://git.roflcopter.fr/lesanges"
author_url="https://gitea.zaclys.com/lesanges"
home_button=false
menu=true
restrict_section="accounting"

View file

@ -260,7 +260,7 @@
}}
{{/if}}
{{:redirect to="index.html?amort=archive"}}
{{:redirect to="index.html?type_immo=archive"}}
{{/form}}
{{:admin_header title="Sortie du bilan" custom_css="./style.css" current="module_amortissement"}}