|
|
|
@ -71,10 +71,16 @@ class ProjectController extends Controller
|
|
|
|
|
return response()->json(['status' => 'failed', 'message' => 'id is required!', 'code' => 400], 400); |
|
|
|
|
|
|
|
|
|
$result = Project::query() |
|
|
|
|
->select(array_diff(DB::getSchemaBuilder()->getColumnListing('m_proyek'), ['created_by', 'created_at', 'updated_at', 'updated_by', 'scurve'])) |
|
|
|
|
->whereId($id) |
|
|
|
|
->first(); |
|
|
|
|
->from('m_proyek AS mp') |
|
|
|
|
->where('mp.id', $id) |
|
|
|
|
->selectRaw('kode_sortname,jumlah_stakeholder,nama,mulai_proyek,akhir_proyek,area_kerja,lokasi_kantor,rencana_biaya,biaya_actual,company,pm_id,type_proyek_id,divisi_id,persentase_progress,keterangan,durasi_proyek,progress_by_worklog,currency_symbol,late_consequence,assumtion,currency_code,currency_name,project_objectives,considered_success_when,potential_risk,testing_environment,budget_health,phase_id,calculation_status'); |
|
|
|
|
|
|
|
|
|
if (!is_null($result->first()['divisi_id'])) { |
|
|
|
|
$result->leftJoin('m_divisi', 'mp.divisi_id', '=', 'm_divisi.id') |
|
|
|
|
->addSelect(DB::raw('m_divisi.name AS nama_divisi')); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$result = $result->first(); |
|
|
|
|
|
|
|
|
|
if(!$result) |
|
|
|
|
return response()->json(['status'=>'failed','message'=> 'Data not found!','code'=> 404], 404); |
|
|
|
|