|
|
|
@ -53,7 +53,8 @@ class ProjectController extends Controller
|
|
|
|
|
'mulai_proyek' => 'required', |
|
|
|
|
'akhir_proyek' => 'required', |
|
|
|
|
'rencana_biaya' => 'required', |
|
|
|
|
'type_proyek_id' => 'required' |
|
|
|
|
'type_proyek_id' => 'required', |
|
|
|
|
'company_id' => 'required' |
|
|
|
|
]); |
|
|
|
|
|
|
|
|
|
$data = $request->all(); |
|
|
|
@ -83,7 +84,7 @@ class ProjectController extends Controller
|
|
|
|
|
$result = Project::query() |
|
|
|
|
->from('m_proyek AS mp') |
|
|
|
|
->where('mp.id', $id) |
|
|
|
|
->selectRaw('value_proyek,scoupe_of_work,kode_sortname,jumlah_stakeholder,nama,mulai_proyek,akhir_proyek,area_kerja,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'); |
|
|
|
|
->selectRaw('value_proyek,mp.company_id,scoupe_of_work,kode_sortname,jumlah_stakeholder,nama,mulai_proyek,akhir_proyek,area_kerja,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') |
|
|
|
|