From 797bdac47cf24f6f487a3399c1073f95596b274c Mon Sep 17 00:00:00 2001 From: wahyun Date: Wed, 10 Jul 2024 16:33:47 +0700 Subject: [PATCH] fix: add gantt name url parameter && update format date --- edit-mode/function/ganttConfig.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/edit-mode/function/ganttConfig.js b/edit-mode/function/ganttConfig.js index 3cf1ef7..48ab3d1 100644 --- a/edit-mode/function/ganttConfig.js +++ b/edit-mode/function/ganttConfig.js @@ -7,6 +7,7 @@ const role_name = getUrlParameter("role_name"); const company_id = getUrlParameter("company_id"); const company_name = getUrlParameter("company_name"); const base_url_image = `https://project-api.ospro.id/assets/${company_name}/`; +const ganttName = getUrlParameter("gantt_name"); // const base_url_image = `http://localhost:8444/generic-ospro-backend/assets/${company_name}/`; const adwIntegrationUrl = "https://adw-api.ospro.id/api"; @@ -190,7 +191,7 @@ const editor = { cost: { type: "number", map_to: "rencana_biaya", min: 0 }, costActual: { type: "number", map_to: "biaya_actual", min: 0 }, status: { type: "text", map_to: "status" }, - job_count: { type: "number", map_to: "jumlah_pekerjaan", min: 0 }, + // job_count: { type: "number", map_to: "jumlah_pekerjaan", min: 0 }, job_unit: { type: "text", map_to: "satuan", min: 0 }, bobot_planning: { type: "number", map_to: "bobot_planning", min: 0 }, human_resource: (`
@@ -521,7 +522,7 @@ var allColumns = [ return roundToTwo(actual); }, resize: true }, - { name: "jumlah_pekerjaan", label: "Volume Plan", align: "center", min_width: 100, resize: true, editor: editor.job_count }, + // { name: "jumlah_pekerjaan", label: "Volume Plan", align: "center", min_width: 100, resize: true, editor: editor.job_count }, { name: "jobs_done", label: "Report", align: "center", min_width: 100, resize: true, template: function (text) { if (text.type == "project" || text.type == "milestone" || text.type == "header") { @@ -586,7 +587,7 @@ let columnShows = { baseline_progress: false, progress: true, progress_actual: true, - jumlah_pekerjaan: true, + // jumlah_pekerjaan: true, jobs_done: true, satuan: false, predecessor: false, @@ -614,7 +615,7 @@ gantt.config.columns = createColumnsConfig({ baseline_progress: true, progress: true, progress_actual: true, - jumlah_pekerjaan: true, + // jumlah_pekerjaan: true, jobs_done: true, satuan: true, predecessor: true,