Harmonisation types immo

This commit is contained in:
Jean-Christophe Engel 2025-07-03 10:42:45 +02:00
parent eae9a2f31c
commit 688cada3e8
7 changed files with 35 additions and 34 deletions

View file

@ -3,7 +3,7 @@
{{* barre de navigation *}}
{{if $_GET.type_immo == null}}
{{:assign type_immo="encours"}}
{{:assign type_immo="managed"}}
{{else}}
{{:assign type_immo=$_GET.type_immo}}
{{/if}}
@ -34,11 +34,11 @@
{{/select}}
{{/load}}
{{if $type_immo == "autre"}}
{{if $type_immo == "other"}}
{{:include file="_immobilisations_autres.html"}}
{{elseif $type_immo == "sortie"}}
{{elseif $type_immo == "archived"}}
{{:include file="_archives.html"}}
{{elseif $type_immo == "encours" || $type_immo == "amortie"}}
{{elseif $type_immo == "managed" || $type_immo == "amortized"}}
{{:include file="_immobilisations.html"}}
{{/if}}