-
Notifications
You must be signed in to change notification settings - Fork 0
/
list_tasks_given_by_me_working.php
132 lines (104 loc) · 3.26 KB
/
list_tasks_given_by_me_working.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
include_once '../blu/ControllerFactory.php';
$controller = ControllerFactory::getInstance()->getTaskController();
$data="";
$taskObj = new Task;
$taskObj->processRequest();
// print_r($taskObj);
// die();
$assign_id= $taskObj->assign_id;
if(isset($assign_id) && $assign_id !=""){
// $resObj =array();
$resObj1 = $controller->listTasksGivenByME($assign_id);
$cnt=1;
// $resultArray[] = $resObj1;
// $tt =array("ed"=>"fvreg");
// $obj_merged = (object) array_merge((array) $tt, (array) $resultArray);
// $cntt=0;
foreach($resObj1 as $key =>$res){
$res_total = 0;
$due_task = 0;
$reminder_task = 0;
///---///
// echo $res->assign_id,$res->responsible_id;
// exit;
$resObj2 = $controller->listTasksGivenByMEtoUser($res->assign_id,$res->responsible_id);
// print_r($resObj2);
// $resultArray[] = $resObj2;
$count_multi = sizeof($resObj2);
// exit;
if(!empty($resObj2) && $count_multi>1 ){
/*
$today = date("Y-m-d H:i:s");
// print_r($resObj2[0]);exit;
$rem_date1=$resObj2[0]->rem_date1;
if(date($rem_date1) < date($today)){
$reminder_task++;
}
$due_date=$resObj2[0]->due_date;
if(date($due_date) < date($today)){
$due_task++;
}
$resObj2[0]->res_total = $count_multi;
$resObj2[0]->reminder_task = $reminder_task;
$resObj2[0]->due_task = $due_task;
*/
$resObj2_array = $resObj2 ;
// $resultArray[] = $resObj2;
// $resultArray = (object) array_merge((array) $resObj2_array, (array) $resultArray);
// $resultArray1[] = array("responsible_name:"=>$res->responsible_name);
$resultArray[] =('responsible_name: '.$res->responsible_name);
$resultArray[] = $resObj2_array;
}else{
// print_r($res);exit;
// $resultArray2[] = array("responsible_name:"=>$res->responsible_name);
$resultArray[] = ('responsible_name: '.$res->responsible_name);
$resultArray[][] = $res;
}
// $resultArray = (object) array_merge((array) $resultArray2, (array) $resultArray1);
// $resultArray = array_merge($resultArray2,$resultArray1);
/*
elseif($count_multi==1){
$today = date("Y-m-d H:i:s");
// print_r($resObj2[0]);exit;
$rem_date1=$resObj2[0]->rem_date1;
if(date($rem_date1) < date($today)){
$reminder_task++;
}
$due_date=$resObj2[0]->due_date;
if(date($due_date) < date($today)){
$due_task++;
}
$res->res_total = $count_multi;
$res->reminder_task = $reminder_task;
$res->due_task = $due_task;
// print_r($res);exit;
$resultArray[$cnt] = $res;
$cnt++;
}
*/
//
}
// $resObj = array_unique($resObj);
// $obj_merged = (object) array_merge((array) $resObj2, (array) $resultArray);
$obj_merged = $resultArray;
if(!empty($obj_merged)){
$arr_result = array(RESULT => SUCCESS,
MESSAGE => "List of Tasks given by me..!",
DATA => $obj_merged);
}else{
$arr_result = array(RESULT => FAILED,
MESSAGE => "No Tasks Found..!",
DATA => $resObj);
}
$json = json_encode($arr_result);
echo preg_replace('/,\s*"[^"]+":null|"[^"]+":null,?/', '', $json); // remove null values
exit;
}else{
$arr_result = array(RESULT => FAILED,
MESSAGE => "Please provide the data.",
DATA => "");
echo json_encode($arr_result);
exit;
}
?>