[fix] View.hDate — Invalid call dans les templates Distributions et ContractAdmin#150
Merged
Conversation
… Templo Templo ne supporte pas les paramètres optionnels dans les appels de fonctions (cf. commentaire BaseView : "templo doesnt manage optional params in functions"). Le commit bdbbd8d avait ajouté ?year:Bool=false à View.hDate, ce qui compilait la fonction Neko en 2 arguments. Les templates l'appelant avec 1 argument déclenchaient une "Invalid call" sur les pages Distributions et ContractAdmin/selectDistrib. Solution : View.hDate revient à 1 argument ; les appels avec year=true (Cron.hx, VolunteerService.hx) passent directement par Formatting.hDate. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
InterAMAP44
approved these changes
Jun 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[fix] View.hDate — Invalid call dans les templates Distributions et ContractAdmin
Contexte
La v3.0.8 (merge staging→master) introduit une régression sur deux pages :
/distribution)/contractAdmin/view/…)Les deux affichent
Invalid callau rendu Templo de::hDate(d.date)::.Cause
Le commit
bdbbd8dea ajouté?year:Bool = falseàView.hDate. Or,comme le précise
BaseView.hx:Neko compile la fonction à 2 arguments ; Templo l'appelle avec 1 → crash.
Solution
View.hDaterevient à 1 argument, sans paramètre optionnelview.hDate(date, true)dansCron.hxetVolunteerService.hxutilisent directement
Formatting.hDate(date, true)Test
Invalid callInvalid callCo-Authored-By: Claude Sonnet 4.6 noreply@anthropic.com