diff --git a/app/lib/api_entreprise/entreprise_adapter.rb b/app/lib/api_entreprise/entreprise_adapter.rb index 2cdd65624..f54ea5873 100644 --- a/app/lib/api_entreprise/entreprise_adapter.rb +++ b/app/lib/api_entreprise/entreprise_adapter.rb @@ -33,7 +33,6 @@ class ApiEntreprise::EntrepriseAdapter :numero_tva_intracommunautaire, :forme_juridique, :forme_juridique_code, - :mandataires_sociaux, :nom_commercial, :raison_sociale, :siret_siege_social, diff --git a/app/models/entreprise.rb b/app/models/entreprise.rb index 3403c10c9..bbf8c58ec 100644 --- a/app/models/entreprise.rb +++ b/app/models/entreprise.rb @@ -13,6 +13,4 @@ class Entreprise < ApplicationRecord def default_values self.raison_sociale ||= '' end - - attr_writer :mandataires_sociaux end diff --git a/app/models/etablissement.rb b/app/models/etablissement.rb index eba86bd5c..1f59bbb18 100644 --- a/app/models/etablissement.rb +++ b/app/models/etablissement.rb @@ -17,6 +17,4 @@ class Etablissement < ApplicationRecord # squeeze needed because of space in excess in the data "#{numero_voie} #{type_voie} #{nom_voie}, #{complement_adresse}, #{code_postal} #{localite}".squeeze(' ') end - - attr_accessor :entreprise_mandataires_sociaux end diff --git a/spec/lib/api_entreprise/entreprise_adapter_spec.rb b/spec/lib/api_entreprise/entreprise_adapter_spec.rb index 94dfbc759..af559f3ac 100644 --- a/spec/lib/api_entreprise/entreprise_adapter_spec.rb +++ b/spec/lib/api_entreprise/entreprise_adapter_spec.rb @@ -63,40 +63,5 @@ describe ApiEntreprise::EntrepriseAdapter do it 'L\'entreprise contient bien un prenom' do expect(subject[:prenom]).to eq('test_prenom') end - - it 'L\'entreprise contient bien les mandataires_sociaux' do - expect(subject[:mandataires_sociaux]).to be_an_instance_of(Array) - end - end - - context 'Mandataire sociaux' do - subject { described_class.new(siren, procedure_id).to_params[:mandataires_sociaux] } - - it '#to_params class est une Hash ?' do - expect(subject).to be_an_instance_of(Array) - end - - it { expect(subject.size).to eq(8) } - - describe 'Attributs' do - it 'Un mandataire social possède bien un nom' do - expect(subject[0][:nom]).to eq('HISQUIN') - end - it 'Un mandataire social possède bien un prenom' do - expect(subject[0][:prenom]).to eq('FRANCOIS') - end - - it 'Un mandataire social possède bien une fonction' do - expect(subject[0][:fonction]).to eq('PRESIDENT DU DIRECTOIRE') - end - - it 'Un mandataire social possède bien une date de naissance' do - expect(subject[0][:date_naissance]).to eq('1965-01-27') - end - - it 'Un mandataire social possède bien une date de naissance au format timestamp' do - expect(subject[0][:date_naissance_timestamp]).to eq(-155523600) - end - end end end