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

Open in your IDE?
  1. <div class="have-signature-absolute">
  2.     <h2 class="c0">
  3.         <span class="c22 c10">ATTESTATION COMPTABLE SUR L’HONNEUR</span>
  4.     </h2>
  5.     <p class="c4">
  6.         <span class="c1"></span>
  7.     </p>
  8.     <p class="c4">
  9.         <span class="c1"></span>
  10.     </p>
  11.     {% if organization.legalStatus == "AUTO_ENTREPRENEUR" or organization.legalStatus == "EI" or organization.legalStatus == "EIRL" %}
  12.         <p>
  13.         {% if constant('App\\Enum\\HeadQuartersEnum::POSTAL_DOMICILIATION') == organization.headQuartersAddressType %}
  14.         L'association
  15.         {% else %}
  16.         L'entreprise
  17.         {% endif %}: {{ physicalLegalRepresentativeLoop[0].person.familyName|upper }} {{ physicalLegalRepresentativeLoop[0].person.givenName }}
  18.             , {{ organization.legalStatus|readable_enum('LegalStatusTypeEnum')|trans }},
  19.             <br/>
  20.             Domiciliée chez la société KOAH à l’adresse suivante :
  21.             <br/>
  22.         </p>
  23.         <p class="c4">
  24.             <span class="c1"></span>
  25.         </p>
  26.         <p>{{ siege_address }}</p>
  27.         <p class="c4">
  28.             <span class="c1"></span>
  29.         </p>
  30.         <p>Atteste sur l'honneur,</p>
  31.         <p class="c4">
  32.             <span class="c1"></span>
  33.         </p>
  34.         <p>
  35.             1°) Que la comptabilité de {% if constant('App\\Enum\\HeadQuartersEnum::POSTAL_DOMICILIATION') == organization.headQuartersAddressType %}
  36.             mon association
  37.             {% else %}
  38.             mon entreprise
  39.             {% endif %}  est tenue par
  40.             {% set haveAccountant = false %}
  41.             {% if organization.accountant is not null %}
  42.                 {% if organization.accountant.person is not null %}
  43.                     {% if organization.accountant.person.address is not null %}
  44.                         {{ organization.accountant.person.legalName }} {{ organization.accountant.person.address.fullAddress }}
  45.                         {% set haveAccountant = true %}
  46.                     {% endif %}
  47.                 {% endif %}
  48.             {% endif %}
  49.             {% if haveAccountant == false %}
  50.                 {{ physicalLegalRepresentativeLoop[0].person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }} {{ physicalLegalRepresentativeLoop[0].person.familyName|upper }} {{ physicalLegalRepresentativeLoop[0].person.givenName }}
  51.             {% endif %}
  52.         </p>
  53.         <p class="c4">
  54.             <span class="c1"></span>
  55.         </p>
  56.         <p>2°) Qu’elle s’engage à mettre ses documents comptables à la disposition de l’administration, à son adresse de
  57.            domiciliation, en cas de contrôle fiscal,
  58.         </p>
  59.         <p class="c4">
  60.             <span class="c1"></span>
  61.         </p>
  62.         <p>3°) Que le domicile du représentant légal se trouve à l’adresse suivante
  63.            : {{ physicalLegalRepresentativeLoop[0].person.address.fullAddress }} et que la Société KOAH sera informée de
  64.            tout changement de domicile ultérieur (avec ou sans changement de représentant légal),
  65.         </p>
  66.         <p class="c4">
  67.             <span class="c1"></span>
  68.         </p>
  69.         <p>4°) Qu’elle effectuera les démarches auprès de la Poste afin que la société KOAH puisse recevoir le courrier
  70.            y
  71.            compris le courrier recommandé.
  72.         </p>
  73.     {% else %}
  74.         <p>{% if constant('App\\Enum\\HeadQuartersEnum::POSTAL_DOMICILIATION') == organization.headQuartersAddressType %}
  75.         L'association
  76.         {% else %}
  77.         L'entreprise
  78.         {% endif %}
  79.            : {{ organization.legalName }} {{ organization.legalStatus|readable_enum('LegalStatusTypeEnum')|trans }}</p>
  80.         <p class="c4">
  81.             <span class="c1"></span>
  82.         </p>
  83.         <p>Représentée par
  84.         {% if physicalLegalRepresentativeLoop[0].person.type == 'LEGAL' %}
  85.             la société {{ physicalLegalRepresentativeLoop[0].person.legalName }}, {{ physicalLegalRepresentativeLoop[0].person.legalStatus|readable_enum('LegalStatusTypeEnum')|trans }}, représentée par
  86.             {% if physicalLegalRepresentativeLoop[0].children is not null %}
  87.                 {% set firstPhysicalChildren = null %}
  88.                 {% set isBreak = false %}
  89.                 {% for children in physicalLegalRepresentativeLoop[0].children %}
  90.                     {% if isBreak == false and children.person.type == 'PHYSICAL' %}
  91.                         {% set firstPhysicalChildren = children %}
  92.                         {% set isBreak = true %}
  93.                     {% endif %}
  94.                 {% endfor %}
  95.                 {% if firstPhysicalChildren is not null %}
  96.                     {% if firstPhysicalChildren.person.familyName|upper is not null %}
  97.                         {{ firstPhysicalChildren.person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }}&nbsp;
  98.                         {{ firstPhysicalChildren.person.familyName|upper }} {{ firstPhysicalChildren.person.givenName }}
  99.                     {% endif %}
  100.                 {% endif %}
  101.             {% endif %}
  102.         {% else %}
  103.             {{ physicalLegalRepresentativeLoop[0].person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }} {{ physicalLegalRepresentativeLoop[0].person.familyName|upper }} {{ physicalLegalRepresentativeLoop[0].person.givenName }}</p>
  104.         {% endif %}
  105.         <p>et domiciliée chez la société KOAH à l’adresse suivante :</p>
  106.         <p class="c4">
  107.             <span class="c1"></span>
  108.         </p>
  109.         <p>{{ siege_address }}</p>
  110.         <p class="c4">
  111.             <span class="c1"></span>
  112.         </p>
  113.         <p>Atteste sur l'honneur,</p>
  114.         <p class="c4">
  115.             <span class="c1"></span>
  116.         </p>
  117.         <p>
  118.             1°) Que la comptabilité de 
  119.             {% if constant('App\\Enum\\HeadQuartersEnum::POSTAL_DOMICILIATION') == organization.headQuartersAddressType %}
  120.             mon association
  121.             {% else %}
  122.             ma société
  123.             {% endif %}  est tenue par
  124.             {% if physicalLegalRepresentativeLoop[0].person.type == 'LEGAL' %}
  125.                 {% set haveAccountant = false %}
  126.                 {% if organization.accountant is not null %}
  127.                     {% if organization.accountant.person is not null %}
  128.                         {% if organization.accountant.person.address is not null %}
  129.                             {{ organization.accountant.person.legalName }} {{ organization.accountant.person.address.fullAddress }}
  130.                             {% set haveAccountant = true %}
  131.                         {% endif %}
  132.                     {% endif %}
  133.                 {% endif %}
  134.                 {% if haveAccountant == false %}
  135.                     la société {{ physicalLegalRepresentativeLoop[0].person.legalName }}, {{ physicalLegalRepresentativeLoop[0].person.legalStatus|readable_enum('LegalStatusTypeEnum')|trans }}, représentée par
  136.                     {% if physicalLegalRepresentativeLoop[0].children is not null %}
  137.                         {% set firstPhysicalChildren = null %}
  138.                         {% set isBreak = false %}
  139.                         {% for children in physicalLegalRepresentativeLoop[0].children %}
  140.                             {% if isBreak == false and children.person.type == 'PHYSICAL' %}
  141.                                 {% set firstPhysicalChildren = children %}
  142.                                 {% set isBreak = true %}
  143.                             {% endif %}
  144.                         {% endfor %}
  145.                         {% if firstPhysicalChildren is not null %}
  146.                             {% if firstPhysicalChildren.person.familyName|upper is not null %}
  147.                                 {{ firstPhysicalChildren.person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }}&nbsp;
  148.                                 {{ firstPhysicalChildren.person.familyName|upper }} {{ firstPhysicalChildren.person.givenName }}
  149.                             {% endif %}
  150.                         {% endif %}
  151.                     {% endif %}
  152.                 {% endif %}
  153.             {% else %}
  154.                 {% set haveAccountant = false %}
  155.                 {% if organization.accountant is not null %}
  156.                     {% if organization.accountant.person is not null %}
  157.                         {% if organization.accountant.person.address is not null %}
  158.                             {{ organization.accountant.person.legalName }} {{ organization.accountant.person.address.fullAddress }}
  159.                             {% set haveAccountant = true %}
  160.                         {% endif %}
  161.                     {% endif %}
  162.                 {% endif %}
  163.                 {% if haveAccountant == false %}
  164.                     {{ physicalLegalRepresentativeLoop[0].person.honorificPrefix|readable_enum('GenderTypeEnum')|trans }} {{ physicalLegalRepresentativeLoop[0].person.familyName|upper }} {{ physicalLegalRepresentativeLoop[0].person.givenName }}
  165.                 {% endif %}
  166.             {% endif %}
  167.         </p>
  168.         <p class="c4">
  169.             <span class="c1"></span>
  170.         </p>
  171.         <p>2°) Qu’elle s’engage à mettre ses documents comptables à la disposition de l’administration, à son adresse de
  172.            domiciliation, en cas de contrôle fiscal,
  173.         </p>
  174.         <p class="c4">
  175.             <span class="c1"></span>
  176.         </p>
  177.         <p>3°) Que le domicile du représentant légal se trouve à l’adresse suivante
  178.            : {{ physicalLegalRepresentativeLoop[0].person.address.fullAddress }} et que la Société KOAH sera informée de
  179.            tout changement de domicile ultérieur (avec ou sans changement de représentant légal),
  180.         </p>
  181.         <p class="c4">
  182.             <span class="c1"></span>
  183.         </p>
  184.         <p>4°) Qu’elle effectuera les démarches auprès de la Poste afin que la société KOAH puisse recevoir le courrier
  185.            y
  186.            compris le courrier recommandé.
  187.         </p>
  188.     {% endif %}
  189.     {% include 'documents/annexes/contrat/signature.html.twig' with {class: 'signature-absolute'} %}
  190. </div>