1c78d77c30
- haml-rails - jquery-rails - unicorn - openid_connect - omniauth-github (dependencies) - fog - mailjet - smart_listing - spreadsheet_architect - apipie-rails - maruku - openstack - browser - skylight - simple_form - scenic - daemons - sentry-raven - administrate (dependencies) - logstasher - chartkick - font-awesome-rails
68 lines
2 KiB
Text
68 lines
2 KiB
Text
- 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= sanitize(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.strftime("%d/%m/%Y")
|
||
%tr
|
||
%th Date de publication :
|
||
%td= entreprise.rna_information.date_publication.try(:strftime, "%d/%m/%Y")
|
||
%tr
|
||
%th Date de déclaration :
|
||
%td= entreprise.rna_information.date_declaration.strftime("%d/%m/%Y")
|