45 lines
1.7 KiB
PHP
45 lines
1.7 KiB
PHP
<?php
|
|
$must_login = true ;
|
|
$require_path = '../../../' ;
|
|
$require_sub = '../../' ;
|
|
require( $require_sub.'header.php' ) ;
|
|
|
|
if ( $boolean_login ){
|
|
$status = '300' ;
|
|
|
|
$task_id = $array['task_id'] ;
|
|
$reason = $array['reason'] ;
|
|
|
|
if ( $task_id != '' && $reason != '' ){
|
|
$status = '201' ;
|
|
|
|
$select = $mysqli->query( "SELECT * FROM task a
|
|
WHERE a.deleted_at IS NULL AND a.task_id = '".$task_id."' AND a.created_by = '".$staff_info['staff_id']."' AND a.status IN ( 'pending', 'assigned', 'resubmit', 'progress', 'completed', 'confirmed' ) LIMIT 1" ) ;
|
|
if ( $select->num_rows > 0 ){
|
|
$status = '303' ;
|
|
|
|
$row = $select->fetch_assoc() ;
|
|
|
|
if ( $mysqli->query( "UPDATE task SET
|
|
status = 'cancelled'
|
|
WHERE task_id = '".$task_id."'" ) ) {
|
|
|
|
$mysqli->query( "INSERT INTO task_rejected
|
|
( `task_id`, `staff_id`, `remark` ) VALUES
|
|
( '".$task_id."', '".$staff_info['staff_id']."', '".$reason."' )" ) ;
|
|
|
|
$status = '200' ;
|
|
|
|
// push to notification
|
|
$related_staffid = getTaskRelatedStaff( $task_id, $row['created_by'], $row['assigned_by'] ) ;
|
|
foreach ( $related_staffid as $k => $v ){
|
|
pushToUserCron( 'task', $task_id, $v, 'Task Cancelled', 'Task ( '.$row['task_so'].' ) has been cancelled' ) ;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
require( $require_sub.'footer.php' ) ;
|
|
?>
|