Want to calculate sum of total hours worked in last 7 days, I have total hours worked in a day. I have 4 events like study, school, playing and sleeping. I want to calculate total number of hours spent in study and school in last 7 days. I am working on Cakephp3.x Any query is welcome cakephp or mysql
$driversHos = $this->DriverLogs->DriverLogGraphs->find('all', [
'conditions' => [
'OR' => [
['DriverLogGraphs.event_type' => 0], // On duty
['DriverLogGraphs.event_type' => 1] // driving
],
'DriverLogGraphs.driver_id' => $id,
'DriverLogGraphs.start_time >=' => $thisMonthFirstDay
],
'contain' => [
'DriverLogs.Companies',
'DriverLogs.Driver'
],
'fields' => [
'Driver.id',
'Driver.username',
'DriverLogs.driver_id',
'Companies.id',
'Companies.name',
'DriverLogGraphs.id',
'DriverLogGraphs.driver_log_id',
'DriverLogGraphs.event_type',
'event_name' => "CASE
WHEN DriverLogGraphs.event_type = '0' THEN 'ON DUTY'
WHEN DriverLogGraphs.event_type = '1' THEN 'DRIVING'
WHEN DriverLogGraphs.event_type = '2' THEN 'SLEEPER BIRTH'
WHEN DriverLogGraphs.event_type = '3' THEN 'OFF DUTY'
END",
'hos_date' => "STR_TO_DATE(DriverLogGraphs.start_time,'%Y-%m-%d')",
'hos_start' => "CONCAT(STR_TO_DATE(DriverLogGraphs.start_time,'%Y-%m-%d'),' ','00:00:00')",
'hos_end' => "CONCAT(STR_TO_DATE(DriverLogGraphs.start_time,'%Y-%m-%d'),' ','23:59:59')",
'today_start' => "CONCAT(CURDATE(), ' ', '00:00:00')",
'today_end' => "CONCAT(CURDATE(), ' ', '23:59:59')",
'work_time' => 'TIMESTAMPDIFF(SECOND, DriverLogGraphs.start_time, DriverLogGraphs.end_time)',
'hours_work_today' => 'SUM(TIMESTAMPDIFF(SECOND, DriverLogGraphs.start_time, DriverLogGraphs.end_time))',
's_time_7_days' => 'CONCAT( STR_TO_DATE( DriverLogGraphs.start_time - INTERVAL 6 DAY, "%Y-%m-%d" ) , "", "" )',
'e_time_7_days' => 'CONCAT( STR_TO_DATE( DriverLogGraphs.end_time, "%Y-%m-%d" ) , "", "" )',
's_time_8_days' => 'CONCAT( STR_TO_DATE( DriverLogGraphs.start_time - INTERVAL 7 DAY, "%Y-%m-%d" ) , "", "" )',
'e_time_8_days' => 'CONCAT( STR_TO_DATE( DriverLogGraphs.end_time, "%Y-%m-%d" ) , "", "" )',
'hours_work_last_7_days' => '
SUM(
IF (
DriverLogGraphs.start_time >= CONCAT(STR_TO_DATE(DriverLogGraphs.start_time - INTERVAL 6 DAY, "%Y-%m-%d" ) , " ", "00:00:00" )
AND
DriverLogGraphs.end_time <= CONCAT(STR_TO_DATE(DriverLogGraphs.end_time, "%Y-%m-%d" ) , " ", "23:59:59" ),
CASE
WHEN DriverLogGraphs.event_type = "0" THEN TIMESTAMPDIFF(SECOND, DriverLogGraphs.start_time, DriverLogGraphs.end_time)
WHEN DriverLogGraphs.event_type = "1" THEN TIMESTAMPDIFF(SECOND, DriverLogGraphs.start_time, DriverLogGraphs.end_time)
WHEN DriverLogGraphs.event_type = "2" THEN "0"
WHEN DriverLogGraphs.event_type = "3" THEN "0"
END,
""
)
)',
],
'group' => [
'hos_date',
],
'order' => [
'hos_start' => 'DESC',
]
])->hydrate(false)->toArray();