Query Metrics

220 Database Queries
34 Different statements
2172.64 ms Query time
3 Invalid entities

Grouped Statements

Show all queries

Time Count Info
331.61 ms
(15.26%)
18
SELECT COUNT(DISTINCT DAY(p.date_vente_valid_b))
        FROM production 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
     AND p.category_id IN (:cat0,:cat1,:cat2)
Parameters:
[
  ":cat0" => 1
  ":cat1" => 2
  ":cat2" => 3
  "pointOfSale" => 4
  "mois" => 1
  "annee" => 2026
]
136.78 ms
(6.30%)
6
SELECT COUNT(DISTINCT result.titulaire_email) AS total_vente
            FROM (
                SELECT p1.titulaire_email
                FROM production 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 production 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 production 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 production 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" => 1
  "annee" => 2026
  "cat1" => 32
  "cat2" => 31
]
134.97 ms
(6.21%)
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 production 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 production 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 production 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 production 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" => 1
  "annee" => 2026
  "cat1" => 32
  "cat2" => 31
]
119.38 ms
(5.49%)
18
SELECT COUNT(p0_.id) AS sclr_0 FROM production p0_ LEFT JOIN point_of_sale p1_ ON p0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON p0_.cluster_id = c2_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_vente_valid_b) = ? AND YEAR(p0_.date_vente_valid_b) = ? AND p0_.date_vente_valid_b <= ? AND p0_.category_id IN (?, ?, ?)
Parameters:
[
  4
  1
  2026
  "2026-02-10 10:37:39"
  1
  2
  3
]
96.29 ms
(4.43%)
6
SELECT COUNT(p.id) AS total_vente, p.identity_ctrl
        FROM production 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" => 1
  "annee" => 2026
]
95.95 ms
(4.42%)
6
SELECT COUNT(p0_.id) / NULLIF(COUNT(DISTINCT u1_.id), 0) AS sclr_0 FROM production p0_ LEFT JOIN point_of_sale p2_ ON p0_.point_of_sale_id = p2_.id LEFT JOIN cluster c3_ ON p0_.cluster_id = c3_.id LEFT JOIN user u1_ ON p0_.seller_id = u1_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_vente_valid_b) = ? AND YEAR(p0_.date_vente_valid_b) = ? AND p0_.category_id IN (?, ?, ?)
Parameters:
[
  4
  1
  2026
  1
  2
  3
]
94.62 ms
(4.35%)
6
SELECT COUNT(DISTINCT u0_.id) AS sclr_0 FROM production p1_ LEFT JOIN cluster c2_ ON p1_.cluster_id = c2_.id LEFT JOIN point_of_sale p3_ ON p1_.point_of_sale_id = p3_.id LEFT JOIN user u0_ ON p1_.seller_id = u0_.id WHERE p1_.point_of_sale_id = ? AND MONTH(p1_.date_vente_valid_b) = ? AND YEAR(p1_.date_vente_valid_b) = ? AND p1_.category_id IN (?, ?, ?)
Parameters:
[
  4
  1
  2026
  1
  2
  3
]
94.32 ms
(4.34%)
6
SELECT COUNT(p0_.id) AS sclr_0 FROM production p0_ LEFT JOIN point_of_sale p1_ ON p0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON p0_.cluster_id = c2_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_vente_valid_b) = ? AND YEAR(p0_.date_vente_valid_b) = ? AND p0_.category_id IN (?, ?, ?) ORDER BY sclr_0 DESC
Parameters:
[
  4
  1
  2026
  1
  2
  3
]
87.53 ms
(4.03%)
6
SELECT COUNT(p0_.id) AS sclr_0 FROM production p0_ LEFT JOIN point_of_sale p1_ ON p0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON p0_.cluster_id = c2_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_cmd_a) = ? AND YEAR(p0_.date_cmd_a) = ? AND p0_.date_racc IS NOT NULL AND (p0_.category_id IN (1, 3) OR (p0_.category_id IN (31) AND p0_.product_id IN (150, 262, 264, 266, 334, 335, 341, 344, 345, 379, 441, 442, 443, 444))) ORDER BY sclr_0 DESC
Parameters:
[
  4
  1
  2026
]
86.99 ms
(4.00%)
6
SELECT COUNT(p0_.id) AS sclr_0 FROM production p0_ LEFT JOIN point_of_sale p1_ ON p0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON p0_.cluster_id = c2_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_cmd_a) = ? AND YEAR(p0_.date_cmd_a) = ? AND p0_.category_id IN (?, ?, ?) AND p0_.category_id IN (31, 32, 33, 48) AND p0_.date_racc IS NOT NULL AND p0_.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
  1
  2026
  31
  32
  33
]
86.73 ms
(3.99%)
6
SELECT COUNT(p0_.id) AS sclr_0 FROM production p0_ LEFT JOIN point_of_sale p1_ ON p0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON p0_.cluster_id = c2_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_cmd_a) = ? AND YEAR(p0_.date_cmd_a) = ? AND p0_.date_racc IS NOT NULL AND (p0_.category_id IN (1, 2, 3) OR p0_.product_id IN (150, 262, 264, 266, 334, 335, 341, 344, 345, 379, 441, 442, 443, 444)) ORDER BY sclr_0 DESC
Parameters:
[
  4
  1
  2026
]
78.47 ms
(3.61%)
12
SELECT COUNT(DISTINCT p.id) AS total_vente
            FROM production 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" => 1
  "annee" => 2026
  "opt" => "NON"
]
77.31 ms
(3.56%)
6
SELECT COUNT(p0_.id) AS sclr_0 FROM production p0_ LEFT JOIN point_of_sale p1_ ON p0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON p0_.cluster_id = c2_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_vente_valid_b) = ? AND YEAR(p0_.date_vente_valid_b) = ? AND p0_.etat_id = ? AND p0_.category_id IN (?, ?, ?)
Parameters:
[
  4
  1
  2026
  2
  1
  2
  3
]
64.42 ms
(2.97%)
6
SELECT COUNT(DISTINCT p.titulaire_email) AS total_vente
        FROM production 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" => 1
  "annee" => 2026
]
59.36 ms
(2.73%)
6
SELECT COUNT(DISTINCT p.titulaire_email) AS total_vente
        FROM production 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" => 1
  "annee" => 2026
]
44.30 ms
(2.04%)
6
SELECT COUNT(DISTINCT p0_.titulaire_email) AS sclr_0 FROM production p0_ LEFT JOIN cluster c1_ ON p0_.cluster_id = c1_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_cmd_a) = ? AND YEAR(p0_.date_cmd_a) = ?
Parameters:
[
  4
  1
  2026
]
41.97 ms
(1.93%)
6
SELECT COUNT(DISTINCT p.titulaire_email) AS total_vente
        FROM production 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" => 1
  "annee" => 2026
]
40.16 ms
(1.85%)
6
SELECT COUNT(DISTINCT p.titulaire_email) AS total, WEEK(p.date_cmd_a,3) AS semaine
            FROM production 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" => 1
  "annee" => 2026
  "cat0" => 31
  "cat1" => 32
  "cat2" => 33
]
39.52 ms
(1.82%)
6
SELECT COUNT(DISTINCT p.id) AS total_vente
            FROM production 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" => 1
  "annee" => 2026
  "opt" => "NON"
  "opt2" => "OUI"
]
38.91 ms
(1.79%)
6
SELECT COUNT(DISTINCT p.id) AS total_vente
            FROM production 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" => 1
  "annee" => 2026
  "opt" => "OUI"
]
38.54 ms
(1.77%)
6
SELECT COUNT(DISTINCT p.id) AS total_vente
            FROM production 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" => 1
  "annee" => 2026
  "opt" => "OUI"
]
36.53 ms
(1.68%)
6
SELECT COUNT(DISTINCT p.id) AS total_vente
        FROM production 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" => 1
  "annee" => 2026
]
36.05 ms
(1.66%)
6
SELECT COUNT(DISTINCT p.id) AS total_vente
        FROM production 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" => 1
  "annee" => 2026
]
34.69 ms
(1.60%)
6
SELECT COUNT(DISTINCT p0_.titulaire_email) AS sclr_0 FROM production p0_ LEFT JOIN cluster c1_ ON p0_.cluster_id = c1_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_cmd_a) = ? AND YEAR(p0_.date_cmd_a) = ? AND p0_.fixe_chainage IS NOT NULL AND p0_.category_id IN (31, 32, 33)
Parameters:
[
  4
  1
  2026
]
34.31 ms
(1.58%)
6
SELECT COUNT(DISTINCT p.id) AS total_vente
        FROM production 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" => 1
  "annee" => 2026
]
34.14 ms
(1.57%)
6
SELECT COUNT(p0_.id) AS sclr_0 FROM production p0_ LEFT JOIN point_of_sale p1_ ON p0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON p0_.cluster_id = c2_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_cmd_a) = ? AND YEAR(p0_.date_cmd_a) = ? AND p0_.category_id IN (?, ?) ORDER BY sclr_0 DESC
Parameters:
[
  4
  1
  2026
  1
  3
]
33.25 ms
(1.53%)
6
SELECT COUNT(DISTINCT p.id) AS total_vente
        FROM production 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" => 1
  "annee" => 2026
]
32.64 ms
(1.50%)
6
SELECT COUNT(DISTINCT p.id) AS total_vente
        FROM production 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" => 1
  "annee" => 2026
]
14.34 ms
(0.66%)
6
SELECT COUNT(p0_.id) AS sclr_0 FROM production p0_ LEFT JOIN point_of_sale p1_ ON p0_.point_of_sale_id = p1_.id LEFT JOIN cluster c2_ ON p0_.cluster_id = c2_.id WHERE p0_.point_of_sale_id = ? AND MONTH(p0_.date_cmd_a) = ? AND YEAR(p0_.date_cmd_a) = ? AND p0_.product_id IN (150, 262, 264, 266, 334, 335, 341, 344, 345, 379, 441, 442, 443, 444) ORDER BY sclr_0 DESC
Parameters:
[
  4
  1
  2026
]
13.44 ms
(0.62%)
6
SELECT SUM(n0_.vv) AS sclr_0 FROM nmd_objectif_clusters n0_ WHERE n0_.cpv = ? AND n0_.mois = ? AND n0_.year = ?
Parameters:
[
  "1053520"
  1
  2026
]
13.26 ms
(0.61%)
6
SELECT AVG(s0_.note_satisfaction) AS sclr_0 FROM satisfaction_client s0_ LEFT JOIN production p1_ ON s0_.production_id = p1_.id LEFT JOIN cluster c2_ ON p1_.cluster_id = c2_.id WHERE MONTH(s0_.date_contrat) = ? AND YEAR(s0_.date_contrat) = ? AND s0_.cod_poin_vent = ? AND p1_.category_id IN (?, ?, ?)
Parameters:
[
  1
  2026
  "1053520"
  1
  2
  3
]
0.79 ms
(0.04%)
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.63 ms
(0.03%)
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.02%)
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
  • The mappings App\Entity\User#nmdArretCuivres and App\Entity\NmdArretCuivre#user are inconsistent with each other.
  • The mappings App\Entity\User#nmdArretFttbs and App\Entity\NmdArretFttb#user are inconsistent with each other.
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
  • The association App\Entity\NmdArretCuivre#user refers to the inverse side field App\Entity\User#NmdArretCuivres which does not exist.
App\Entity\NmdArretFttb
  • The association App\Entity\NmdArretFttb#user refers to the inverse side field App\Entity\User#NmdArretFttbs which does not exist.
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.