demarches-normaliennes/app/views/new_gestionnaire/dossiers/_identite_entreprise.html.haml

68 lines
1.9 KiB
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

- entreprise = entreprise.decorate
- etablissement = entreprise.etablissement
%h4= entreprise.raison_sociale_or_name
%table.table.vertical
%tbody
%tr
%th SIRET :
%td= entreprise.siret_siege_social
%tr
%th Forme juridique :
%td= entreprise.forme_juridique
- if etablissement.present?
%tr
%th Libellé NAF :
%td= etablissement.libelle_naf
%tr
%th Code NAF :
%td= etablissement.naf
%tr
%th Date de création :
%td= Time.at(entreprise.date_creation).localtime.strftime("%d/%m/%Y")
%tr
%th Effectif de l'organisation :
%td= entreprise.effectif
%tr
%th Code effectif :
%td= entreprise.code_effectif_entreprise
%tr
%th Numéro de TVA intracommunautaire :
%td= entreprise.numero_tva_intracommunautaire
- if etablissement.present?
%tr
%th Adresse :
%td
- etablissement.adresse.split("\n").each do |line|
= line
%br
%tr
%th Capital social :
%td= entreprise.pretty_capital_social
- if etablissement.present?
%tr
%th Exercices :
%td
- etablissement.exercices.each_with_index do |exercice, index|
= "#{exercice.dateFinExercice.year} : "
= number_to_currency(exercice.ca)
%br
- if entreprise.rna_information.present?
%tr
%th Numéro RNA :
%td= entreprise.rna_information.association_id
%tr
%th Titre :
%td= entreprise.rna_information.titre
%tr
%th Objet :
%td= entreprise.rna_information.objet
%tr
%th Date de création :
%td= entreprise.rna_information.date_creation
%tr
%th Date de publication :
%td= entreprise.rna_information.date_publication
%tr
%th Date de déclaration :
%td= entreprise.rna_information.date_declaration