expose effectif_annuel dans api graphql
This commit is contained in:
parent
453adf3c74
commit
792e755af9
6 changed files with 36 additions and 21 deletions
|
@ -687,23 +687,24 @@ enum DossierState {
|
|||
}
|
||||
|
||||
type Effectif {
|
||||
"""
|
||||
Année de l'effectif mensuel
|
||||
"""
|
||||
annee: String!
|
||||
|
||||
"""
|
||||
Mois de l'effectif mensuel
|
||||
"""
|
||||
mois: String!
|
||||
nb: Float!
|
||||
periode: String!
|
||||
}
|
||||
|
||||
type Entreprise {
|
||||
capitalSocial: BigInt!
|
||||
codeEffectifEntreprise: String!
|
||||
dateCreation: ISO8601Date!
|
||||
effectifs: [Effectif!]!
|
||||
|
||||
"""
|
||||
effectif moyen d'une année
|
||||
"""
|
||||
effectifAnnuel: Effectif
|
||||
|
||||
"""
|
||||
effectif pour un mois donné
|
||||
"""
|
||||
effectifMensuel: Effectif
|
||||
formeJuridique: String!
|
||||
formeJuridiqueCode: String!
|
||||
inlineAdresse: String!
|
||||
|
|
|
@ -2,8 +2,7 @@ module Types
|
|||
class PersonneMoraleType < Types::BaseObject
|
||||
class EntrepriseType < Types::BaseObject
|
||||
class EffectifType < Types::BaseObject
|
||||
field :mois, String, null: false, description: "Mois de l'effectif mensuel"
|
||||
field :annee, String, null: false, description: "Année de l'effectif mensuel"
|
||||
field :periode, String, null: false
|
||||
field :nb, Float, null: false
|
||||
end
|
||||
|
||||
|
@ -16,21 +15,28 @@ module Types
|
|||
field :raison_sociale, String, null: false
|
||||
field :siret_siege_social, String, null: false
|
||||
field :code_effectif_entreprise, String, null: false
|
||||
field :effectifs, [EffectifType], null: false
|
||||
field :effectif_mensuel, EffectifType, null: true, description: "effectif pour un mois donné"
|
||||
field :effectif_annuel, EffectifType, null: true, description: "effectif moyen d'une année"
|
||||
field :date_creation, GraphQL::Types::ISO8601Date, null: false
|
||||
field :nom, String, null: false
|
||||
field :prenom, String, null: false
|
||||
field :inline_adresse, String, null: false
|
||||
|
||||
def effectifs
|
||||
def effectif_mensuel
|
||||
if object.effectif_mensuel.present?
|
||||
[
|
||||
{
|
||||
mois: object.effectif_mois,
|
||||
annee: object.effectif_annee,
|
||||
nb: object.effectif_mensuel
|
||||
}
|
||||
]
|
||||
{
|
||||
periode: [object.effectif_mois, object.effectif_annee].join('/'),
|
||||
nb: object.effectif_mensuel
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
def effectif_annuel
|
||||
if object.effectif_annuel.present?
|
||||
{
|
||||
periode: object.effectif_annuel_annee,
|
||||
nb: object.effectif_annuel
|
||||
}
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -15,6 +15,8 @@ class Entreprise < Hashie::Dash
|
|||
property :effectif_mois
|
||||
property :effectif_annee
|
||||
property :effectif_mensuel
|
||||
property :effectif_annuel
|
||||
property :effectif_annuel_annee
|
||||
property :date_creation
|
||||
property :nom
|
||||
property :prenom
|
||||
|
|
|
@ -105,6 +105,8 @@ class Etablissement < ApplicationRecord
|
|||
effectif_mensuel: entreprise_effectif_mensuel,
|
||||
effectif_mois: entreprise_effectif_mois,
|
||||
effectif_annee: entreprise_effectif_annee,
|
||||
effectif_annuel: entreprise_effectif_annuel,
|
||||
effectif_annuel_annee: entreprise_effectif_annuel_annee,
|
||||
date_creation: entreprise_date_creation,
|
||||
nom: entreprise_nom,
|
||||
prenom: entreprise_prenom,
|
||||
|
|
|
@ -11,6 +11,8 @@ class EntrepriseSerializer < ActiveModel::Serializer
|
|||
:effectif_mois,
|
||||
:effectif_annee,
|
||||
:effectif_mensuel,
|
||||
:effectif_annuel,
|
||||
:effectif_annuel_annee,
|
||||
:date_creation,
|
||||
:nom,
|
||||
:prenom
|
||||
|
|
|
@ -200,6 +200,8 @@ describe API::V1::DossiersController do
|
|||
:effectif_mois,
|
||||
:effectif_annee,
|
||||
:effectif_mensuel,
|
||||
:effectif_annuel,
|
||||
:effectif_annuel_annee,
|
||||
:date_creation,
|
||||
:nom,
|
||||
:prenom
|
||||
|
|
Loading…
Reference in a new issue