2024-02-23 09:24:47 +01:00
|
|
|
{{* -*- brindille -*- *}}
|
2024-02-15 14:23:03 +01:00
|
|
|
{{*
|
|
|
|
Calcule le nombre de jours entre deux dates
|
|
|
|
paramètres :
|
|
|
|
- date_debut
|
|
|
|
- date_fin
|
|
|
|
résultat : nbjours
|
|
|
|
*}}
|
|
|
|
|
2024-12-27 20:46:53 +01:00
|
|
|
{{:assign ts_debut=$date_debut|strtotime}}
|
|
|
|
{{:assign ts_fin=$date_fin|strtotime}}
|
|
|
|
{{:assign nbjours="1+(%d-%d)/(60*60*24)"|math:$ts_fin:$ts_debut}}
|
2024-02-15 14:23:03 +01:00
|
|
|
|
|
|
|
{{* au cas où les deux dates seraient inversées ... *}}
|
|
|
|
{{if $nbjours < 0}}
|
|
|
|
{{:assign nbjours="-1*%d"|math:$nbjours}}
|
|
|
|
{{/if}}
|
2024-12-27 20:46:53 +01:00
|
|
|
{{* pour simplifier : 360 jours par an *}}
|
|
|
|
{{if $nbjours > 360}}
|
|
|
|
{{:assign nbjours=360}}
|
|
|
|
{{/if}}
|