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

Open in your IDE?
  1. <h2 class="c0">
  2.     <span class="c22 c10">Pouvoir autorisant à prendre le courrier, les plis et les colis</span>
  3. </h2>
  4. <p class="c4">
  5.     <span class="c1"></span>
  6. </p>
  7. <p class="c4">
  8.     <span class="c1"></span>
  9. </p>
  10. {% if organization.legalStatus == "AUTO_ENTREPRENEUR" or organization.legalStatus == "EI" or organization.legalStatus == "EIRL" %}
  11.     <p>
  12.         Je soussigné(e)
  13.         {{ physicalLegalRepresentativeLoop[0].person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }}
  14.         {{ physicalLegalRepresentativeLoop[0].person.familyName|upper }}
  15.         {{ physicalLegalRepresentativeLoop[0].person.givenName }},
  16.         {{ organization.legalStatus|readable_enum('LegalStatusTypeEnum')|trans }},
  17.     <p class="c4">
  18.         <span class="c1"></span>
  19.     </p>
  20.     <p>Autorise la société KOAH à prendre le courrier, les colis et les plis spéciaux (DHL, CHRONOPOST, UPS) de mon
  21.        entreprise.
  22.     </p>
  23. {% else %}
  24.     {% if physicalLegalRepresentativeLoop[0].person.type == 'LEGAL' %}
  25.         <p>Je soussigné(e) la société {{ physicalLegalRepresentativeLoop[0].person.legalName }} représentée par
  26.             {% if physicalLegalRepresentativeLoop[0].children is not null %}
  27.                 {% set firstPhysicalChildren = null %}
  28.                 {% set isBreak = false %}
  29.                 {% for children in physicalLegalRepresentativeLoop[0].children %}
  30.                     {% if isBreak == false and children.person.type == 'PHYSICAL' %}
  31.                         {% set firstPhysicalChildren = children %}
  32.                         {% set isBreak = true %}
  33.                     {% endif %}
  34.                 {% endfor %}
  35.                 {% if firstPhysicalChildren is not null %}
  36.                     {% if firstPhysicalChildren.person.familyName|upper is not null %}
  37.                         {{ firstPhysicalChildren.person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }}&nbsp;
  38.                         {{ firstPhysicalChildren.person.familyName|upper }} {{ firstPhysicalChildren.person.givenName }}
  39.                     {% endif %}
  40.                 {% endif %}
  41.             {% endif %}
  42.         </p>
  43.         <p class="c4">
  44.             <span class="c1"></span>
  45.         </p>
  46.         <p>représentant de l’entreprise
  47.            : {{ organization.legalName }} {{ organization.legalStatus|readable_enum('LegalStatusTypeEnum')|trans }}</p>
  48.         <p class="c4">
  49.             <span class="c1"></span>
  50.         </p>
  51.         <p>Autorise la société KOAH à prendre le courrier, les colis et les plis spéciaux (DHL, CHRONOPOST, UPS) de mon
  52.            entreprise.
  53.         </p>
  54.     {% else %}
  55.         <p>
  56.             Je soussigné(e)
  57.             {{ physicalLegalRepresentativeLoop[0].person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }}
  58.             <br/>
  59.             {{ physicalLegalRepresentativeLoop[0].person.familyName|upper }}
  60.             {{ physicalLegalRepresentativeLoop[0].person.givenName }}
  61.         </p>
  62.         <p class="c4">
  63.             <span class="c1"></span>
  64.         </p>
  65.         <p>représentant de l’entreprise
  66.            : {{ organization.legalName }} {{ organization.legalStatus|readable_enum('LegalStatusTypeEnum')|trans }}</p>
  67.         <p class="c4">
  68.             <span class="c1"></span>
  69.         </p>
  70.         <p>Autorise la société KOAH à prendre le courrier, les colis et les plis spéciaux (DHL, CHRONOPOST, UPS) de mon
  71.            entreprise.
  72.         </p>
  73.     {% endif %}
  74. {% endif %}