-
Notifications
You must be signed in to change notification settings - Fork 69
fix: variables in birth certificate #1051
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Oops! Looks like you forgot to update the changelog. When updating CHANGELOG.md, please consider the following:
|
| {{#ifCond (lookup $declaration 'informant.relation') '===' 'Mother' }} | ||
| <tspan x="307" y="518.104">{{$lookup $declaration 'mother.name.fullname'}}</tspan> | ||
| {{ else }} | ||
| {{#ifCond (lookup $declaration 'informant.relation') '===' 'FATHER'}} | ||
| {{#ifCond (lookup $declaration 'informant.relation') '===' 'Father'}} | ||
| <tspan x="307" y="518.104">{{$lookup $declaration 'father.name.fullname'}}</tspan> | ||
| {{ else }} | ||
| <tspan x="307" y="518.104">{{$lookup $declaration 'informant.name.fullname'}}</tspan> | ||
| {{/ifCond}} | ||
| {{/ifCond}} | ||
| <tspan x="307" y="528.104">{{$intl 'v2.constants.informant' (lookup $declaration 'informant.relation')}}{{#ifCond (lookup $declaration 'informant.relation') '===' 'OTHER'}} ({{lookup $declaration 'informant.other.relation'}}) {{/ifCond}}</tspan> | ||
| <tspan x="307" y="528.104">{{lookup $declaration 'informant.relation'}}{{#ifCond (lookup $declaration 'informant.relation') '===' 'OTHER'}} ({{lookup $declaration 'informant.other.relation'}}) {{/ifCond}}</tspan> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inspect why value of informant.relation could be 'Mother', 'Father' and 'OTHER' as mentioned here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.



Description
Solves: opencrvs/opencrvs-core#10585
Checklist