{% extends 'base.html.twig' %}
{% block googletag %}{{ googleTag.getCiblageLocalisationFusacq | raw }}{{ googleTag.getCiblageSecteurActiviteFusacq | raw }}{% endblock %}
{% block stylesheets %} {{ parent() }}
<link rel="stylesheet" href="{{ asset('build/css/vendre_entreprise/vendre_entreprise.css') }}">
<link rel="stylesheet" href="{{ asset('build/css/annuaires/repreneurs/repreneurs_recherche.css') }}">
{% endblock %}
{% block body %}
{% include 'assets/assets_vuejs.html.twig' %}
<!-- Menu -->
{{ render_esi(controller(
'App\\Controller\\CoreController::menu',
{ "lang": lang,
"currentRoute":"vendre_entreprise_annonce_acquisition_details",
"codePays": codePaysWithUnderScore }
)) | spaceless }}
<!-- Menu -->
<!-- Publicité -->
{% include 'includes/publicite.html.twig' %}
<!-- Publicité -->
<div class="container" id="app">
<div class="row">
<!--COLONNE GAUCHE -->
{% include 'includes/colonne_gauche_details_annonce.html.twig' %}
<!--FIN COLONNE GAUCHE -->
<!--COLONNE DROITE -->
<div class="col-12 col-lg-9 bkg_blanc">
<!-- ARIANE -->
<nav aria-label="breadcrumb" class="d-none d-sm-block">
<ol class="breadcrumb">
{% if from == "ouvrir-capital" %}
<li class="breadcrumb-item"><a href="{{ path('index',{'codePays':codePays}) }}">{{ translate("accueil",lang,"","M") | raw }}</a></li>
<li class="breadcrumb-item"><a href="{{ path('ouvrir_capital_business_angel',{'codePays':codePaysWithUnderScore}) }}">{{ translate("ouvrir mon capital",lang,"","M") | raw }}</a></li>
<li class="breadcrumb-item"><a href="{{ path('ouvrir_capital_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}">{{ translate("acheteurs prêts à investir",lang,"","M") | raw }} - {{ translate("annonces d'acquisition",lang,"","M") | raw }}</a></li>
{% for element in annonce.tab_fil_ariane %}
<li class="breadcrumb-item">
<a href="{{ element.lien }}"
title="{{ translate("annonces d'acquisition",lang,"","M") | raw }} {% if element.secteur_activite is not defined %}{{ element.nom }}{% else %}{{ element.secteur_activite }}, {{ element.nom }}{% endif %}"> {{ element.nom }}
</a>
</li>
{% endfor %}
{% else %}
<li class="breadcrumb-item"><a href="{{ path('index',{'codePays':codePays}) }}">{{ translate("accueil",lang,"","M") | raw }}</a></li>
<li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_annonces_acquisition_entreprise',{'codePays':codePaysWithUnderScore}) }}">{{ translate("vendre une entreprise",lang,"","M") | raw }}</a></li>
<li class="breadcrumb-item"><a href="{{ path('vendre_entreprise_resultats_annonces_acquisition',{'codePays':codePaysWithUnderScore}) }}">{{ translate("annonces d'acquisition",lang,"","M") | raw }}</a></li>
{% for element in annonce.tab_fil_ariane %}
<li class="breadcrumb-item">
<a href="{{ element.lien }}"
title="{{ translate("acquisition d'entreprise",lang,"","M") | raw }} {% if element.secteur_activite is not defined %}{{ element.nom }}{% else %}{{ element.secteur_activite }}, {{ element.nom }}{% endif %}"> {{ element.nom }}
</a>
</li>
{% endfor %}
{% endif %}
</ol>
</nav>
<!-- FIN ARIANE -->
{% if app.session.flashbag.peek('error')|length > 0 %}
<div class="alert alert-danger" role="alert">
<p>{{ translate("veuillez corriger les erreurs suivantes",lang,"","M","") | raw }} :</p>
{% for message in app.flashes('error') %}
- {{ message }}<br>
{% endfor %}
</div>
{% endif %}
{% if app.session.flashbag.peek('success')|length > 0 %}
<div class="alert alert-success" role="alert">
{% for message in app.flashes('success') %}
- {{ message }}<br>
{% endfor %}
</div>
{% endif %}
<!--3 BOUTONS-->
<div class="row my-3">
<div class="col-4">
{% if previousAnnonce and fromAlaUne is null and dernieresAnnonces is null %}
{% set lienPrevious = path('vendre_entreprise_annonce_acquisition_details', {
'slug': previousAnnonce.titre_annonce|slugify,
'nomLocalisation': previousAnnonce.nom_localisation_slug,
'idAnnonce': previousAnnonce.id_annonce_acheteur,
'codePays': codePaysWithUnderScore
}) ~ '?urlList=' ~ urlList ~ '&' ~ string_params ~ '&index=' ~ indexPrevious %}
<a href="{{ lienPrevious }}" title="{{ translate("precedente",lang,"","M") | raw }}" class="deco_none {{ colorClass }}">
<div class="float-left"><i class="fa fa-chevron-circle-left fa-2x"></i></div>
<div class="d-none d-xl-block lh20"> {{ translate("precedente",lang,"","M") | raw }}</div>
</a>
{% endif %}
</div>
<div class="col-4 text-center align-content-center" style="text-align:center">
<div class="bloc_140 contenu_centre">
{% if urlRetourList %}
<a href="{{ urlRetourList }}" class="deco_none {{ colorClass }} d-inline-block d-xl-inline" title="{{ translate("retour liste",lang,"","M") | raw }}" class="deco_none {{ colorClass }}">
<div class="float-left"><i class="fa fa-chevron-circle-up fa-2x"></i></div>
<div class="d-none d-xl-block lh20" style="background-color: #FFF; vertical-align: middle;"> {{ translate("retour liste",lang,"","M") | raw }}</div>
</a>
{% endif %}
</div>
</div>
<div class="col-4 text-right" style=" text-align: right">
{% if nextAnnonce and fromAlaUne is null and dernieresAnnonces is null %}
{% set lienNext = path('vendre_entreprise_annonce_acquisition_details', {
'slug': nextAnnonce.titre_annonce|slugify,
'nomLocalisation': nextAnnonce.nom_localisation_slug,
'idAnnonce': nextAnnonce.id_annonce_acheteur,
'codePays': codePaysWithUnderScore
}) ~ '?urlList=' ~ urlList ~ '&' ~ string_params ~ '&index=' ~ indexNext %}
<a href="{{ lienNext }}" style="text-decoration:none;" title="{{ translate("suivante",lang,"","M") | raw }}" class="deco_none {{ colorClass }}">
<div class="float-right"><i class="fa fa-chevron-circle-right fa-2x"></i></div>
<div class="d-none d-xl-block lh20" style="vertical-align:middle;">{{ translate("suivante",lang,"","M") | raw }} </div>
</a>
{% endif %}
</div>
</div>
<!--FIN 3 BOUTONS-->
<!-- CARD -->
<div class="card no_shadow">
<div class="card-body">
<div class="row">
<div class="col-12 mb-2 ml-lg-3">
<h2 class="{{ titreClass }}">
{{ annonce.titre_annonce }}
</h2>
</div>
{% if app.session.flashbag.peek('error_annonce_commande_retiree')|length > 0 %}
<div class="col-12 col-sm-7 offset-sm-1 alert alert-danger" role="alert">
{% for message in app.flashes('error_annonce_commande_retiree') %}
{{ message }}<br>
{% endfor %}
</div>
{% endif %}
<div class="col-12 col-sm-8 ml-lg-5">
<ul class="cat_regions">
<li>{{ translate("ref.",lang,"","M") | raw }} : <strong>A{{ annonce.id_annonce_acheteur }}</strong></li>
{% if from and from == 'ouvrir-capital' %}
<li>{{ translate("secteur",lang,"","M") | raw }} : <a title="{{ translate("acquéreur prêt à investir",lang,"","M") | raw }} {{ secteurActivite.nomSecteurActivite }}" href="{{ path('ouvrir_capital_annonce_acquisition_secteur_activite', {'slug': secteurActivite.nomSecteurActivite | slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}">{{ secteurActivite.nomSecteurActivite }}</a></li>
{% else %}
<li>{{ translate("secteur",lang,"","M") | raw }} : <a title="{{ translate("acquisition d'entreprise",lang,"","M") | raw }} {{ secteurActivite.nomSecteurActivite }}" href="{{ path('vendre_entreprise_annonces_acquisition_secteur_activite', {'slug': secteurActivite.nomSecteurActivite | slugify, 'idSecteurActivite': secteurActivite.idSecteurActivite, 'codePays': codePaysWithUnderScore}) }}">{{ secteurActivite.nomSecteurActivite }}</a></li>
{% endif %}
<li>
{{ translate(terme_pour_la_date,lang,"","M") | raw }} <strong>{{ annonce.date_parution_object | date('d/m/Y') }}</strong>
</li>
<li>
{{ translate("localisations souhaitees",lang,"","M") | raw }} :
{% for localisation in annonce.localisations %}
<a title="{{ translate("acquéreur prêt à investir",lang,"","M") | raw }}, {{ localisation.nom_localisation }}" href="{{ localisation.lien_localisation }}">{{ localisation.nom_localisation }}</a>{% if localisation != annonce.localisations|last %}, {% endif %}
{% endfor %}
</li>
{% if from and from == 'ouvrir-capital' %}
{% if annonce.apport_perso_repreneur > 0 %}
<li>{{ translate("investissement possible : jusqu'à",lang,"","M") | raw }} <strong>{{ annonce.apport_perso_repreneur | number_format(0, ',', ' ') }} k€</strong></li>
{% endif %}
{% else %}
{% if annonce.type_raprochement != "partenaire" %}
{% if annonce.ca_max > 0 %}
<li>{{ translate("CA max recherché :",lang,"","M") | raw }} <strong>{{ annonce.ca_max | number_format(0, ',', ' ') }} k€</strong></li>
{% endif %}
{% endif %}
{% endif %}
<li>
<div class="mb-3">
<span class="badge3 {{ badgeClass }}">{{ type_acquisition | upper }}</span>
</div>
</li>
</ul>
</div>
<div class="col-6 col-sm-3 mt-2" style="height: 183px;">
{% if annonce.cartes.id_localisation_by_country|length == 1 %}
{% if annonce.cartes.id_localisation_by_country|keys |first == "33" %}
<img class="img-fluid"
id='absolute_index_1'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/33_fond_monde.png"
alt="France">
{% for k, carte in annonce.cartes.id_localisation_by_country.33 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/{{ carte }}.png"
alt="France">
{% endfor %}
{% endif %}
{% if annonce.cartes.id_localisation_by_country|keys |first == "41" %}
{% if annonce.cartes.id_localisation_by_country.41 |length == 1 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/41/{{ annonce.cartes.id_localisation_by_country.41|first }}.png"
alt="Suisse">
{% else %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/41/41_transparent.png"
alt="Suisse">
{% endif %}
{% endif %}
{% if annonce.cartes.id_localisation_by_country|keys |first == "01" %}
{% if annonce.cartes.id_localisation_by_country['01'] |length == 1 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/01/{{ annonce.cartes.id_localisation_by_country['01']|first }}.png"
alt="Canada">
{% else %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/01/01_transparent.png"
alt="Canada">
{% endif %}
{% endif %}
{% if annonce.cartes.id_localisation_by_country|keys |first == "32" %}
{% if annonce.cartes.id_localisation_by_country.32 |length == 1 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/32/{{ annonce.cartes.id_localisation_by_country.32|first }}.png"
alt="Belgique">
{% else %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/32/32_transparent.png"
alt="Belgique">
{% endif %}
{% endif %}
{% endif %}
{% if annonce.cartes.id_localisation_by_country|length > 1 %}
{% if 33 in annonce.cartes.id_localisation_by_country|keys %}
<img class="img-fluid"
id='absolute_index_1'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/33_fond_monde.png"
alt="France">
{% for k, carte in annonce.cartes.id_localisation_by_country.33 %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/{{ carte }}.png"
alt="France">
{% endfor %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/fond/33/monde.png"
alt="Monde">
{% endif %}
{% if 33 not in annonce.cartes.id_localisation_by_country|keys %}
<img class="img-fluid"
id='absolute_index_2'
src="{{ CDN.CDN_FUSACQ }}/static/help-fusacq/fr/images/cartes/pays/monde_transparent.png"
alt="Monde">
{% endif %}
{% endif %}
</div>
</div>
<!-- FAVORIS - ENVOYER A UN AMI - IMPRIMER PAGE -->
<div class="row mt-3">
<div class="col-2 col-sm-2 ml-lg-5 pt-1">
{{ render_esi(controller(
'App\\Controller\\AnnoncesController::partager',
{
"lang": lang,
"codePays": codePaysWithUnderScore,
"idAnnonce": annonce.id_annonce_acheteur,
"typeAnnonce":"A",
"from" : fromOnglet
}
))
}}
</div>
<div class="col-2 col-sm-2 text-center pt-1">
<a href="{{ path('imprimer_annonce_acheteur', { 'codePays': codePaysWithUnderScore, 'lang' : lang, 'idAnnonce': annonce.id_annonce_acheteur }) }}" title="{{ translate("imprimer la page",lang,"","M") | raw }}" title="{{ translate("imprimer la page",lang,"","M") | raw }}" title="{{ translate("imprimer la page",lang,"","M") | raw }}" class="gris text-center" target="_blank">
<div class="float-left">
<i class="fa fa-print {{ colorClass }}"></i>
</div>
<div class="float-left pl-1 pb-1 d-none d-lg-block {{ colorClass }}">
<small> {{ translate("imprimer",lang,"","M") | raw }}</small>
</div>
</a>
</div>
<div class="col-2 col-sm-2 text-center pt-1 {{ colorImportant }}">
{% if annonce.is_favoris %}
<div class="float-left">
<i class="fa-sharp fa-solid fa-heart vert"></i>
</div>
<a href="{{ path('compte_favoris' ,{'codePays':codePaysWithUnderScore }) }}" title="{{ translate("favoris", lang, '', 'M', '') }}">
<small>{{ translate("appartient à : mes favoris", lang, '', 'M', '') }}</small>
</a>
{% else %}
<a href="javascript:void(0)" title="{{ translate("favoris",lang,"","M") | raw }}" class="lien-annonce-fav gris text-center btn-favoris favoris-{{ annonce.id_annonce_acheteur }}" data-id-annonce="{{ annonce.id_annonce_acheteur }}" data-type-annonce="A">
<div class="float-left">
<i class="fa-light fa-heart vert"></i>
</div>
<div class="float-left pl-1 pb-1 d-none d-lg-block vert">
<small> {{ translate("favoris",lang,"","M") | raw }}</small>
</div>
</a>
{% endif %}
</div>
<div class="col-6 col-sm-4 col-md-5 col-lg-4 offset-sm-1 text-md-right">
{% if annonce.etat is defined and (annonce.etat == "information_transmise" or annonce.etat == "facture_envoyee" or annonce.etat == "cmde_valide") %}
<a href="{{ path('vendre_entreprise_contacter_annonce_acheteur', {'slug' : annonce.titre_annonce|slugify, 'nomLocalisation': annonce.nom_localisation_slug, 'idAnnonce' : annonce.id_annonce_acheteur, 'codePays' : codePaysWithUnderScore}) ~ '?urlList=' ~ urlList ~ '&' ~ string_params ~ '&index=' ~ index }}" title="{{ translate("déjà commandé",lang,"","M") | raw }}"><button type="button" class="btn {{ btnContactClass }}">{{ translate("déjà commandé",lang,"","M") | raw }}</button></a>
{% else %}
<a href="{{ path('vendre_entreprise_contacter_annonce_acheteur', {'slug' : annonce.titre_annonce|slugify, 'nomLocalisation': annonce.nom_localisation_slug, 'idAnnonce' : annonce.id_annonce_acheteur, 'codePays' : codePaysWithUnderScore}) ~ '?urlList=' ~ urlList ~ '&' ~ string_params ~ '&index=' ~ index }}" title="{{ translate("contacter le deposant",lang,"","M") | raw }}"><button type="button" class="btn {{ btnContactClass }}">{{ translate("contacter le deposant",lang,"","M") | raw }}</button></a>
{% endif %}
</div>
</div>
<!-- FIN FAVORIS - ENVOYER A UN AMI - IMPRIMER PAGE -->
</div>
</div>
<!-- FIN CARD -->
<div class="row mt-3 detail">
<div class="{{ ongletClass }} col-12 mb-3">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col no-padding-x bl_gris br_gris d-none d-lg-block lh09 toggle-onglet" data-onglet="1">
<a class="nav-item nav-link disabled active" href="#">
{{ translate("description <span class='d-none d-lg-block'><br></span>generale",lang,"","M") | raw }}
</a>
</div>
<div class="col no-padding-x bl_m_gris br_gris d-none d-lg-block lh09 toggle-onglet" data-onglet="2">
<a class="nav-item nav-link disabled" href="#">
{{ translate("elements <span class='d-none d-lg-block'><br></span>chiffres",lang,"","M") | raw }}
</a>
</div>
<div class="col no-padding-x bl_m_gris br_gris d-none d-lg-block lh09 toggle-onglet" data-onglet="3">
<a class="nav-item nav-link disabled" href="#">
{{ translate("infos sur<span class='d-none d-lg-block'><br></span> l'acquereur",lang,"","M") | raw }}
</a>
</div>
<div class="col no-padding-x bl_m_gris br_gris d-none d-lg-block lh09 toggle-onglet" data-onglet="4">
<a class="nav-item nav-link disabled" href="#">
{{ translate("complement <span class='d-none d-lg-block'><br></span>d'information",lang,"","M") | raw }}
</a>
</div>
<div class="col no-padding-x bl_m_gris br_gris sectorielles d-none d-lg-block lh09 toggle-onglet" data-onglet="5">
<a class="nav-item nav-link disabled" href="#">
{{ translate("infos <span class='d-none d-lg-block'><br></span>sectorielles",lang,"","M") | raw }}
</a>
</div>
{% if valorisations %}
<div class="col no-padding-x bl_m_gris br_gris comparables d-none d-lg-block lh09 toggle-onglet" data-onglet="6">
<a class="nav-item nav-link disabled" href="#">
{{ translate("transactions <span class='d-none d-lg-block'><br></span>comparables",lang,"","M") | raw }}
</a>
</div>
{% endif %}
</div>
</nav>
</div>
</div>
<div class="row d-lg-none" id="top-nav">
<div class="{{ ongletClass }} col-12">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col no-padding-x bl_m_gris br_gris lh09 toggle-onglet" data-onglet="1">
<a class="nav-item nav-link active" href="#top-nav">
{{ translate("description <span class='d-none d-lg-block'><br></span>generale",lang,"","M") | raw }}
</a>
</div>
</div>
</nav>
</div>
</div>
<!-- DESCRIPTION GENERALE -->
<div class="card my-3 no_shadow onglet toggle-onglet-1">
<div class="card-body">
<div class="row">
<div class="col-12 mt-3 mb-3">
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("description de l'activite recherchee",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5">
{% if annonce.description_activite %}
{{ annonce.description_activite | nl2br }}<br>
{% else %}
{{ translate("non precise",lang,"","M") | raw }}
{% endif %}
</div>
{% if annonce.type_raprochement != "partenaire" %}
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("raison de l'acquisition",lang,"","M") | raw }}</h5>
{% else %}
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("raison du partenariat",lang,"","M") | raw }}</h5>
{% endif %}
<div class="ml-sm-5 mb-5">
{% if annonce.raison_achat %}
{{ annonce.raison_achat | nl2br }}<br>
{% else %}
{{ translate("non precise",lang,"","M") | raw }}
{% endif %}
</div>
{% if annonce.recherche_entreprise_difficulte %}
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("type de societe recherche",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5">
{% if annonce.recherche_entreprise_difficulte == "oui" %}
{{ translate("societe ayant des difficultes financieres",lang,"","M") | raw }}
{% elseif annonce.recherche_entreprise_difficulte == "non" %}
{{ translate("societe in bonis",lang,"","M") | raw }}
{% elseif annonce.recherche_entreprise_difficulte == "indifferent" %}
{{ translate("societe in bonis ou ayant des difficultes financieres",lang,"","M") | raw }}
{% endif %}
</div>
{% endif %}
</div>
</div>
</div>
</div>
<!-- FIN DESCRIPTION GENERALE -->
<div class="row d-lg-none">
<div class="{{ ongletClass }} col-12">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col no-padding-x bl_m_gris br_gris lh09 toggle-onglet" data-onglet="2">
<a class="nav-item nav-link" href="#top-nav">
{{ translate("elements <span class='d-none d-lg-block'><br></span>chiffres",lang,"","M") | raw }}
</a>
</div>
</div>
</nav>
</div>
</div>
<!-- ELEMENTS CHIFFRES -->
<div class="card my-3 no_shadow onglet toggle-onglet-2 d-none">
<div class="card-body">
<div class="row">
<div class="col-12 mt-3 mb-3">
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("taille et rentabilite de la structure recherchee",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5">
<p>
{{ translate("nombre de collaborateurs recherches",lang,"","M") | raw }} :
{% if annonce.nb_personnes_min != "" and annonce.nb_personnes_max != "" %}
{% if annonce.nb_personnes_max > 1000 %}
<b>{{ annonce.nb_personnes_min }} < nb </b>
{% else %}
<b>{{ annonce.nb_personnes_min }} < nb < {{ annonce.nb_personnes_max }} </b>
{% endif %}
{% elseif annonce.nb_personnes_min == "" and annonce.nb_personnes_max != "" %}
<b>nb < {{ annonce.nb_personnes_max }} </b>
{% elseif annonce.nb_personnes_min != "" and annonce.nb_personnes_max == "" %}
<b>nb > {{ annonce.nb_personnes_min }} </b>
{% else %}
<b>{{ translate("non precise",lang,"","M") | raw }}</b>
{% endif %}
</p>
<p>
{{ translate("chiffre d'affaires",lang,"","M") | raw }} :
{% if annonce.ca_min_formated == annonce.ca_max_formated %}
<b>{{ translate("aux alentours de",lang,"","M") | raw }} {{ annonce.ca_min }} k€</b>
{% else %}
{% if annonce.ca_max_formated > 100000 %}
<b>{{ annonce.ca_min_formated| number_format(0, ',', ' ') }} k€ < {{ translate("CA",lang,"","M") | raw }}</b>
{% else %}
<b>{{ annonce.ca_min_formated| number_format(0, ',', ' ') }} k€ < {{ translate("CA",lang,"","M") | raw }} < {{ annonce.ca_max_formated| number_format(0, ',', ' ') }} k€</b>
{% endif %}
{% endif %}
</p>
</div>
</div>
</div>
</div>
</div>
<!-- FIN ELEMENTS CHIFFRES -->
<div class="row d-lg-none">
<div class="{{ ongletClass }} col-12">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col no-padding-x bl_m_gris br_gris lh09 toggle-onglet" data-onglet="3">
<a class="nav-item nav-link" href="#top-nav">
{{ translate("infos sur<span class='d-none d-lg-block'><br></span> l'acquereur",lang,"","M") | raw }}
</a>
</div>
</div>
</nav>
</div>
</div>
<!-- INFORMATIONS ACQUEREURS -->
<div class="card my-3 no_shadow onglet toggle-onglet-3 d-none">
<div class="card-body">
<div class="row">
<div class="col-12 mt-3 mb-3">
{% if annonce.type_acquereur == "personne" %}
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("informations sur le repreneur",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5">
<p class="mb-0">
{{ translate("age du repreneur",lang,"","M") | raw }} :
{% if annonce.age_repreneur %}
{{ annonce.age_repreneur }} {{ translate("ans",lang,"","m") | raw }}
{% else %}
{{ translate("non renseigné",lang,"","M") | raw }}
{% endif %}
</p>
<p class="mb-0">
{{ translate("montant de son apport personnel",lang,"","M") | raw }} :
<b>{{ annonce.apport_perso_repreneur | number_format(0, ',', ' ') }} k€</b>
</p>
</div>
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("formation",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5">
<p class="mb-0 text-justify">
{% if annonce.formation_repreneur == "" %}
{{ translate("non renseigne",lang,"","M") | raw }}
{% else %}
{{ annonce.formation_repreneur | nl2br }}
{% endif %}
</p>
</div>
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("parcours profesionnel",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5">
<p class="mb-0 text-justify">
{% if annonce.parcours_pro_repreneur == "" %}
{{ translate("non renseigne",lang,"","M") | raw }}
{% else %}
{{ annonce.parcours_pro_repreneur | nl2br }}
{% endif %}
</p>
</div>
{% elseif annonce.type_acquereur == "societe" %}
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("informations sur l'acquereur",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5">
<p class="mb-0">
{{ translate("anciennete de la societe",lang,"","M") | raw }} :
{% if annonce.date_creation_societe == "" %}
<b>{{ translate("non renseigne",lang,"","M") | raw }}</b>
{% else %}
{% set diff = current_year - annonce.date_creation_societe %}
{% if diff < 5 %}
<b>{{ translate("moins de 5 ans",lang,"","M") | raw }}</b>
{% elseif diff >= 5 and diff <= 10 %}
<b>{{ translate("entre 5 et 10 ans",lang,"","M") | raw }}</b>
{% elseif diff > 10 %}
<b>{{ translate("plus de 10 ans",lang,"","M") | raw }}</b>
{% endif %}
{% endif %}
</p>
<p class="mb-0">
{{ translate("CA societe",lang,"","M") | raw }} :
{% if annonce.ca_societe_formated == "" %}
<b>{{ translate("non renseigne",lang,"","M") | raw }}</b>
{% else %}
<b>{{ annonce.ca_societe_formated | number_format(0, ',', ' ') }} k€</b>
{% endif %}
</p>
<p class="mb-0">
{{ translate("nb personnes",lang,"","M") | raw }} :
{% if annonce.nb_personnes_societe == "" %}
<b>{{ translate("non renseigne",lang,"","M") | raw }}</b>
{% else %}
{% if annonce.nb_personnes_societe > 10000 %}
<b>1 000 < nb</b>
{% else %}
<b>{{ annonce.nb_personnes_societe }}</b>
{% endif %}
{% endif %}
</p>
<p class="mb-0">
{{ translate("resultat net",lang,"","M") | raw }} :
{% if annonce.res_net_societe_formated == "" %}
<b>{{ translate("non renseigne",lang,"","M") | raw }}</b>
{% else %}
<b>{{ annonce.res_net_societe_formated | number_format(0, ',', ' ') }} k€</b>
{% endif %}
</p>
</div>
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("description generale de l’activite de l'acquereur",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5">
<p class="mb-0 text-justify">
{% if annonce.description_activite_societe == "" %}
{{ translate("non renseigne",lang,"","M") | raw }}
{% else %}
{{ annonce.description_activite_societe | nl2br }}
{% endif %}
</p>
</div>
{% endif %}
</div>
</div>
</div>
</div>
<!-- FIN INFORMATIONS ACQUEREURS -->
<div class="row d-lg-none">
<div class="{{ ongletClass }} col-12">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col no-padding-x bl_m_gris br_gris lh09 toggle-onglet" data-onglet="4">
<a class="nav-item nav-link" href="#top-nav">
{{ translate("complement <span class='d-none d-lg-block'><br></span>d'information",lang,"","M") | raw }}
</a>
</div>
</div>
</nav>
</div>
</div>
<!-- COMPLEMENTS D'INFORMATION -->
<div class="card my-3 no_shadow onglet toggle-onglet-4 d-none">
<div class="card-body">
<div class="row">
<div class="col-12 mt-3 mb-3">
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("remarques, elements complementaires",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5 text-justify">
{% if annonce.elements_complementaires == "" %}
{{ translate("il n'y a pas d'elements complementaires concernant cette annonce",lang,"","M") | raw }}.
{% else %}
{{ annonce.elements_complementaires | nl2br }}
{% endif %}
<br><br>
{% if annonce.type_raprochement == "partenaire" %}
{% set type = "ce partenariat" %}
{% set sujet = "la societe" %}
{% else %}
{% set type = "cette acquisition" %}
{% set sujet = "l'acquereur" %}
{% endif %}
{% if annonce.recherche_active == "oui" %}
{{ translate("concernant "~type~", "~sujet~" est en recherche active",lang,"","M") | raw }}.
{% else %}
{{ translate("concernant "~type~", "~sujet~" est a l'ecoute des opportunites",lang,"","M") | raw }}.
{% endif %}
</div>
{% if annonce.type_raprochement != "partenaire" %}
{% if annonce.demarche != "" %}
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("la demarche de l'acquereur",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5 text-justify">
<span>{{ translate("l'acquereur souhaite",lang,"","M") | raw }} :</span><br>
{% if 'reprise_totale' in annonce.demarche %}
- <b>{{ translate("une reprise totale, le cedant quittant l'entreprise",lang,"","M") | raw }}</b><br>
{% endif %}
{% if 'reprise_majoritaire' in annonce.demarche %}
- <b>{{ translate("une reprise majoritaire, le cedant restant en minoritaire",lang,"","M") | raw }}</b><br>
{% endif %}
{% if 'association_minoritaire' in annonce.demarche %}
- <b>{{ translate("une association minoritaire avec le chef d'entreprise actuel",lang,"","M") | raw }}</b><br>
{% endif %}
</div>
{% endif %}
{% endif %}
</div>
</div>
</div>
</div>
<!-- FIN COMPLEMENTS D'INFORMATION -->
<div class="row d-lg-none">
<div class="{{ ongletClass }} col-12">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col no-padding-x bl_m_gris br_gris sectorielles lh09 toggle-onglet" data-onglet="5">
<a class="nav-item nav-link" href="#top-nav">
{{ translate("infos <span class='d-none d-lg-block'><br></span>sectorielles",lang,"","M") | raw }}
</a>
</div>
</div>
</nav>
</div>
</div>
<!-- INFOS SECTORIELLES -->
<div class="card my-3 no_shadow onglet toggle-onglet-5 d-none">
<div class="card-body">
<div class="row">
<div class="col-12 mt-3 mb-3">
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("informations sectorielles",lang,"","M") | raw }}</h5>
<div class="ml-sm-5 mb-5">
<table class="table table-striped table-hover">
<thead>
<tr>
<th class="text-left" colspan="2" style="border-top:1px solid FFFFFF!important;">{{ translate("les dernieres actualites du secteur avec",lang,"","M") | raw }} <img src="https://content.fusacq.com/static/help-fusacq/buzz/images/logo_petit.gif" alt="Fusacq Buzz"></th>
</tr>
</thead>
<tbody>
{% for actualite in dernieresActualitesSecteur %}
<tr>
<td>{{ actualite.date_mise_en_ligne_format | date('d/m/Y') }}</td>
<td><a target="_blank" href="/buzz/{{ actualite.titre_actualite | slugify }}-a{{ actualite.id_actualite_principale }}">{{ actualite.titre_actualite }}</a><br>
{{ actualite.sous_titre }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- FIN INFOS SECTORIELLES -->
{% if valorisations %}
<div class="row d-lg-none">
<div class="{{ ongletClass }} mb-3 col-12">
<nav>
<div class="nav nav-tabs nav-fill" id="nav-tab" role="tablist">
<div class="col no-padding-x bl_m_gris br_gris comparables lh09 toggle-onglet" data-onglet="6">
<a class="nav-item nav-link" href="#top-nav">
{{ translate("transactions <span class='d-none d-lg-block'><br></span>comparables",lang,"","M") | raw }}
</a>
</div>
</div>
</nav>
</div>
</div>
<!-- TRANSACTIONS COMPARABLES -->
<div class="card my-3 no_shadow onglet toggle-onglet-6 d-none">
<div class="card-body">
<div class="row">
<div class="col-12 mt-3 mb-3">
<h5 class="{{ titreClass }} ml-sm-3">{{ translate("transactions comparables du secteur",lang,"","M") | raw }}</h5>
</div>
{% for valorisation in valorisations %}
<div class="card my-3 card-ie filet_gris no_shadow w-100">
<div class="card-body">
<div class="row">
<div class="col-12">
<div>
<h5 class="titre_comparables">
<a
href="{{ path('base_valorisations_detail_valorisation', {'idValorisation' : valorisation.id_valorisation, 'slug' : valorisation.titre_valorisation | slugify, 'codePays' : codePaysWithUnderScore }) }}"
title="{{ valorisation.titre_valorisation }}">{{ valorisation.titre_valorisation }} {% if valorisation.commande %}({{ translate("déjà commandé",lang,"","m") | raw }}){% endif %}</a>
</h5>
</div>
<div>
<span>{{ valorisation.description_publique }}</span>
</div>
<div class="mb-1">
<span class="nowrap_custom">{{ translate("ref",lang,"","M") | raw }}
: <strong>CR{{ valorisation.id_valorisation }}
</strong></span> <span
class="nowrap_custom">{{ translate("ca",lang,"","M") | raw }}
: <strong>{{ valorisation.approx }} </strong></span>
<span class="nowrap_custom">{{ translate("date",lang,"","M") | raw }}
: <strong>{{ valorisation.date_approx }}</strong></span>
<span class="nowrap_custom">{{ translate("acquereur",lang,"","M") | raw }}
: </span>
{% if valorisation.type_acquereur == "personne" %}
<i class="fas fa-user gris_666">{% else %}<i
class="fas fa-building gris_666">{% endif %}</i>
<span class="nowrap_custom">{{ translate("situation",lang,"","M") | raw }}
: </span>
{% if valorisation.societe_difficulte == "oui" %}<i
class="fas fa-long-arrow-alt-down gris_666">{% else %}<i
class="fas fa-long-arrow-alt-up gris_666">{% endif %}</i>
<span class="nowrap_custom">{{ translate("type",lang,"","M") | raw }}
: </span>
{% if valorisation.type_rachat == "fonds" %}<i
class="fas fa-store gris_666">{% else %}<i
class="fas fa-percentage gris_666">{% endif %}</i>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
<div class="col-12 text-center my-3">
{{ translate("Consulter la",lang,"","M") | raw }}
<a href="{{ path('base_valorisations_index', {'codePays': codePaysWithUnderScore}) }}" class="underlined" target="_blank">{{ translate("base de valorisations",lang,"","M") | raw }}</a>
</div>
{#<div class="col-12 text-center my-3">
<a href="/evaluation-entreprise-obtenir-un-cr-gratuit"><img src="https://content.fusacq.com/static/help-fusacq/fr/images/bandeau_valo.gif" class="img-fluid"></a>
</div>#}
<div class="col-12 my-3">
<i class="fas fa-user gris_666"></i> - <small>{{ translate("personne physique",lang,"","m") | raw }}</small><br>
<i class="fas fa-building gris_666"></i> - <small>{{ translate("societe",lang,"","m") | raw }}</small><br>
<i class="fas fa-long-arrow-alt-up gris_666"></i> - <small>{{ translate("societe in bonis",lang,"","m") | raw }}</small><br>
<i class="fas fa-long-arrow-alt-down gris_666"></i> - <small>{{ translate("societe en difficulte",lang,"","m") | raw }}</small><br>
<i class="fas fa-percentage gris_666"></i> - <small>{{ translate("achat de titres",lang,"","m") | raw }}</small><br>
<i class="fas fa-store gris_666"></i> - <small>{{ translate("achat fonds de commerce",lang,"","m") | raw }}</small>
</div>
</div>
</div>
</div>
<!-- FIN TRANSACTIONS COMPARABLES -->
{% endif %}
<!-- FIN DETAILS ANNONCES -->
</div><!--FIN COLONNE DROITE -->
</div> <!--FIN ROW CONTAINER -->
</div> <!--FIN CONTAINER -->
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script src="https://www.google.com/recaptcha/api.js?hl=fr"></script>
<script type="module" src="{{ asset('build/js/annonces/partager_annonce.js') }}"></script>
<script type="module" src="{{ asset('build/js/annonces/details_annonce.js') }}"></script>
<script type="application/javascript" data-name="{{ codePaysWithUnderScore }}" id="codePaysParam" src="{{ asset('build/js/annonces/favoris.js') }}"></script>
{% include 'annonces/fragments/modal_favoris.html.twig' %}
<script>
function afficheAlert(){
alert("Merci de vous authentifier (ou de vous créer un compte) pour pouvoir commander.");
}
</script>
{% endblock %}