Query Metrics
220
Database Queries
34
Different statements
34871.26 ms
Query time
3
Invalid entities
Grouped Statements
| Time▼ | Count | Info |
|---|---|---|
|
3137.91 ms (9.00%) |
18 |
SELECT COUNT(DISTINCT DAY(p.date_vente_valid_b)) FROM history p WHERE p.point_of_sale_id = :pointOfSale AND MONTH(p.date_vente_valid_b) = :mois AND YEAR(p.date_vente_valid_b) = :annee AND DAYOFWEEK(p.date_vente_valid_b) >= 2 AND DAYOFWEEK(p.date_vente_valid_b) <= 6 -- Jours de travail (lundi à vendredi) AND p.date_vente_valid_b <= CURDATE() -- Jusqu'à aujourd'hui
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
2464.21 ms (7.07%) |
6 |
SELECT COUNT(DISTINCT result.titulaire_email) AS total, WEEK(result.date_cmd_a, 3) AS semaine FROM ( -- Partie 1 : Catégorie 32 avec emails en catégorie 1 SELECT p1.titulaire_email, p1.date_cmd_a FROM history p1 LEFT JOIN cluster c1 ON p1.cluster_id = c1.id WHERE p1.category_id = :cat1 AND p1.point_of_sale_id = :pointOfSale AND MONTH(p1.date_cmd_a) = :mois AND YEAR(p1.date_cmd_a) = :annee AND p1.titulaire_email IN ( SELECT DISTINCT p_sub1.titulaire_email FROM history p_sub1 WHERE p_sub1.category_id = 1 AND p_sub1.point_of_sale_id = :pointOfSale AND MONTH(p_sub1.date_cmd_a) = :mois AND YEAR(p_sub1.date_cmd_a) = :annee ) UNION -- Partie 2 : Catégorie 31 avec emails en catégorie 1 ou 3 SELECT p2.titulaire_email, p2.date_cmd_a FROM history p2 LEFT JOIN cluster c2 ON p2.cluster_id = c2.id WHERE p2.category_id = :cat2 AND p2.point_of_sale_id = :pointOfSale AND MONTH(p2.date_cmd_a) = :mois AND YEAR(p2.date_cmd_a) = :annee AND p2.titulaire_email IN ( SELECT DISTINCT p_sub2.titulaire_email FROM history p_sub2 WHERE p_sub2.category_id IN (1, 3) AND p_sub2.point_of_sale_id = :pointOfSale AND MONTH(p_sub2.date_cmd_a) = :mois AND YEAR(p_sub2.date_cmd_a) = :annee ) ) AS result GROUP BY WEEK(result.date_cmd_a, 3) ORDER BY semaine
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 "cat1" => 32 "cat2" => 31 ] |
|
2396.71 ms (6.87%) |
6 |
SELECT COUNT(DISTINCT result.titulaire_email) AS total_vente FROM ( SELECT p1.titulaire_email FROM history p1 LEFT JOIN cluster c1 ON c1.id=p1.cluster_id WHERE p1.category_id = :cat1 AND p1.point_of_sale_id = :pointOfSale AND MONTH(p1.date_cmd_a) = :mois AND YEAR(p1.date_cmd_a) = :annee AND p1.titulaire_email IN ( SELECT DISTINCT p_sub1.titulaire_email FROM history p_sub1 WHERE p_sub1.category_id = 1 AND p_sub1.point_of_sale_id = :pointOfSale AND MONTH(p_sub1.date_cmd_a) = :mois AND YEAR(p_sub1.date_cmd_a) = :annee ) UNION SELECT p2.titulaire_email FROM history p2 LEFT JOIN cluster c2 ON c2.id=p2.cluster_id WHERE p2.category_id = :cat2 AND p2.point_of_sale_id = :pointOfSale AND MONTH(p2.date_cmd_a) = :mois AND YEAR(p2.date_cmd_a) = :annee AND p2.titulaire_email IN ( SELECT DISTINCT p_sub2.titulaire_email FROM history p_sub2 WHERE p_sub2.category_id IN (1, 3) AND p_sub2.point_of_sale_id = :pointOfSale AND MONTH(p_sub2.date_cmd_a) = :mois AND YEAR(p_sub2.date_cmd_a) = :annee ) ) AS result
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 "cat1" => 32 "cat2" => 31 ] |
|
1973.80 ms (5.66%) |
12 |
SELECT COUNT(DISTINCT p.id) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON c.id =p.cluster_id WHERE p.point_of_sale_id = :pointOfSale AND p.category_id IN (1,3) AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee AND p.prise_existante_commande = :opt
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 "opt" => "NON" ] |
|
1434.46 ms (4.11%) |
18 |
SELECT COUNT(h0_.id) AS sclr_0 FROM history h0_ LEFT JOIN point_of_sale p1_ ON h0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON h0_.cluster_id = c2_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_vente_valid_b) = ? AND YEAR(h0_.date_vente_valid_b) = ? AND h0_.date_vente_valid_b <= ?
Parameters:
[ 4 7 2025 "2026-02-10 10:37:43" ] |
|
1140.50 ms (3.27%) |
6 |
SELECT COUNT(DISTINCT p.titulaire_email) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON p.cluster_id = c.id WHERE p.point_of_sale_id = :pointOfSale AND p.category_id NOT IN (2) AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
1127.85 ms (3.23%) |
6 |
SELECT COUNT(DISTINCT p.titulaire_email) AS total, WEEK(p.date_cmd_a,3) AS semaine FROM history p LEFT JOIN cluster c ON c.id = p.cluster_id WHERE p.point_of_sale_id = :pointOfSale AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee AND p.fixe_chainage IS NOT NULL AND p.category_id IN (:cat0,:cat1,:cat2) GROUP BY semaine
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 "cat0" => 31 "cat1" => 32 "cat2" => 33 ] |
|
1113.20 ms (3.19%) |
6 |
SELECT COUNT(h0_.id) AS sclr_0 FROM history h0_ LEFT JOIN point_of_sale p1_ ON h0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON h0_.cluster_id = c2_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_cmd_a) = ? AND YEAR(h0_.date_cmd_a) = ? AND h0_.date_racc IS NOT NULL AND (h0_.category_id IN (1, 3) OR (h0_.category_id IN (31) AND h0_.product_id IN (150, 262, 264, 266, 334, 335, 341, 344, 345, 379, 441, 442, 443, 444))) ORDER BY sclr_0 DESC
Parameters:
[ 4 7 2025 ] |
|
1102.13 ms (3.16%) |
6 |
SELECT COUNT(DISTINCT p.id) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON c.id =p.cluster_id WHERE p.point_of_sale_id = :pointOfSale AND p.category_id IN (1,3) AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee AND p.portabilite = :opt
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 "opt" => "OUI" ] |
|
1100.29 ms (3.16%) |
6 |
SELECT COUNT(DISTINCT h0_.titulaire_email) AS sclr_0 FROM history h0_ LEFT JOIN cluster c1_ ON h0_.cluster_id = c1_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_cmd_a) = ? AND YEAR(h0_.date_cmd_a) = ? AND h0_.fixe_chainage IS NOT NULL AND h0_.category_id IN (31, 32, 33)
Parameters:
[ 4 7 2025 ] |
|
1095.01 ms (3.14%) |
6 |
SELECT COUNT(DISTINCT p.id) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON p.cluster_id = c.id WHERE p.point_of_sale_id = :pointOfSale AND p.date_resiliation IS NOT NULL AND p.date_racc IS NOT NULL AND DATEDIFF(p.date_racc , p.date_resiliation) > -31 AND p.category_id IN(31,32,33,48) AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
1093.68 ms (3.14%) |
6 |
SELECT COUNT(DISTINCT h0_.titulaire_email) AS sclr_0 FROM history h0_ LEFT JOIN cluster c1_ ON h0_.cluster_id = c1_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_cmd_a) = ? AND YEAR(h0_.date_cmd_a) = ?
Parameters:
[ 4 7 2025 ] |
|
1091.25 ms (3.13%) |
6 |
SELECT COUNT(h0_.id) AS sclr_0 FROM history h0_ LEFT JOIN point_of_sale p1_ ON h0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON h0_.cluster_id = c2_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_vente_valid_b) = ? AND YEAR(h0_.date_vente_valid_b) = ? ORDER BY sclr_0 DESC
Parameters:
[ 4 7 2025 ] |
|
1083.04 ms (3.11%) |
6 |
SELECT COUNT(h0_.id) / NULLIF(COUNT(DISTINCT u1_.id), 0) AS sclr_0 FROM history h0_ LEFT JOIN point_of_sale p2_ ON h0_.point_of_sale_id = p2_.id LEFT JOIN cluster c3_ ON h0_.cluster_id = c3_.id LEFT JOIN user u1_ ON h0_.seller_id = u1_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_vente_valid_b) = ? AND YEAR(h0_.date_vente_valid_b) = ?
Parameters:
[ 4 7 2025 ] |
|
1081.61 ms (3.10%) |
6 |
SELECT COUNT(DISTINCT p.id) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON p.cluster_id = c.id WHERE p.point_of_sale_id = :pointOfSale AND p.date_resiliation IS NOT NULL AND p.date_racc IS NOT NULL AND DATEDIFF(p.date_racc, p.date_resiliation) > -31 AND (p.category_id NOT IN (2, 31, 32, 33,48) OR p.product_id IN(150,262,264,266,334,335,341,344,345,379)) AND MONTH(p.date_vente_valid_b) = :mois AND YEAR(p.date_vente_valid_b) = :annee
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
1081.61 ms (3.10%) |
6 |
SELECT COUNT(DISTINCT p.id) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON c.id =p.cluster_id WHERE p.point_of_sale_id = :pointOfSale AND p.category_id IN (1,3) AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee AND p.prise_saisie_commande = :opt
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 "opt" => "OUI" ] |
|
1077.88 ms (3.09%) |
6 |
SELECT COUNT(p.id) AS total_vente, p.identity_ctrl FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON p.cluster_id = c.id WHERE p.point_of_sale_id = :pointOfSale AND p.identity_ctrl IS NOT NULL AND MONTH(p.date_vente_valid_b) = :mois AND YEAR(p.date_vente_valid_b) = :annee GROUP BY p.identity_ctrl
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
1075.37 ms (3.08%) |
6 |
SELECT COUNT(h0_.id) AS sclr_0 FROM history h0_ LEFT JOIN point_of_sale p1_ ON h0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON h0_.cluster_id = c2_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_cmd_a) = ? AND YEAR(h0_.date_cmd_a) = ? AND h0_.date_racc IS NOT NULL AND (h0_.category_id IN (1, 2, 3) OR h0_.product_id IN (150, 262, 264, 266, 334, 335, 341, 344, 345, 379, 441, 442, 443, 444)) ORDER BY sclr_0 DESC
Parameters:
[ 4 7 2025 ] |
|
1068.66 ms (3.06%) |
6 |
SELECT COUNT(h0_.id) AS sclr_0 FROM history h0_ LEFT JOIN point_of_sale p1_ ON h0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON h0_.cluster_id = c2_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_cmd_a) = ? AND YEAR(h0_.date_cmd_a) = ? AND h0_.category_id IN (?, ?, ?) AND h0_.category_id IN (31, 32, 33, 48) AND h0_.date_racc IS NOT NULL AND h0_.product_id NOT IN (150, 262, 264, 266, 334, 335, 341, 344, 345, 379, 441, 442, 443, 444) ORDER BY sclr_0 DESC
Parameters:
[ 4 7 2025 31 32 33 ] |
|
1057.95 ms (3.03%) |
6 |
SELECT COUNT(DISTINCT p.id) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON p.cluster_id = c.id WHERE p.point_of_sale_id = :pointOfSale AND p.date_resiliation IS NOT NULL AND p.date_racc IS NOT NULL AND DATEDIFF(p.date_racc, p.date_resiliation) > -31 AND ( p.category_id IN(1,3) OR ( p.category_id IN(31) AND p.product_id IN(150, 262, 264, 266, 334, 335, 341, 344, 345, 379,441,442,443,444) ) ) AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
1047.04 ms (3.00%) |
6 |
SELECT COUNT(h0_.id) AS sclr_0 FROM history h0_ LEFT JOIN point_of_sale p1_ ON h0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON h0_.cluster_id = c2_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_vente_valid_b) = ? AND YEAR(h0_.date_vente_valid_b) = ? AND h0_.etat_id = ?
Parameters:
[ 4 7 2025 2 ] |
|
1043.91 ms (2.99%) |
6 |
SELECT COUNT(DISTINCT p.id) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON p.cluster_id = c.id WHERE p.point_of_sale_id = :pointOfSale AND p.date_resiliation IS NOT NULL AND p.date_racc IS NOT NULL AND DATEDIFF(p.date_racc, p.date_resiliation) > -31 AND (p.category_id NOT IN (2, 31, 32, 33,48) OR p.product_id IN(150,262,264,266,334,335,341,344,345,379)) AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
1042.14 ms (2.99%) |
6 |
SELECT COUNT(DISTINCT u0_.id) AS sclr_0 FROM history h1_ LEFT JOIN cluster c2_ ON h1_.cluster_id = c2_.id LEFT JOIN point_of_sale p3_ ON h1_.point_of_sale_id = p3_.id LEFT JOIN user u0_ ON h1_.seller_id = u0_.id WHERE h1_.point_of_sale_id = ? AND MONTH(h1_.date_vente_valid_b) = ? AND YEAR(h1_.date_vente_valid_b) = ?
Parameters:
[ 4 7 2025 ] |
|
1029.56 ms (2.95%) |
6 |
SELECT COUNT(DISTINCT p.id) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON p.cluster_id = c.id WHERE p.point_of_sale_id = :pointOfSale AND p.date_resiliation IS NOT NULL AND p.date_racc IS NOT NULL AND DATEDIFF(p.date_racc , p.date_resiliation) > -31 AND p.category_id IN(31,32,33,48) AND p.product_id NOT IN (150, 262, 264, 266, 334, 335, 341, 344, 345, 379,441,442,443,444) AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
957.82 ms (2.75%) |
6 |
SELECT COUNT(DISTINCT p.id) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON c.id =p.cluster_id WHERE p.point_of_sale_id = :pointOfSale AND p.category_id IN (1,3) AND MONTH(p.date_cmd_a) = :mois AND YEAR(p.date_cmd_a) = :annee AND p.prise_saisie_commande = :opt AND p.prise_existante_commande = :opt2
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 "opt" => "NON" "opt2" => "OUI" ] |
|
947.11 ms (2.72%) |
6 |
SELECT COUNT(h0_.id) AS sclr_0 FROM history h0_ LEFT JOIN point_of_sale p1_ ON h0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON h0_.cluster_id = c2_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_cmd_a) = ? AND YEAR(h0_.date_cmd_a) = ? AND h0_.category_id IN (?, ?) ORDER BY sclr_0 DESC
Parameters:
[ 4 7 2025 1 3 ] |
|
552.05 ms (1.58%) |
6 |
SELECT COUNT(DISTINCT p.titulaire_email) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON p.cluster_id = c.id WHERE p.point_of_sale_id = :pointOfSale AND p.category_id IN (SELECT DISTINCT(id) FROM category_product WHERE parent_category_id =4) AND ( p.fixe_chainage IS NOT NULL OR p.fixe_autre IS NOT NULL ) AND MONTH(p.date_vente_valid_b) = :mois AND YEAR(p.date_vente_valid_b) = :annee
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
384.66 ms (1.10%) |
6 |
SELECT COUNT(DISTINCT p.titulaire_email) AS total_vente FROM history p LEFT JOIN point_of_sale po ON p.point_of_sale_id = po.id LEFT JOIN cluster c ON p.cluster_id = c.id WHERE p.point_of_sale_id = :pointOfSale AND p.category_id IN (SELECT DISTINCT(id) FROM category_product WHERE parent_category_id =4) AND ( p.fixe_chainage IS NOT NULL ) AND MONTH(p.date_vente_valid_b) = :mois AND YEAR(p.date_vente_valid_b) = :annee
Parameters:
[ "pointOfSale" => 4 "mois" => 7 "annee" => 2025 ] |
|
27.59 ms (0.08%) |
6 |
SELECT COUNT(h0_.id) AS sclr_0 FROM history h0_ LEFT JOIN point_of_sale p1_ ON h0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON h0_.cluster_id = c2_.id WHERE h0_.point_of_sale_id = ? AND MONTH(h0_.date_cmd_a) = ? AND YEAR(h0_.date_cmd_a) = ? AND h0_.product_id IN (150, 262, 264, 266, 334, 335, 341, 344, 345, 379, 441, 442, 443, 444) ORDER BY sclr_0 DESC
Parameters:
[ 4 7 2025 ] |
|
20.26 ms (0.06%) |
6 |
SELECT AVG(s0_.note_satisfaction) AS sclr_0 FROM satisfaction_client s0_ LEFT JOIN history h1_ ON s0_.history_id = h1_.id LEFT JOIN cluster c2_ ON h1_.cluster_id = c2_.id WHERE MONTH(s0_.date_contrat) = ? AND YEAR(s0_.date_contrat) = ? AND s0_.cod_poin_vent = ?
Parameters:
[ 7 2025 "1053520" ] |
|
20.02 ms (0.06%) |
6 |
SELECT SUM(n0_.vv) AS sclr_0 FROM nmd_objectif_clusters n0_ WHERE n0_.cpv = ? AND n0_.mois = ? AND n0_.year = ?
Parameters:
[ "1053520" 7 2025 ] |
|
0.78 ms (0.00%) |
2 |
SELECT t0.id AS id_1, t0.code AS code_2, t0.nom AS nom_3, t0.description AS description_4, t0.operator_id AS operator_id_5 FROM etat_production t0 WHERE t0.nom = ? LIMIT 1
Parameters:
[
"Racco KO"
]
|
|
0.78 ms (0.00%) |
1 |
SELECT t0.id AS id_1, t0.name AS name_2, t0.slug AS slug_3, t0.code AS code_4, t0.operator_id AS operator_id_5, t0.organisation_id AS organisation_id_6 FROM point_of_sale t0 WHERE t0.id = ? LIMIT 1
Parameters:
[
"4"
]
|
|
0.43 ms (0.00%) |
1 |
SELECT t0.id AS id_1, t0.email AS email_2, t0.nom AS nom_3, t0.prenom AS prenom_4, t0.roles AS roles_5, t0.password AS password_6, t0.internal_ref AS internal_ref_7, t0.origin_id AS origin_id_8, t0.parent_origin_id AS parent_origin_id_9, t0.picto AS picto_10, t0.parent_id AS parent_id_11, t0.point_of_sale_id AS point_of_sale_id_12, t0.role_app_id AS role_app_id_13, t0.organisation_id AS organisation_id_14 FROM user t0 WHERE t0.email = ? LIMIT 1
Parameters:
[
"liteyear@nomad.fr"
]
|
Database Connections
| Name | Service |
|---|---|
| default | doctrine.dbal.default_connection |
Entity Managers
| Name | Service |
|---|---|
| default | doctrine.orm.default_entity_manager |
Second Level Cache
Second Level Cache is not enabled.
Entities Mapping
| Class | Mapping errors |
|---|---|
| App\Entity\User |
|
| App\Entity\PointOfSale | No errors. |
| App\Entity\RoleApp | No errors. |
| App\Entity\Organisation | No errors. |
| App\Entity\Operator | No errors. |
| App\Entity\Declarative | No errors. |
| App\Entity\InterventionPlace | No errors. |
| App\Entity\Production | No errors. |
| App\Entity\History | No errors. |
| App\Entity\DistributionAdresse | No errors. |
| App\Entity\ObjectivesManagement | No errors. |
| App\Entity\IncidentsTickets | No errors. |
| App\Entity\SchedulerSector | No errors. |
| App\Entity\SalesCoachProfile | No errors. |
| App\Entity\SalesCoachInteraction | No errors. |
| App\Entity\UsersRefExterne | No errors. |
| App\Entity\NmdAdressesIncomming | No errors. |
| App\Entity\NmdArretCuivre |
|
| App\Entity\NmdArretFttb |
|
| App\Entity\TourneeToken | No errors. |
| App\Entity\EtatProduction | No errors. |
| App\Entity\SatisfactionClient | No errors. |
| App\Entity\Cluster | No errors. |
| App\Entity\NmdAppPanier | No errors. |
| App\Entity\NmdModules | No errors. |
| App\Entity\ProspectionCycle | No errors. |
| App\Entity\NmdObjectifClusters | No errors. |