|
|
|
@ -2,32 +2,30 @@
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Controllers; |
|
|
|
|
|
|
|
|
|
use App\Helpers\MasterFunctionsHelper; |
|
|
|
|
use Illuminate\Http\Request; |
|
|
|
|
use App\Models\Project; |
|
|
|
|
use App\Models\UserToProyek; |
|
|
|
|
use App\Models\Activity; |
|
|
|
|
use App\Models\ActivityDokumen; |
|
|
|
|
use App\Models\UserToActivity; |
|
|
|
|
use App\Models\User; |
|
|
|
|
use App\Models\AssignMaterial; |
|
|
|
|
use App\Models\CommentActivity; |
|
|
|
|
use App\Models\DokumenProject; |
|
|
|
|
use App\Models\FolderDocumentProyek; |
|
|
|
|
use App\Models\Holiday; |
|
|
|
|
use App\Models\Image; |
|
|
|
|
use App\Models\Link; |
|
|
|
|
use App\Models\OfficeHours; |
|
|
|
|
use App\Models\Project; |
|
|
|
|
use App\Models\ProjectApproval; |
|
|
|
|
use App\Models\ProjectCharter; |
|
|
|
|
use App\Models\ProjectMileStone; |
|
|
|
|
use App\Models\ProjectParticipants; |
|
|
|
|
use App\Models\ProjectApproval; |
|
|
|
|
use App\Models\ProjectPhase; |
|
|
|
|
use App\Models\ProjectType; |
|
|
|
|
use App\Models\ReportActivity; |
|
|
|
|
use App\Models\ReportActivityMaterial; |
|
|
|
|
use App\Models\ProjectMileStone; |
|
|
|
|
use App\Models\ProjectParticipants; |
|
|
|
|
use App\Models\ShowHideColumn; |
|
|
|
|
use App\Models\User; |
|
|
|
|
use App\Models\UserToActivity; |
|
|
|
|
use App\Models\UserToProyek; |
|
|
|
|
use App\Models\VersionGantt; |
|
|
|
|
use Illuminate\Http\Request; |
|
|
|
|
use App\Models\Image; |
|
|
|
|
use App\Models\CommentActivity; |
|
|
|
|
use App\Models\Link; |
|
|
|
|
use App\Models\ActivityDokumen; |
|
|
|
|
use App\Models\Holiday; |
|
|
|
|
use App\Models\ReportActivity; |
|
|
|
|
use App\Models\OfficeHours; |
|
|
|
|
use Illuminate\Support\Facades\DB; |
|
|
|
|
|
|
|
|
|
const API_GEOLOCATION = "https://nominatim.oslogdev.com/search/ADDR?format=json&addressdetails=1&limit=1"; |
|
|
|
@ -215,20 +213,6 @@ class ProjectController extends Controller
|
|
|
|
|
return response()->json(['status'=>'success','code'=>200,'data'=>$dataGet, 'totalRecord'=>$totalRecord], 200); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function getManpower($proyek_id){ |
|
|
|
|
$manPower = UserToProyek::where('proyek_id', $proyek_id)->get(); |
|
|
|
|
$manCount = $manPower->count(); |
|
|
|
|
return response()->json(['data'=>$manPower, 'totalRecord'=>$manCount]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function getAssignedHR($gantt_id){ |
|
|
|
|
$results = UserToActivity::select('assign_hr_to_activity.proyek_id', 'assign_hr_to_activity.user_id', 'm_activity.id', 'm_activity.name', 'm_activity.start_date', 'm_activity.end_date') |
|
|
|
|
->join('m_activity', 'm_activity.id', '=', 'assign_hr_to_activity.activity_id') |
|
|
|
|
->where('assign_hr_to_activity.version_gantt_id', $gantt_id) |
|
|
|
|
->get(); |
|
|
|
|
return response()->json(['data'=>$results]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function list() |
|
|
|
|
{ |
|
|
|
|
$data = Project::orderBy('id', 'desc')->get(); |
|
|
|
@ -245,7 +229,7 @@ class ProjectController extends Controller
|
|
|
|
|
$scheduleHealth = "on-track"; |
|
|
|
|
$rootActivity = Activity::whereNull('parent_id')->where('proyek_id', $d->id)->orderBy('version_gantt_id', 'desc')->first(); |
|
|
|
|
if($rootActivity){ |
|
|
|
|
$costVariance = (int)$d->rencana_biaya - $rootActivity->biaya_actual ?? 0; |
|
|
|
|
$costVariance = $d->rencana_biaya - $rootActivity->biaya_actual; |
|
|
|
|
$actualCost = $rootActivity->biaya_actual ?? 0; |
|
|
|
|
$progress = $rootActivity->persentase_progress ?? 0; |
|
|
|
|
|
|
|
|
@ -263,7 +247,7 @@ class ProjectController extends Controller
|
|
|
|
|
$lastActivity = date("d/m/Y", strtotime($rootActivity->end_date)); |
|
|
|
|
} |
|
|
|
|
$d->plannedInterval = date("d/m/Y", strtotime($d->mulai_proyek)) . " - " . date("d/m/Y", strtotime($d->akhir_proyek)); |
|
|
|
|
$d->plannedCost = (int)$d->rencana_biaya; |
|
|
|
|
$d->plannedCost = $d->rencana_biaya; |
|
|
|
|
$d->actualCost = $actualCost; |
|
|
|
|
$d->lastActivity = $lastActivity ?? "-"; |
|
|
|
|
$d->costVariance = $costVariance; |
|
|
|
@ -272,184 +256,126 @@ class ProjectController extends Controller
|
|
|
|
|
$d->progress = $progress; |
|
|
|
|
$d->lastGanttId = VersionGantt::where("proyek_id", $d->id)->orderBy('id', 'desc')->first()->id ?? null; |
|
|
|
|
$d->manpower = UserToProyek::where("proyek_id", $d->id)->count() ?? 0; |
|
|
|
|
$d->projectManager = DB::table('m_proyek') |
|
|
|
|
->join('m_users', 'm_users.id', '=', 'm_proyek.pm_id') |
|
|
|
|
->where('m_proyek.id', $d->id) |
|
|
|
|
->pluck('m_users.name') |
|
|
|
|
->first(); |
|
|
|
|
$d->geolocation = []; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$totalPlannedCost = $data->sum('plannedCost'); |
|
|
|
|
$totalActualCost = $data->sum('actualCost'); |
|
|
|
|
$d->projectManager = DB::table('m_proyek') |
|
|
|
|
->join('m_users', 'm_users.id', '=', 'm_proyek.pm_id') |
|
|
|
|
->where('m_proyek.id', $d->id) |
|
|
|
|
->pluck('m_users.name') |
|
|
|
|
->first(); |
|
|
|
|
if($d->area_kerja != ''){ |
|
|
|
|
$d->geolocation = $this->httpReq($d->area_kerja); |
|
|
|
|
$d->geolocation = []; |
|
|
|
|
} else { |
|
|
|
|
$d->geolocation = []; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$totalPlannedCost = $data->sum('plannedCost'); |
|
|
|
|
$totalActualCost = $data->sum('actualCost'); |
|
|
|
|
$manpowers = User::count(); |
|
|
|
|
$projectsOnDanger = Project::where('budget_health', 'danger')->count(); |
|
|
|
|
$projectPhases = ProjectPhase::orderBy('order', 'asc')->pluck('name'); |
|
|
|
|
$projectTypes = ProjectType::orderBy('id', 'asc')->pluck('name'); |
|
|
|
|
try { |
|
|
|
|
$projectsByPhase = DB::table('m_proyek') |
|
|
|
|
->select('m_proyek_phase.name', 'm_proyek_phase.color', DB::raw('count(*) as total')) |
|
|
|
|
->join('m_proyek_phase', 'm_proyek_phase.id', '=', 'm_proyek.phase_id') |
|
|
|
|
->groupBy('m_proyek_phase.name', 'm_proyek_phase.color') |
|
|
|
|
->get(); |
|
|
|
|
} catch (\DivisionByZeroError $e) { |
|
|
|
|
return response()->json(['message' => $e->getMessage()]); |
|
|
|
|
} |
|
|
|
|
try { |
|
|
|
|
$projectsByType = DB::table('m_proyek') |
|
|
|
|
->select('m_type_proyek.name', DB::raw('count(*) as total')) |
|
|
|
|
->join('m_type_proyek', 'm_type_proyek.id', '=', 'm_proyek.type_proyek_id') |
|
|
|
|
->groupBy('m_type_proyek.name') |
|
|
|
|
->get(); |
|
|
|
|
} catch (\DivisionByZeroError $e) { |
|
|
|
|
return response()->json(['message' => $e->getMessage()]); |
|
|
|
|
} |
|
|
|
|
$projectPhases = ProjectPhase::orderBy('order', 'asc')->pluck('name'); |
|
|
|
|
$projectTypes = ProjectType::orderBy('id', 'asc')->pluck('name'); |
|
|
|
|
try { |
|
|
|
|
$projectsByPhase = DB::table('m_proyek') |
|
|
|
|
->select('m_proyek_phase.name', 'm_proyek_phase.color', DB::raw('count(*) as total')) |
|
|
|
|
->join('m_proyek_phase', 'm_proyek_phase.id', '=', 'm_proyek.phase_id') |
|
|
|
|
->groupBy('m_proyek_phase.name', 'm_proyek_phase.color') |
|
|
|
|
->get(); |
|
|
|
|
} catch (\Exception $e) { |
|
|
|
|
return response()->json(['message' => $e->getMessage()]); |
|
|
|
|
} |
|
|
|
|
try { |
|
|
|
|
$projectsByType = DB::table('m_proyek') |
|
|
|
|
->select('m_type_proyek.name', DB::raw('count(*) as total')) |
|
|
|
|
->join('m_type_proyek', 'm_type_proyek.id', '=', 'm_proyek.type_proyek_id') |
|
|
|
|
->groupBy('m_type_proyek.name') |
|
|
|
|
->get(); |
|
|
|
|
} catch (\Exception $e) { |
|
|
|
|
return response()->json(['message' => $e->getMessage()]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return response()->json( |
|
|
|
|
[ |
|
|
|
|
'status'=>'success', |
|
|
|
|
'code'=>200, |
|
|
|
|
'data'=>$data, |
|
|
|
|
'totalRecord'=>$countData, |
|
|
|
|
'totalPlannedCost' => $totalPlannedCost, |
|
|
|
|
'totalActualCost' => $totalActualCost, |
|
|
|
|
'totalRevenue' => $totalPlannedCost - $totalActualCost, |
|
|
|
|
'manpowers' => $manpowers, |
|
|
|
|
'projectsOnDanger'=> $projectsOnDanger, |
|
|
|
|
'projectPhases' => $projectPhases, |
|
|
|
|
'projectsByPhase' => $projectsByPhase, |
|
|
|
|
'projectTypes' => $projectTypes, |
|
|
|
|
'projectsByType' => $projectsByType, |
|
|
|
|
], 200); |
|
|
|
|
[ |
|
|
|
|
'status'=>'success', |
|
|
|
|
'code'=>200, |
|
|
|
|
'data'=>$data, |
|
|
|
|
'totalRecord'=>$countData, |
|
|
|
|
'totalPlannedCost' => $totalPlannedCost, |
|
|
|
|
'totalActualCost' => $totalActualCost, |
|
|
|
|
'totalRevenue' => $totalPlannedCost - $totalActualCost, |
|
|
|
|
'manpowers' => $manpowers, |
|
|
|
|
'projectsOnDanger'=> $projectsOnDanger, |
|
|
|
|
'projectPhases' => $projectPhases, |
|
|
|
|
'projectsByPhase' => $projectsByPhase, |
|
|
|
|
'projectTypes' => $projectTypes, |
|
|
|
|
'projectsByType' => $projectsByType, |
|
|
|
|
], 200); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function detail($id){ |
|
|
|
|
if(empty($id) || !is_int((int)$id)) |
|
|
|
|
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
|
|
|
|
|
|
|
|
|
$result = Project::find($id); |
|
|
|
|
|
|
|
|
|
if(!$result) |
|
|
|
|
return response()->json(['status'=>'failed','message'=> 'Data not found!','code'=> 404], 404); |
|
|
|
|
|
|
|
|
|
$gantt = MasterFunctionsHelper::getLatestGantt($id); |
|
|
|
|
$result->projectManager = User::where('id', $result->pm_id)->value('name'); |
|
|
|
|
$result->header = Activity::whereNull('parent_id')->where("proyek_id", $id)->where("version_gantt_id", $gantt['last_gantt_id'])->first(); |
|
|
|
|
return response()->json(['status'=>'success','code'=> 200,'data'=>$result], 200); |
|
|
|
|
} |
|
|
|
|
public function getListProjectTask($id){ |
|
|
|
|
$data = UserToActivity::select("assign_hr_to_activity.user_id as user_id","m_proyek.*") |
|
|
|
|
->where("assign_hr_to_activity.user_id", $id) |
|
|
|
|
->join('m_proyek', 'assign_hr_to_activity.proyek_id', '=', 'm_proyek.id') |
|
|
|
|
->groupBy("m_proyek.proyek_id") |
|
|
|
|
->get(); |
|
|
|
|
|
|
|
|
|
public function synchronizeReport($gantt_id) |
|
|
|
|
{ |
|
|
|
|
$activities = Activity::where("version_gantt_id", $gantt_id)->get(); |
|
|
|
|
$reports = []; |
|
|
|
|
|
|
|
|
|
foreach($activities as $activity) { |
|
|
|
|
$activity_id = $activity->id; |
|
|
|
|
$countReports = ReportActivityMaterial::where('activity_id', $activity_id)->count(); |
|
|
|
|
if ($countReports === 1) { |
|
|
|
|
$dataReports = ReportActivityMaterial::where('activity_id', $activity_id)->orderBy('report_date')->get(); |
|
|
|
|
foreach($dataReports as $dr) { |
|
|
|
|
$reports[] = array( |
|
|
|
|
'activity_id'=>$activity_id, |
|
|
|
|
'min_date'=>$dr->report_date, |
|
|
|
|
'max_date'=>date_modify(date_create($dr->report_date), "1 days") |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if ($countReports > 1) { |
|
|
|
|
$firstReport = ReportActivityMaterial::where('activity_id', $activity_id)->orderBy('report_date')->first(); |
|
|
|
|
$lastReport = ReportActivityMaterial::where('activity_id', $activity_id)->orderByDesc('report_date')->first(); |
|
|
|
|
$reports[] = array( |
|
|
|
|
'activity_id'=>$activity_id, |
|
|
|
|
'min_date'=>$firstReport->report_date, |
|
|
|
|
'max_date'=>date_modify(date_create($lastReport->report_date), "1 days") |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
$activity->reports = $reports; |
|
|
|
|
} |
|
|
|
|
/* return response()->json(['status'=>'success','data'=> $reports,'code'=>200], 200); */ |
|
|
|
|
/* return response()->json(['status'=>'success','data'=> $activities,'code'=>200], 200); */ |
|
|
|
|
|
|
|
|
|
for ($i=0; $i < count($reports); $i++) { |
|
|
|
|
$activity = Activity::find($reports[$i]['activity_id']); |
|
|
|
|
$activity->start_date = $reports[$i]['min_date']; |
|
|
|
|
$activity->end_date = $reports[$i]['max_date']; |
|
|
|
|
$activity->save(); |
|
|
|
|
} |
|
|
|
|
if(!$data) |
|
|
|
|
return response()->json(['status'=>'failed','message'=>'Data not found!','code'=> 404], 404); |
|
|
|
|
|
|
|
|
|
return response()->json(['status'=>'success','message'=>'Synchronize to report success!','code'=>200], 200); |
|
|
|
|
return response()->json(['status'=>'success','code'=>200,'data'=>$data], 200); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function setBaseline($gantt_id) |
|
|
|
|
public function dashboard($id) |
|
|
|
|
{ |
|
|
|
|
$activities = Activity::where("version_gantt_id", $gantt_id)->get(); |
|
|
|
|
$data = DB::table('m_proyek as mp') |
|
|
|
|
->select('mp.kode_sortname', 'mp.nama as name_project', 'mp.mulai_proyek as start', 'mp.akhir_proyek as finish', |
|
|
|
|
'mp.rencana_biaya', 'mp.company', 'mp.currency_symbol', 'mu.name as pm', 'mp.budget_health') |
|
|
|
|
->join('m_users as mu', 'mu.id', '=', 'mp.pm_id') |
|
|
|
|
->where('mp.id', $id) |
|
|
|
|
->first(); |
|
|
|
|
|
|
|
|
|
foreach ($activities as $activity) { |
|
|
|
|
$activity->update([ |
|
|
|
|
"planned_start"=>$activity->start_date, |
|
|
|
|
"planned_end"=>$activity->end_date, |
|
|
|
|
]); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return response()->json(['status'=>'success','message'=>'Set baseline success!','code'=> 200], 200); |
|
|
|
|
} |
|
|
|
|
if(!$data) |
|
|
|
|
return response()->json(['status'=>'failed','message'=>'Data tidak ditemukan!','code'=> 404], 404); |
|
|
|
|
|
|
|
|
|
public function getOverdueActivities(Request $request){ |
|
|
|
|
$payload = $request->all(); |
|
|
|
|
if(empty($payload['id']) || !is_int((int)$payload['id'])) |
|
|
|
|
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
|
|
|
|
$manpowers = UserToProyek::where('proyek_id', $id)->count(); |
|
|
|
|
$rootActivity = Activity::whereNull('parent_id')->where('proyek_id', $id)->orderBy('version_gantt_id', 'desc')->first(); |
|
|
|
|
|
|
|
|
|
$result = Project::find($payload['id']); |
|
|
|
|
$actualCost = @$rootActivity->biaya_actual ?? 0; |
|
|
|
|
$progress = @$rootActivity->persentase_progress ?? 0; |
|
|
|
|
|
|
|
|
|
if(!$result) |
|
|
|
|
return response()->json(['status'=>'failed','message'=> 'Project not found!','code'=> 404], 404); |
|
|
|
|
//TODO possible overdue bug |
|
|
|
|
if(isset($payload['till_date'])) |
|
|
|
|
$overdueActivities = Activity::where('proyek_id', $payload['id'])->whereNotNull('parent_id')->where('persentase_progress', '!=', 100)->whereDate('end_date','<=',$payload['till_date'])->orderBy('end_date', 'asc')->get(); |
|
|
|
|
else |
|
|
|
|
$overdueActivities = Activity::where('proyek_id', $payload['id'])->whereNotNull('parent_id')->where('persentase_progress', '!=', 100)->orderBy('end_date', 'asc')->get(); |
|
|
|
|
$commentActivity = DB::table('m_comment_activity as mca') |
|
|
|
|
->select('mca.activity_id', 'mca.comment as comment', 'mca.created_by as comment_by', 'mca.created_at as comment_created', |
|
|
|
|
'ma.name as activity') |
|
|
|
|
->join('m_activity as ma', 'ma.id', '=', 'mca.activity_id') |
|
|
|
|
->where('ma.proyek_id', $id) |
|
|
|
|
->orderBy('comment_by') |
|
|
|
|
->take(2) |
|
|
|
|
->get(); |
|
|
|
|
|
|
|
|
|
$result->overdueActivities = $overdueActivities; |
|
|
|
|
$data->actual_cost = $actualCost; |
|
|
|
|
$data->progress = $progress; |
|
|
|
|
$data->comment = $commentActivity; |
|
|
|
|
$data->man_power = $manpowers; |
|
|
|
|
|
|
|
|
|
return response()->json(['status'=>'success','code'=> 200,'data'=>$result], 200); |
|
|
|
|
return response()->json(['status'=>'success','code'=>200,'data'=> $data], 200); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function getInvoiceIntegration(Request $request) { |
|
|
|
|
$search = urlencode($request->search); |
|
|
|
|
if(empty($search)) |
|
|
|
|
return response()->json(['status'=>'error', 'message'=>'Empty query string!'], 400); |
|
|
|
|
$url = str_replace("SEARCH", $search, config('api.adw').'/project_cost?project_no=SEARCH'); |
|
|
|
|
private function httpReq($search){ |
|
|
|
|
$ch = curl_init(); |
|
|
|
|
curl_setopt($ch, CURLOPT_URL, str_replace("ADDR", $search, API_GEOLOCATION)); |
|
|
|
|
|
|
|
|
|
$response = MasterFunctionsHelper::curlReq($url); |
|
|
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); |
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
|
|
|
curl_setopt($ch, CURLOPT_VERBOSE, true); |
|
|
|
|
curl_setopt($ch, CURLOPT_STDERR, fopen('php://stderr', 'w')); |
|
|
|
|
|
|
|
|
|
$info = curl_getinfo($ch); |
|
|
|
|
|
|
|
|
|
return response()->json(['status'=>'success', 'data'=> $response, 'code'=>200], 200); |
|
|
|
|
} |
|
|
|
|
$output = curl_exec($ch); |
|
|
|
|
curl_close($ch); |
|
|
|
|
|
|
|
|
|
public function getReportDistribution(Request $request){ |
|
|
|
|
$payload = $request->all(); |
|
|
|
|
|
|
|
|
|
if(empty($payload['project_id']) || !is_int((int)$payload['project_id'])) |
|
|
|
|
return response()->json(['status'=>'failed','message'=>'id is required!','code'=>400], 400); |
|
|
|
|
|
|
|
|
|
$reports = DB::table('assign_material_to_activity as ama') |
|
|
|
|
->select('u.name', 'a.name as activity_name', 'ama.qty_planning', 'ram.qty as qty_real','rm.description as material_name', 'rm.uom as material_unit', |
|
|
|
|
'ram.lat', 'ram.lon', 'ram.description as report_notes', 'ram.report_date') |
|
|
|
|
->join('report_activity_material as ram', 'ram.assign_material_id', '=', 'ama.id') |
|
|
|
|
->join('m_req_material as rm', 'rm.id', '=', 'ama.material_id') |
|
|
|
|
->join('m_activity as a', 'a.id', '=', 'ama.activity_id') |
|
|
|
|
->join('m_users as u', 'u.id', '=', 'ram.user_id') |
|
|
|
|
->where('ama.proyek_id', '=', $payload['project_id']) |
|
|
|
|
->whereNotNull('ram.lat') |
|
|
|
|
->whereBetween('ram.report_date', [$payload['start_date'], $payload['end_date']]) |
|
|
|
|
->get(); |
|
|
|
|
|
|
|
|
|
return response()->json(['status'=>'success', 'code'=> 200, 'data'=> $reports], 200); |
|
|
|
|
return json_decode($output); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function getSCurve(Request $request){ |
|
|
|
|
$data = MasterFunctionsHelper::getSCurve($request); |
|
|
|
|
return response()->json(['status'=>'success','code'=>200, 'data' => $data], 200); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|