Hello,
In our minutes for the directors and the presences we are using following code:
Blockquote
Zijn aanwezig of vertegenwoordigd:
{% capture options %}{% for zaakvoerder in period.directors %}{% if zaakvoerder.custom.represented_by_name == blank %}{{zaakvoerder.name}}|{% endif %}{% endfor %}{% endcapture %}
{% capture rechtspersoon_opties %}{% for director in period.directors %}{% if director.custom.represented_by_name != blank %}{{director.name}}|{% endif %}{% endfor %}{% endcapture %}
{% fori aanwezig in period.custom.aanwezig %}
- {% ic %}{% input aanwezig.type as:select options:‘Natuurlijk persoon|Rechtspersoon’ %}{% endic %}{% if aanwezig.type ==‘Natuurlijk persoon’%}{% input aanwezig.geslacht as:select options:‘De heer|Mevrouw’ %} {% input aanwezig.options as:select options:options %} {% endif %}{% if aanwezig.type ==‘Rechtspersoon’%}{% input aanwezig.rechtspersoon_opties as:select options:rechtspersoon_opties %} {% for director2 in period.directors %}{% assign director_name = director2.name %} {% if director_name == aanwezig.rechtspersoon_opties %}{% assign director = director2.custom %}{% break %}{% endif %}{% endfor %}, vertegenwoordigd door haar vaste vertegenwoordiger, {% input aanwezig.rechtspersoon_geslacht as:select options:‘de heer|mevrouw’ %} {{director.represented_by_name}} {% endif %}{% endfori %}
Blockquote
With this code we have a problem when we add manually a director natural person in the company parameters because the name is not filed in the field Company name but in 2 separate fields Firstname & Lastname.
How can we solve the problem without changing all our code in the different mintues?
Thanks a lot,
Sylvie