fix(entreprise): accepts "C" as value for "closed"

This commit is contained in:
Colin Darie 2023-05-10 18:08:23 +02:00
parent b44a2f9ce4
commit 5c648664d5

View file

@ -50,7 +50,7 @@ class APIEntreprise::EntrepriseAdapter < APIEntreprise::Adapter
case raw_value
when 'A' then 'actif'
when 'F' then 'fermé'
when 'F', 'C' then 'fermé'
end
end