templates/documents/annexes/contrat/residence_designation_association.html.twig line 1

Open in your IDE?
  1. <b>La société {{ organization.legalName }},</b>
  2. {{ organization.legalStatus|readable_enum('LegalStatusTypeEnum')|trans }},
  3. {% if organization.SIRET %}
  4.     immatriculée sous le numéro {{ organization.SIRET }},
  5. {% endif %}
  6. représentée par son
  7. {% for representative in physicalLegalRepresentativeLoop %}
  8.     {% if loop.index != 1 %}
  9.         , et représentée par son
  10.     {% endif %}
  11.     {% if representative.person.type == 'LEGAL' %}
  12.         {{ representative.quality|readable_enum('LegalRepresentativeQualityTypeEnum')|trans }}
  13.         la société {{ representative.person.legalName }},
  14.         {% if representative.person.legalStatus|trim %}
  15.             {{ representative.person.legalStatus|readable_enum('LegalStatusTypeEnum')|trans }}
  16.         {% endif %}
  17.         {% if representative.shareCapital %}
  18.             au capital de {{ representative.shareCapital }} euros,
  19.         {% endif %}
  20.         {% if representative.person.address.fullAddress|trim %}
  21.             située au {{ representative.person.address.fullAddress }},
  22.         {% endif %}
  23.         immatriculée
  24.         {% if representative.person.registrationCity|trim %}
  25.             au RCS de {{ representative.person.registrationCity }},
  26.         {% endif %}
  27.         sous le numéro {{ representative.person.SIRET }}
  28.         {% set firstPhysicalChildren = null %}
  29.         {% set isBreak = false %}
  30.         {% for children in representative.children %}
  31.             {% if isBreak == false and children.person.type == 'PHYSICAL' %}
  32.                 {% set firstPhysicalChildren = children %}
  33.                 {% set isBreak = true %}
  34.             {% endif %}
  35.         {% endfor %}
  36.         {% if firstPhysicalChildren %}
  37.             {% if firstPhysicalChildren.person.familyName|trim %}
  38.                 , et représentée par son {{ firstPhysicalChildren.quality|readable_enum('LegalRepresentativeQualityTypeEnum')|trans }}&nbsp;
  39.                 {{ firstPhysicalChildren.person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }}
  40.                 {{ firstPhysicalChildren.person.familyName|upper }} {{ firstPhysicalChildren.person.givenName }}
  41.                 {% if firstPhysicalChildren.person.address.fullAddress|trim %}
  42.                     demeurant {{ firstPhysicalChildren.person.address.fullAddress }}
  43.                 {% endif %}
  44.             {% endif %}
  45.         {% endif %}
  46.     {% else %}
  47.         {{ representative.quality|readable_enum('LegalRepresentativeQualityTypeEnum')|trans }}&nbsp;
  48.         {{ representative.person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }}
  49.         {{ representative.person.familyName|upper }} {{ representative.person.givenName }}
  50.         {% if representative.person.address.fullAddress|trim %}
  51.             demeurant {{ representative.person.address.fullAddress }}
  52.         {% endif %}
  53.     {% endif %}
  54. {% endfor %}