|
|
|
@ -534,7 +534,7 @@ class ActivityController extends Controller
|
|
|
|
|
->select('m_activity.name') |
|
|
|
|
->where('m_activity.proyek_id', $data['columns'][0]['value']) |
|
|
|
|
->where('m_activity.type_activity', 'task') |
|
|
|
|
->where('m_activity.persentase_progress', '>', 0) |
|
|
|
|
// ->where('m_activity.persentase_progress', '>', 0) |
|
|
|
|
->groupByRaw('m_activity.name') |
|
|
|
|
->get(); |
|
|
|
|
return response()->json(['status' => 'success', 'code' => 200, 'data' => $dataGet ], 200); |
|
|
|
@ -544,14 +544,14 @@ class ActivityController extends Controller
|
|
|
|
|
{ |
|
|
|
|
$dataBuilder = $this->setUpPayload($request->all(), 'm_activity'); |
|
|
|
|
$builder = $dataBuilder['builder']; |
|
|
|
|
$dataGet = $builder->select( 'selfTable.name', 'persentase_progress', |
|
|
|
|
$dataGet = $builder->select( 'selfTable.name', 'persentase_progress', 'selfTable.start_date', 'selfTable.end_date', 'duration', 'assign_hr_to_activity.id', |
|
|
|
|
'm_version_gantt.name_version', 'm_users.name as user_name', |
|
|
|
|
DB::raw('SUM(report_activity_material.qty) as qty'), 'assign_material_to_activity.qty_planning', |
|
|
|
|
'assign_material_to_activity.id as join_third_id') |
|
|
|
|
->join('m_version_gantt', 'm_version_gantt.id', '=', 'selfTable.version_gantt_id') |
|
|
|
|
->join('assign_hr_to_activity', 'assign_hr_to_activity.activity_id', '=', 'selfTable.id') |
|
|
|
|
->join('m_users', 'assign_hr_to_activity.user_id', '=', 'm_users.id') |
|
|
|
|
->join('report_activity_material', 'report_activity_material.activity_id', '=', 'selfTable.id') |
|
|
|
|
->leftJoin('assign_hr_to_activity', 'assign_hr_to_activity.activity_id', '=', 'selfTable.id') |
|
|
|
|
->leftJoin('m_users', 'assign_hr_to_activity.user_id', '=', 'm_users.id') |
|
|
|
|
->leftJoin('report_activity_material', 'report_activity_material.activity_id', '=', 'selfTable.id') |
|
|
|
|
->join('assign_material_to_activity', 'assign_material_to_activity.activity_id', '=', 'selfTable.id') |
|
|
|
|
->groupBy("selfTable.id") |
|
|
|
|
->groupBy("selfTable.name") |
|
|
|
@ -560,6 +560,7 @@ class ActivityController extends Controller
|
|
|
|
|
->groupBy("m_users.name") |
|
|
|
|
->groupBy("assign_material_to_activity.qty_planning") |
|
|
|
|
->groupBy("assign_material_to_activity.id") |
|
|
|
|
->groupBy("assign_hr_to_activity.id") |
|
|
|
|
->get(); |
|
|
|
|
return response()->json(['status' => 'success', 'code' => 200, 'data' => $dataGet ], 200); |
|
|
|
|
} |
|
|
|
|