Browse Source

Fix floating rounding error

pull/1/head
Wahyu Ramadhan 1 year ago
parent
commit
62703be75d
  1. 4
      edit-mode/function/ganttConfig.js

4
edit-mode/function/ganttConfig.js

@ -349,7 +349,7 @@ var allColumns = [
} }, } },
// { name: "status", label: "Status", align: "center", editor: editor.status, resize: true }, // { name: "status", label: "Status", align: "center", editor: editor.status, resize: true },
{ name: "bobot_planning", label: "Bobot Activity (%)", align: "center", editor: editor.bobot_planning, resize: true, min_width: 115, template: function (text) { { name: "bobot_planning", label: "Bobot Activity (%)", align: "center", editor: editor.bobot_planning, resize: true, min_width: 115, template: function (text) {
if(text.bobot_planning > 100){ if(text.bobot_planning.toFixed(2) > 100){
gantt.alert("Bobot tidak boleh lebih dari 100%!"); gantt.alert("Bobot tidak boleh lebih dari 100%!");
return; return;
} }
@ -367,7 +367,7 @@ var allColumns = [
{ name:"progress_actual", label: "Total Actual Progress (%)", align: "center", min_width: 150, template: function (text) { { name:"progress_actual", label: "Total Actual Progress (%)", align: "center", min_width: 150, template: function (text) {
let progress = text.progress let progress = text.progress
progress = progress*100 progress = progress*100
if(progress > 100){ if(progress.toFixed(2) > 100){
gantt.alert("Bobot tidak boleh lebih dari 100%!"); gantt.alert("Bobot tidak boleh lebih dari 100%!");
return; return;
} }

Loading…
Cancel
Save