Merge pull request #9749 from mfo/US/fix-enseigne
correctif(API.entreprise.enseigne): ajouter un attribut a une entreprise demande un peu plus que juste le definir sur l'object
This commit is contained in:
commit
f1459c1414
3 changed files with 7 additions and 1 deletions
|
@ -32,6 +32,10 @@ module Types
|
||||||
field :attestation_fiscale_attachment, Types::File, null: true
|
field :attestation_fiscale_attachment, Types::File, null: true
|
||||||
field :enseigne, String, null: true
|
field :enseigne, String, null: true
|
||||||
|
|
||||||
|
def enseigne
|
||||||
|
object.enseigne || nil
|
||||||
|
end
|
||||||
|
|
||||||
def attestation_sociale_attachment
|
def attestation_sociale_attachment
|
||||||
load_attachment_for(:entreprise_attestation_sociale_attachment)
|
load_attachment_for(:entreprise_attestation_sociale_attachment)
|
||||||
end
|
end
|
||||||
|
|
|
@ -22,6 +22,7 @@ class Entreprise < Hashie::Dash
|
||||||
property :date_creation, default: nil
|
property :date_creation, default: nil
|
||||||
property :nom, default: nil
|
property :nom, default: nil
|
||||||
property :prenom, default: nil
|
property :prenom, default: nil
|
||||||
|
property :enseigne, default: nil
|
||||||
|
|
||||||
property :inline_adresse
|
property :inline_adresse
|
||||||
end
|
end
|
||||||
|
|
|
@ -133,7 +133,8 @@ class Etablissement < ApplicationRecord
|
||||||
etat_administratif: entreprise_etat_administratif,
|
etat_administratif: entreprise_etat_administratif,
|
||||||
nom: entreprise_nom,
|
nom: entreprise_nom,
|
||||||
prenom: entreprise_prenom,
|
prenom: entreprise_prenom,
|
||||||
inline_adresse: inline_adresse
|
inline_adresse: inline_adresse,
|
||||||
|
enseigne: enseigne
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue