diff --git a/save_amort.html b/save_amort.html new file mode 100644 index 0000000..4a44a0d --- /dev/null +++ b/save_amort.html @@ -0,0 +1,61 @@ +{{:admin_header title="Ajout amortissement" current="module_amortissement"}} + +{{* barre de navigation *}} +{{if ! $dialog}} + {{:include file="_nav.html" current="amortization"}} +{{/if}} + +{{* Traiter l'envoi du formulaire *}} + +{{* Préparer les infos pour le formulaire *}} +{{:assign var="debit_account.6811" value="6811 — Dot. aux amortissements des immobilisations"}} + +{{* + déterminer le compte d'amortissement en fonction du compte + d'immobilisation => ajouter un 8 après le 2 de tête + *}} +{{#select code, label from acc_accounts where id = :id; :id=$_GET.account assign=amort_account}}{{/select}} +{{:assign c1=$amort_account.code|substr:0:1}} +{{:assign reste=$amort_account.code|substr:1}} +{{:assign amort_code=$c1|cat:8|cat:$reste}} +{{:assign var="credit_account.%s"|args:$amort_code value="%s — Amortissements "|args:$amort_code|cat:$amort_account.label}} + +{{#select id, label, end_date from acc_years where id=:id; :id=$_GET.year assign=year}}{{/select}} +{{*:debug year.id=$year.id year.end_date=$year.end_date|date_short*}} + +{{#years closed=false}} + {{:assign var="open_years.%d"|args:$id value=$label}} +{{/years}} + +
+{{:admin_footer}}