FixedAssetsMovement.js 192 KB
Newer Older
faisalhamdi's avatar
faisalhamdi committed
1
import React, { Component } from 'react';
faisalhamdi's avatar
faisalhamdi committed
2
import { Typography, Paper, createMuiTheme, MuiThemeProvider, TableCell, FormControlLabel, TextField, Input, Tooltip, withStyles, Snackbar } from '@material-ui/core';
faisalhamdi's avatar
faisalhamdi committed
3 4
import MUIDataTable from 'mui-datatables';
import NumberFormat from 'react-number-format';
faisalhamdi's avatar
faisalhamdi committed
5
import api from '../../api';
faisalhamdi's avatar
faisalhamdi committed
6 7 8
import PropagateLoader from "react-spinners/PropagateLoader"
import Images from '../../assets/Images';
import ReactTooltip from 'react-tooltip';
faisalhamdi's avatar
faisalhamdi committed
9 10
import UploadFile from "../../library/Upload";
import { ExcelRenderer } from 'react-excel-renderer';
faisalhamdi's avatar
faisalhamdi committed
11
import { Alert } from '@material-ui/lab';
faisalhamdi's avatar
faisalhamdi committed
12
import Constant from '../../library/Constant';
Deni Rinaldi's avatar
Deni Rinaldi committed
13
import * as R from 'ramda'
faisalhamdi's avatar
faisalhamdi committed
14

faisalhamdi's avatar
faisalhamdi committed
15 16 17 18 19 20 21 22 23
const LightTooltip = withStyles((theme) => ({
    tooltip: {
        backgroundColor: theme.palette.common.white,
        color: 'rgba(0, 0, 0, 0.87)',
        boxShadow: theme.shadows[1],
        fontSize: 11,
    },
}))(Tooltip);

faisalhamdi's avatar
faisalhamdi committed
24
var ct = require("../../library/CustomTable");
faisalhamdi's avatar
faisalhamdi committed
25
const getMuiTheme = () => createMuiTheme(ct.customTable3());
faisalhamdi's avatar
faisalhamdi committed
26 27 28 29 30 31 32 33 34 35 36

const options = ct.customOptionsFixedColumn();
const style = {
    position: "sticky",
    left: 0,
    background: "white",
    zIndex: 101,
};
const style2 = {
    position: "sticky",
    background: "white",
faisalhamdi's avatar
faisalhamdi committed
37
    zIndex: 100
faisalhamdi's avatar
faisalhamdi committed
38 39 40
};

export default class FixedAssetsMovement extends Component {
faisalhamdi's avatar
faisalhamdi committed
41 42 43
    constructor(props) {
        super(props)
        this.state = {
faisalhamdi's avatar
faisalhamdi committed
44
            dataTable: [],
faisalhamdi's avatar
faisalhamdi committed
45
            visibleFixedAssetsMovement: true,
faisalhamdi's avatar
faisalhamdi committed
46 47 48
            disabledSave: true,
            editable: false,
            buttonError: false,
faisalhamdi's avatar
faisalhamdi committed
49
            judulColumn: null,
faisalhamdi's avatar
faisalhamdi committed
50 51
            updateBy: '-',
            handleTekTekTek: 0
faisalhamdi's avatar
faisalhamdi committed
52
        }
faisalhamdi's avatar
faisalhamdi committed
53
        this.handleValue = this.handleValue.bind(this)
faisalhamdi's avatar
faisalhamdi committed
54
        this.fileHandler = this.fileHandler.bind(this);
faisalhamdi's avatar
faisalhamdi committed
55 56 57
    }

    componentDidMount() {
faisalhamdi's avatar
faisalhamdi committed
58
        this.getItemHierarki()
faisalhamdi's avatar
faisalhamdi committed
59
        this.getLatestUpdate()
faisalhamdi's avatar
faisalhamdi committed
60 61
    }

faisalhamdi's avatar
faisalhamdi committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75
    getLatestUpdate() {
        let payload = {
            "report_id": this.props.report_id,
            "revision": Number(this.props.revision),
            "periode": this.props.periode,
            "company_id": this.props.company.company_id,
            "submission_id": this.props.submissionID
        }
        api.create().getLastestUpdateMB(payload).then(response => {
            if (response.data) {
                if (response.data.status === "success") {
                    this.setState({
                        updateBy: response.data.data.latest_update === null ? '-' : response.data.data.latest_update
                    })
faisalhamdi's avatar
faisalhamdi committed
76 77 78 79 80 81 82 83 84
                } else {
                    this.setState({ alert: true, messageAlert: response.data.message, typeAlert: 'warning', loading: false }, () => {
                        if (response.data.message.includes("Someone Logged In")) {
                            setTimeout(() => {
                                localStorage.removeItem(Constant.TOKEN)
                                window.location.reload();
                            }, 1000);
                        }
                    })
faisalhamdi's avatar
faisalhamdi committed
85
                }
faisalhamdi's avatar
faisalhamdi committed
86 87
            } else {
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error', loading: false })
faisalhamdi's avatar
faisalhamdi committed
88 89 90 91
            }
        })
    }

faisalhamdi's avatar
faisalhamdi committed
92
    getItemHierarki() {
faisalhamdi's avatar
faisalhamdi committed
93
        this.setState({ loading: true })
faisalhamdi's avatar
faisalhamdi committed
94 95
        let payload = {
            "report_id": this.props.report_id,
faisalhamdi's avatar
faisalhamdi committed
96 97
            "revision": Number(this.props.revision),
            "periode": this.props.periode,
faisalhamdi's avatar
faisalhamdi committed
98 99
            "company_id": this.props.company.company_id,
            "submission_id": this.props.submissionID
faisalhamdi's avatar
faisalhamdi committed
100
        }
faisalhamdi's avatar
faisalhamdi committed
101
        api.create().getDetailReportMB(payload).then(response => {
Dida Adams Arizona's avatar
Dida Adams Arizona committed
102
            // console.log(response);
faisalhamdi's avatar
faisalhamdi committed
103
            let dataTable = []
faisalhamdi's avatar
faisalhamdi committed
104
            if (response.data) {
faisalhamdi's avatar
faisalhamdi committed
105 106 107 108 109 110 111 112 113 114 115 116 117 118
                if (response.ok) {
                    if (response.data.status === 'success') {
                        let res = response.data.data
                        const handlePushChild = (item) => {
                            let indexIDzz = dataTable.findIndex((val) => val[1] === item.id)
                            if (indexIDzz === -1) {
                                dataTable.push([
                                    item.type_report_id,
                                    item.id,
                                    item.parent,
                                    item.formula,
                                    item.level,
                                    item.description,
                                    item.fixed_asset_movement.total_actual_before === null ? "0" : item.fixed_asset_movement.total_actual_before === "" ? "0" : item.fixed_asset_movement.total_actual_before,
Deni Rinaldi's avatar
Deni Rinaldi committed
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.january).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.january, formula: item.fixed_asset_movement.january_formula } : Number(item.fixed_asset_movement.january).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.february).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.february, formula: item.fixed_asset_movement.february_formula } : Number(item.fixed_asset_movement.february).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.march).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.march, formula: item.fixed_asset_movement.march_formula } : Number(item.fixed_asset_movement.march).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.april).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.april, formula: item.fixed_asset_movement.april_formula } : Number(item.fixed_asset_movement.april).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.may).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.may, formula: item.fixed_asset_movement.may_formula } : Number(item.fixed_asset_movement.may).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.june).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.june, formula: item.fixed_asset_movement.june_formula } : Number(item.fixed_asset_movement.june).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.july).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.july, formula: item.fixed_asset_movement.july_formula } : Number(item.fixed_asset_movement.july).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.august).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.august, formula: item.fixed_asset_movement.august_formula } : Number(item.fixed_asset_movement.august).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.september).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.september, formula: item.fixed_asset_movement.september_formula } : Number(item.fixed_asset_movement.september).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.october).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.october, formula: item.fixed_asset_movement.october_formula } : Number(item.fixed_asset_movement.october).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.november).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.november, formula: item.fixed_asset_movement.november_formula } : Number(item.fixed_asset_movement.november).toFixed(1),
                                    this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.december).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.december, formula: item.fixed_asset_movement.december_formula } : Number(item.fixed_asset_movement.december).toFixed(1),
                                    Number(item.fixed_asset_movement.total_current_year).toFixed(1),
                                    Number(item.fixed_asset_movement.total_next_year).toFixed(1),
                                    Number(item.fixed_asset_movement.total_more_year).toFixed(1),
faisalhamdi's avatar
faisalhamdi committed
134 135 136 137 138 139 140 141 142 143 144 145
                                    item.order,
                                    item.fixed_asset_movement.forecast_formula,
                                    item.fixed_asset_movement.before_formula
                                ])
                            }
                            if (item.children !== null) {
                                if (item.children.length > 0) {
                                    item.children.map((items, indexs) => {
                                        handlePushChild(items)
                                    })
                                }
                            }
faisalhamdi's avatar
faisalhamdi committed
146
                        }
faisalhamdi's avatar
faisalhamdi committed
147 148 149 150 151 152 153 154 155
                        res.map((item, index) => {
                            dataTable.push([
                                item.type_report_id,
                                item.id,
                                item.parent,
                                item.formula,
                                item.level,
                                item.description,
                                item.fixed_asset_movement.total_actual_before === null ? "0" : item.fixed_asset_movement.total_actual_before === "" ? "0" : item.fixed_asset_movement.total_actual_before,
Deni Rinaldi's avatar
Deni Rinaldi committed
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.january).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.january, formula: item.fixed_asset_movement.january_formula } : Number(item.fixed_asset_movement.january).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.february).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.february, formula: item.fixed_asset_movement.february_formula } : Number(item.fixed_asset_movement.february).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.march).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.march, formula: item.fixed_asset_movement.march_formula } : Number(item.fixed_asset_movement.march).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.april).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.april, formula: item.fixed_asset_movement.april_formula } : Number(item.fixed_asset_movement.april).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.may).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.may, formula: item.fixed_asset_movement.may_formula } : Number(item.fixed_asset_movement.may).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.june).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.june, formula: item.fixed_asset_movement.june_formula } : Number(item.fixed_asset_movement.june).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.july).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.july, formula: item.fixed_asset_movement.july_formula } : Number(item.fixed_asset_movement.july).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.august).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.august, formula: item.fixed_asset_movement.august_formula } : Number(item.fixed_asset_movement.august).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.september).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.september, formula: item.fixed_asset_movement.september_formula } : Number(item.fixed_asset_movement.september).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.october).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.october, formula: item.fixed_asset_movement.october_formula } : Number(item.fixed_asset_movement.october).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.november).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.november, formula: item.fixed_asset_movement.november_formula } : Number(item.fixed_asset_movement.november).toFixed(1),
                                this.props.status === 'CLOSED' ? Number(item.fixed_asset_movement.december).toFixed(1) : item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.fixed_asset_movement.december, formula: item.fixed_asset_movement.december_formula } : Number(item.fixed_asset_movement.december).toFixed(1),
                                Number(item.fixed_asset_movement.total_current_year).toFixed(1),
                                Number(item.fixed_asset_movement.total_next_year).toFixed(1),
                                Number(item.fixed_asset_movement.total_more_year).toFixed(1),
faisalhamdi's avatar
faisalhamdi committed
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
                                item.order,
                                item.fixed_asset_movement.forecast_formula,
                                item.fixed_asset_movement.before_formula
                            ])
                            if (item.children !== null) {
                                if (item.children.length > 0) {
                                    item.children.map((items, indexs) => {
                                        handlePushChild(items)
                                    })
                                }
                            }
                        })
                        this.setState({ dataTable, loading: false, buttonError: true, editable: true })
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
                            if (response.data.message.includes("Someone Logged In")) {
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
faisalhamdi's avatar
faisalhamdi committed
193
                    }
faisalhamdi's avatar
faisalhamdi committed
194
                } else {
faisalhamdi's avatar
faisalhamdi committed
195
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error', loading: false})
faisalhamdi's avatar
faisalhamdi committed
196
                }
faisalhamdi's avatar
faisalhamdi committed
197
            } else {
d.arizona's avatar
d.arizona committed
198
                this.setState({ alert: true, messageAlert: 'Connection Timeout, please check your Connection', tipeAlert: 'error', loading: false })
faisalhamdi's avatar
faisalhamdi committed
199 200 201 202 203 204 205 206
            }
        })
    }

    handleValue(data) {
        let total = 0
        this.state.dataTable.map((item, index) => {
            if (data.rowData[1] == item[2]) {
faisalhamdi's avatar
faisalhamdi committed
207
                total = item[data.columnIndex] == undefined ? (Number(total) + 0) : (Number(total) + Number(item[data.columnIndex]))
faisalhamdi's avatar
faisalhamdi committed
208 209 210 211
            }
        })
        let indexParent = this.state.dataTable.findIndex((val) => val[1] == this.state.dataTable[data.rowIndex][2])
        let a = this.state.dataTable[data.rowIndex][data.columnIndex] = total
d.arizona's avatar
d.arizona committed
212
        // // console.log(indexParent);
faisalhamdi's avatar
faisalhamdi committed
213 214 215
        return a
    }

faisalhamdi's avatar
faisalhamdi committed
216
    handleChange(value, tableMeta) {
faisalhamdi's avatar
faisalhamdi committed
217
        let val = String(value).split(",").join("")
faisalhamdi's avatar
faisalhamdi committed
218
        let data = this.state.dataTable
faisalhamdi's avatar
faisalhamdi committed
219 220
        let indexParent = data.findIndex((val) => val[1] == data[tableMeta.rowIndex][2])
        if (indexParent > 0) {
d.arizona's avatar
d.arizona committed
221
            // // console.log(indexParent)
faisalhamdi's avatar
faisalhamdi committed
222 223 224 225 226 227
            let a = data[tableMeta.rowIndex][tableMeta.columnIndex] = Number(val)
            let jagain = data[indexParent][tableMeta.columnIndex]
            a = data[indexParent][tableMeta.columnIndex] = jagain == undefined ? (0 + Number(val)) : (jagain + Number(val))
        } else {
            data[tableMeta.rowIndex][tableMeta.columnIndex] = Number(val)
        }
faisalhamdi's avatar
faisalhamdi committed
228 229
    }

faisalhamdi's avatar
faisalhamdi committed
230 231 232 233 234
    backToMasterBudget(type) {
        let data = []
        this.state.dataTable.map(i => {
            data.push({
                item_report_id: i[1],
Deni Rinaldi's avatar
Deni Rinaldi committed
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
                total_actual_before: String(Number(i[6]).toFixed(1)),
                january: i[0] === 5 || i[0] === 6 ? String(Number(i[7].value).toFixed(1)) : String(Number(i[7]).toFixed(1)),
                february: i[0] === 5 || i[0] === 6 ? String(Number(i[8].value).toFixed(1)) : String(Number(i[8]).toFixed(1)),
                march: i[0] === 5 || i[0] === 6 ? String(Number(i[9].value).toFixed(1)) : String(Number(i[9]).toFixed(1)),
                april: i[0] === 5 || i[0] === 6 ? String(Number(i[10].value).toFixed(1)) : String(Number(i[10]).toFixed(1)),
                may: i[0] === 5 || i[0] === 6 ? String(Number(i[11].value).toFixed(1)) : String(Number(i[11]).toFixed(1)),
                june: i[0] === 5 || i[0] === 6 ? String(Number(i[12].value).toFixed(1)) : String(Number(i[12]).toFixed(1)),
                july: i[0] === 5 || i[0] === 6 ? String(Number(i[13].value).toFixed(1)) : String(Number(i[13]).toFixed(1)),
                august: i[0] === 5 || i[0] === 6 ? String(Number(i[14].value).toFixed(1)) : String(Number(i[14]).toFixed(1)),
                september: i[0] === 5 || i[0] === 6 ? String(Number(i[15].value).toFixed(1)) : String(Number(i[15]).toFixed(1)),
                october: i[0] === 5 || i[0] === 6 ? String(Number(i[16].value).toFixed(1)) : String(Number(i[16]).toFixed(1)),
                november: i[0] === 5 || i[0] === 6 ? String(Number(i[17].value).toFixed(1)) : String(Number(i[17]).toFixed(1)),
                december: i[0] === 5 || i[0] === 6 ? String(Number(i[18].value).toFixed(1)) : String(Number(i[18]).toFixed(1)),
                total_current_year: String(Number(i[19]).toFixed(1)),
                total_next_year: String(Number(i[20]).toFixed(1)),
                total_more_year: String(Number(i[21]).toFixed(1))
faisalhamdi's avatar
faisalhamdi committed
251 252 253 254 255 256 257 258 259 260
            })
        })
        let payload = {
            "submission_id": this.props.submissionID,
            "company_id": this.props.company.company_id,
            "periode": this.props.periode,
            "report_id": this.props.report_id,
            "status": type,
            "fixed_asset_movement": data
        }
d.arizona's avatar
d.arizona committed
261
        // // console.log(data);
faisalhamdi's avatar
faisalhamdi committed
262 263 264 265
        this.props.saveToMasterBudget(payload)
        this.props.onClickClose()
    }

faisalhamdi's avatar
faisalhamdi committed
266 267
    downloadTemplate = async () => {
        let res = await fetch(
faisalhamdi's avatar
faisalhamdi committed
268
            `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/master_budget/download_template?report_id=${this.props.report_id}&&company_id=${this.props.company.company_id}&&year=${this.props.periode}`
faisalhamdi's avatar
faisalhamdi committed
269 270
        )
        res = await res.blob()
d.arizona's avatar
d.arizona committed
271
        // // console.log(res)
faisalhamdi's avatar
faisalhamdi committed
272 273 274 275
        if (res.size > 0) {
            let url = window.URL.createObjectURL(res);
            let a = document.createElement('a');
            a.href = url;
faisalhamdi's avatar
faisalhamdi committed
276
            a.download = 'Template Master Budget Fixed Assets Movement.xlsx';
faisalhamdi's avatar
faisalhamdi committed
277 278 279 280 281 282 283
            a.click();
        }
    }

    fileHandler = (event) => {
        let fileObj = event
        ExcelRenderer(fileObj, (err, resp) => {
d.arizona's avatar
d.arizona committed
284
            // // console.log(resp)
faisalhamdi's avatar
faisalhamdi committed
285
            if (err) {
d.arizona's avatar
d.arizona committed
286
                // console.log(err);
faisalhamdi's avatar
faisalhamdi committed
287 288 289
            }
            else {
                let isi = resp.rows.slice(3)
d.arizona's avatar
d.arizona committed
290
                // // console.log(resp.rows[2]);
faisalhamdi's avatar
faisalhamdi committed
291
                let payload = []
faisalhamdi's avatar
faisalhamdi committed
292
                let reg = /^[-+]?(?:[0-9]+,)*[0-9]+(?:\.[0-9]+)?$/;
faisalhamdi's avatar
faisalhamdi committed
293 294 295 296 297
                isi.map((i, index) => {
                    if (i.length > 0) {
                        payload.push({
                            item_report_id: i[0] === undefined ? "" : String(i[0]).trim(),
                            item_report: i[1] === undefined ? "" : String(i[1]).trim(),
faisalhamdi's avatar
faisalhamdi committed
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
                            total_actual_before: i[2] === undefined ? "0" : reg.test(String(i[2])) === false ? "0" : String(i[2]).trim(),
                            january: i[3] === undefined ? "0" : reg.test(String(i[3])) === false ? "0" : String(i[3]).trim(),
                            february: i[4] === undefined ? "0" : reg.test(String(i[4])) === false ? "0" : String(i[4]).trim(),
                            march: i[5] === undefined ? "0" : reg.test(String(i[5])) === false ? "0" : String(i[5]).trim(),
                            april: i[6] === undefined ? "0" : reg.test(String(i[6])) === false ? "0" : String(i[6]).trim(),
                            may: i[7] === undefined ? "0" : reg.test(String(i[7])) === false ? "0" : String(i[7]).trim(),
                            june: i[8] === undefined ? "0" : reg.test(String(i[8])) === false ? "0" : String(i[8]).trim(),
                            july: i[9] === undefined ? "0" : reg.test(String(i[9])) === false ? "0" : String(i[9]).trim(),
                            august: i[10] === undefined ? "0" : reg.test(String(i[10])) === false ? "0" : String(i[10]).trim(),
                            september: i[11] === undefined ? "0" : reg.test(String(i[11])) === false ? "0" : String(i[11]).trim(),
                            october: i[12] === undefined ? "0" : reg.test(String(i[12])) === false ? "0" : String(i[12]).trim(),
                            november: i[13] === undefined ? "0" : reg.test(String(i[13])) === false ? "0" : String(i[13]).trim(),
                            december: i[14] === undefined ? "0" : reg.test(String(i[14])) === false ? "0" : String(i[14]).trim(),
                            total_current_year: i[15] === undefined ? "0" : reg.test(String(i[15])) === false ? "0" : String(i[15]).trim(),
                            total_next_year: i[16] === undefined ? "0" : reg.test(String(i[16])) === false ? "0" : String(i[16]).trim(),
                            total_more_year: i[17] === undefined ? "0" : reg.test(String(i[17])) === false ? "0" : String(i[17]).trim()
faisalhamdi's avatar
faisalhamdi committed
314 315 316 317 318 319 320
                        })
                    }
                })
                let body = {
                    company_id: this.props.company.company_id,
                    periode: this.props.periode,
                    report_id: this.props.report_id,
Deni Rinaldi's avatar
Deni Rinaldi committed
321
                    fixed_asset_movement: payload
faisalhamdi's avatar
faisalhamdi committed
322
                }
d.arizona's avatar
d.arizona committed
323
                // // console.log(body)
faisalhamdi's avatar
faisalhamdi committed
324
                this.setState({ payload: body, judul: resp.rows[1][0], judulColumn: resp.rows[2] })
faisalhamdi's avatar
faisalhamdi committed
325 326 327 328 329 330
            }
        });
    }

    checkUpload() {
        api.create().checkUploadMB(this.state.payload).then(response => {
d.arizona's avatar
d.arizona committed
331 332
            // // console.log(JSON.stringify(this.state.payload));
            // // console.log(response)
faisalhamdi's avatar
faisalhamdi committed
333
            if (response.data) {
faisalhamdi's avatar
faisalhamdi committed
334 335 336 337 338 339 340 341 342 343 344 345
                if (response.ok) {
                    if (response.data.status === 'success') {
                        this.setState({ visibleUpload: false, visibleFixedAssetsMovement: false, loading: true })
                        let dataTable = response.data.data.map((item, index) => {
                            return [
                                item.type_report_id,
                                item.item_report_id,
                                item.parent,
                                item.formula,
                                item.level,
                                item.item_report,
                                item.total_actual_before,
Deni Rinaldi's avatar
Deni Rinaldi committed
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.january, formula: item.january_formula } : Number(item.january).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.february, formula: item.february_formula } : Number(item.february).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.march, formula: item.march_formula } : Number(item.march).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.april, formula: item.april_formula } : Number(item.april).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.may, formula: item.may_formula } : Number(item.may).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.june, formula: item.june_formula } : Number(item.june).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.july, formula: item.july_formula } : Number(item.july).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.august, formula: item.august_formula } : Number(item.august).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.september, formula: item.september_formula } : Number(item.september).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.october, formula: item.october_formula } : Number(item.october).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.november, formula: item.november_formula } : Number(item.november).toFixed(1),
                                item.type_report_id == 5 || item.type_report_id == 6 ? { value: item.december, formula: item.december_formula } : Number(item.december).toFixed(1),
                                Number(item.total_current_year).toFixed(1),
                                Number(item.total_next_year).toFixed(1),
                                Number(item.total_more_year).toFixed(1),
faisalhamdi's avatar
faisalhamdi committed
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
                                item.orders,
                                item.forecast_formula,
                                item.before_formula,
                                item.error
                            ]
                        })
                        this.setState({ dataTable, dataLoaded: true, loading: false, buttonError: false, editable: true }, () => {
                            this.state.dataTable.map(item => {
                                if (item[24].length > 0) {
                                    // // console.log('masuk')
                                    this.setState({ buttonError: true, errorPreview: true, editable: true })
                                }
                            })
                            // // console.log(this.state.dataTable);
                        })
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
                            if (response.data.message.includes("Someone Logged In")) {
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
faisalhamdi's avatar
faisalhamdi committed
383 384
                            }
                        })
faisalhamdi's avatar
faisalhamdi committed
385 386 387
                    }
                } else {
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
faisalhamdi's avatar
faisalhamdi committed
388
                }
faisalhamdi's avatar
faisalhamdi committed
389 390
            } else {
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
faisalhamdi's avatar
faisalhamdi committed
391 392 393 394
            }
        })
    }

faisalhamdi's avatar
faisalhamdi committed
395
    uploadFAM(type) {
faisalhamdi's avatar
faisalhamdi committed
396 397 398 399
        let data = []
        this.state.dataTable.map(i => {
            data.push({
                item_report_id: i[1],
Deni Rinaldi's avatar
Deni Rinaldi committed
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
                total_actual_before: String(Number(i[6]).toFixed(1)),
                january: i[0] === 5 || i[0] === 6 ? String(Number(i[7].value).toFixed(1)) : String(Number(i[7]).toFixed(1)),
                february: i[0] === 5 || i[0] === 6 ? String(Number(i[8].value).toFixed(1)) : String(Number(i[8]).toFixed(1)),
                march: i[0] === 5 || i[0] === 6 ? String(Number(i[9].value).toFixed(1)) : String(Number(i[9]).toFixed(1)),
                april: i[0] === 5 || i[0] === 6 ? String(Number(i[10].value).toFixed(1)) : String(Number(i[10]).toFixed(1)),
                may: i[0] === 5 || i[0] === 6 ? String(Number(i[11].value).toFixed(1)) : String(Number(i[11]).toFixed(1)),
                june: i[0] === 5 || i[0] === 6 ? String(Number(i[12].value).toFixed(1)) : String(Number(i[12]).toFixed(1)),
                july: i[0] === 5 || i[0] === 6 ? String(Number(i[13].value).toFixed(1)) : String(Number(i[13]).toFixed(1)),
                august: i[0] === 5 || i[0] === 6 ? String(Number(i[14].value).toFixed(1)) : String(Number(i[14]).toFixed(1)),
                september: i[0] === 5 || i[0] === 6 ? String(Number(i[15].value).toFixed(1)) : String(Number(i[15]).toFixed(1)),
                october: i[0] === 5 || i[0] === 6 ? String(Number(i[16].value).toFixed(1)) : String(Number(i[16]).toFixed(1)),
                november: i[0] === 5 || i[0] === 6 ? String(Number(i[17].value).toFixed(1)) : String(Number(i[17]).toFixed(1)),
                december: i[0] === 5 || i[0] === 6 ? String(Number(i[18].value).toFixed(1)) : String(Number(i[18]).toFixed(1)),
                total_current_year: String(Number(i[19]).toFixed(1)),
                total_next_year: String(Number(i[20]).toFixed(1)),
                total_more_year: String(Number(i[21]).toFixed(1))
faisalhamdi's avatar
faisalhamdi committed
416 417 418
            })
        })
        let body = {
faisalhamdi's avatar
faisalhamdi committed
419
            submission_id: this.props.submissionID,
faisalhamdi's avatar
faisalhamdi committed
420 421 422
            company_id: this.props.company.company_id,
            periode: this.props.periode,
            report_id: this.props.report_id,
faisalhamdi's avatar
faisalhamdi committed
423 424
            fixed_asset_movement: data,
            status: type
faisalhamdi's avatar
faisalhamdi committed
425
        }
d.arizona's avatar
d.arizona committed
426
        // // console.log(JSON.stringify(body));
faisalhamdi's avatar
faisalhamdi committed
427
        api.create('UPLOAD').uploadMasterBudget(body).then(response => {
d.arizona's avatar
d.arizona committed
428
            // // console.log(response);
faisalhamdi's avatar
faisalhamdi committed
429
            if (response.data) {
faisalhamdi's avatar
faisalhamdi committed
430 431 432 433 434 435 436 437 438 439 440 441 442 443
                if (response.ok) {
                    if (response.data.status === "success") {
                        this.props.onClickClose()
                        this.props.getReport()
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
                            if (response.data.message.includes("Someone Logged In")) {
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
                    }
faisalhamdi's avatar
faisalhamdi committed
444
                } else {
faisalhamdi's avatar
faisalhamdi committed
445
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
faisalhamdi's avatar
faisalhamdi committed
446 447
                }
            } else {
faisalhamdi's avatar
faisalhamdi committed
448 449
                // this.setState({ loading: false })
                // alert(response.problem)
d.arizona's avatar
d.arizona committed
450
                this.setState({ alert: true, messageAlert: 'Data is not saved, please check your Connection', tipeAlert: 'error', loading: false })
faisalhamdi's avatar
faisalhamdi committed
451 452 453 454
            }
        })
    }

faisalhamdi's avatar
faisalhamdi committed
455
    async downloadAllData() {
faisalhamdi's avatar
faisalhamdi committed
456
        // let url = `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/master_budget/export_master_budget?submission_id=${this.props.submissionID}&&report_id=${this.props.report_id}&&company_id=${this.props.company.company_id}&&year=${this.props.periode}&&revision=${this.props.revision}`
d.arizona's avatar
d.arizona committed
457
        // // console.log(url);
faisalhamdi's avatar
faisalhamdi committed
458 459
        let resReal = `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/master_budget/export_master_budget?submission_id=${this.props.submissionID}&&report_id=${this.props.report_id}&&company_id=${this.props.company.company_id}&&year=${this.props.periode}&&revision=${this.props.revision}`
        let resNull = `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/master_budget/export_master_budget?submission_id=&&report_id=${this.props.report_id}&&company_id=${this.props.company.company_id}&&year=${this.props.periode}&&revision=${this.props.revision}`
faisalhamdi's avatar
faisalhamdi committed
460
        let res = await fetch(
d.arizona's avatar
d.arizona committed
461
            this.props.submissionID == null ? resNull : resReal
faisalhamdi's avatar
faisalhamdi committed
462 463 464 465 466 467 468
        )
        res = await res.blob()
        this.setState({ loading: false })
        if (res.size > 0) {
            let url = window.URL.createObjectURL(res);
            let a = document.createElement('a');
            a.href = url;
faisalhamdi's avatar
faisalhamdi committed
469
            a.download = 'Master Budget Fixed Assets Movement.xlsx';
faisalhamdi's avatar
faisalhamdi committed
470 471 472 473
            a.click();
        }
    }

faisalhamdi's avatar
faisalhamdi committed
474 475
    handleValidate() {
        let data = []
d.arizona's avatar
d.arizona committed
476
        // // console.log(this.state.dataTable)
faisalhamdi's avatar
faisalhamdi committed
477 478 479 480
        this.state.dataTable.map(i => {
            data.push({
                item_report_id: i[1],
                total_actual_before: String(i[6]),
Deni Rinaldi's avatar
Deni Rinaldi committed
481 482 483 484 485 486 487 488 489 490 491 492
                january: i[0] === 3 && i[7] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[7].value) : String(i[7]),
                february: i[0] === 3 && i[8] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[8].value) : String(i[8]),
                march: i[0] === 3 && i[9] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[9].value) : String(i[9]),
                april: i[0] === 3 && i[10] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[10].value) : String(i[10]),
                may: i[0] === 3 && i[11] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[11].value) : String(i[11]),
                june: i[0] === 3 && i[12] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[12].value) : String(i[12]),
                july: i[0] === 3 && i[13] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[13].value) : String(i[13]),
                august: i[0] === 3 && i[14] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[14].value) : String(i[14]),
                september: i[0] === 3 && i[15] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[15].value) : String(i[15]),
                october: i[0] === 3 && i[16] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[16].value) : String(i[16]),
                november: i[0] === 3 && i[17] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[17].value) : String(i[17]),
                december: i[0] === 3 && i[18] === "" ? "0" : i[0] === 5 || i[0] === 6 ? String(i[18].value) : String(i[18]),
faisalhamdi's avatar
faisalhamdi committed
493 494 495
                total_current_year: i[0] === 3 && i[19] === "" ? "0" : String(i[19]),
                total_next_year: i[0] === 3 && i[20] === "" ? "0" : String(i[20]),
                total_more_year: i[0] === 3 && i[21] === "" ? "0" : String(i[21])
faisalhamdi's avatar
faisalhamdi committed
496 497
            })
        })
d.arizona's avatar
d.arizona committed
498
        // // console.log(JSON.stringify(data))
faisalhamdi's avatar
faisalhamdi committed
499
        let payload = {
faisalhamdi's avatar
faisalhamdi committed
500 501 502 503 504 505
            "submission_id": this.props.submissionID,
            "company_id": this.props.company.company_id,
            "periode": this.props.periode,
            "report_id": this.props.report_id,
            "fixed_asset_movement": data,
            "status": "submitted"
faisalhamdi's avatar
faisalhamdi committed
506 507
        }
        api.create().validateSubmitReport(payload).then((response) => {
d.arizona's avatar
d.arizona committed
508
            // // console.log(response)
faisalhamdi's avatar
faisalhamdi committed
509
            if (response.data.data.result) {
faisalhamdi's avatar
faisalhamdi committed
510
                this.setState({ loading: false, buttonError: false, editable: false })
faisalhamdi's avatar
faisalhamdi committed
511 512 513 514 515 516
            } else {
                this.setState({ loading: false, buttonError: true, editable: true })
            }
        })
    }

faisalhamdi's avatar
faisalhamdi committed
517 518 519 520
    closeAlert() {
        this.setState({ alert: false })
    }

faisalhamdi's avatar
faisalhamdi committed
521
    render() {
faisalhamdi's avatar
faisalhamdi committed
522
        let dataTable2 = this.state.dataTable
Dida Adams Arizona's avatar
Dida Adams Arizona committed
523
        const handleValueFormula = (value, tableMeta, Bfr) => {
d.arizona's avatar
d.arizona committed
524 525 526
            let splitFormula = String(tableMeta.rowData[3]).split('@')
            let baru = []
            let anjay = []
Deni Rinaldi's avatar
Deni Rinaldi committed
527 528
            splitFormula.map((item, index) => {
                let items = String(item).substr(Number(String(item).length) - 1, 1)
d.arizona's avatar
d.arizona committed
529 530 531 532
                let re = /^[a-zA-Z0-9_]+$/;
                let asd = ''
                if (item !== "") {
                    if (!re.test(items)) {
Deni Rinaldi's avatar
Deni Rinaldi committed
533 534
                        baru.push(String(item).substr(0, Number(String(item).length) - 1))
                        baru.push(String(item).substr(Number(String(item).length) - 1, 1))
d.arizona's avatar
d.arizona committed
535 536 537 538 539 540
                    } else {
                        baru.push(String(item))
                    }
                }
            })

d.arizona's avatar
d.arizona committed
541
            // if (tableMeta.columnIndex == 18) {
d.arizona's avatar
d.arizona committed
542 543
            //     // console.log(splitFormula)
            //     // console.log(baru)
d.arizona's avatar
d.arizona committed
544
            // }
d.arizona's avatar
d.arizona committed
545 546 547
            // // console.log(baru)
            let tambahan = false
            let opet = ""
Deni Rinaldi's avatar
Deni Rinaldi committed
548
            baru.map((item, index) => {
d.arizona's avatar
d.arizona committed
549 550 551
                if (item == 'X') {
                    tambahan = true
                } else if (item == '-' || item == '+' || item == '/' || item == '*') {
d.arizona's avatar
d.arizona committed
552 553 554
                    anjay.push(item)
                } else {
                    if (String(item).includes('#')) {
Dida Adams Arizona's avatar
Dida Adams Arizona committed
555 556 557
                        if (Bfr !== undefined) {
                            let data = 24
                            let period = Number(this.props.periode) - 1
faisalhamdi's avatar
faisalhamdi committed
558
                            // console.log(dataTable2[tableMeta.rowIndex][data])
Dida Adams Arizona's avatar
Dida Adams Arizona committed
559 560 561 562 563 564 565
                            anjay.push(0)
                            let indexID = dataTable2[tableMeta.rowIndex][data].findIndex((val) => val.item_formula == String(`@${item}`) && val.periode == period)
                            if (indexID !== -1) {
                                let valuezz = dataTable2[tableMeta.rowIndex][data][indexID].value
                                anjay.push(valuezz == "" ? 0 : valuezz)
                            }
                        } else if (String(item).includes('[M-1]')) {
d.arizona's avatar
d.arizona committed
566
                            let tst = String(item).replace('[M-1]', '')
Deni Rinaldi's avatar
Deni Rinaldi committed
567 568
                            let data = tableMeta.columnIndex == 7 ? 18 : tableMeta.columnIndex - 1
                            let period = data == 18 ? Number(this.props.periode) - 1 : this.props.periode
d.arizona's avatar
d.arizona committed
569
                            let indexID = tableMeta.rowData[data].formula.findIndex((val) => val.item_formula == String(`@${tst}`) && val.periode == period)
d.arizona's avatar
d.arizona committed
570
                            if (indexID !== -1) {
d.arizona's avatar
d.arizona committed
571
                                let valuezz = tableMeta.rowData[data].formula[indexID].value
Deni Rinaldi's avatar
Deni Rinaldi committed
572
                                anjay.push(valuezz == "" ? 0 : valuezz)
d.arizona's avatar
d.arizona committed
573 574
                            }
                        } else {
d.arizona's avatar
d.arizona committed
575
                            let indexID = value.formula.findIndex((val) => val.item_formula == String(`@${item}`) && val.periode == Number(this.props.periode))
d.arizona's avatar
d.arizona committed
576
                            // // console.log(indexID)
d.arizona's avatar
d.arizona committed
577
                            if (indexID !== -1) {
d.arizona's avatar
d.arizona committed
578
                                // // console.log(value.formula[indexID].value)
d.arizona's avatar
d.arizona committed
579
                                let valuezz = value.formula[indexID].value
Deni Rinaldi's avatar
Deni Rinaldi committed
580
                                anjay.push(valuezz == "" ? 0 : valuezz)
d.arizona's avatar
d.arizona committed
581 582 583
                            }
                        }
                    } else {
d.arizona's avatar
d.arizona committed
584
                        // // console.log(item)
d.arizona's avatar
d.arizona committed
585
                        let indexID = dataTable2.findIndex((val) => val[22] == item)
d.arizona's avatar
d.arizona committed
586 587 588 589 590 591 592 593 594 595
                        if (item == 'X-1') {
                            anjay.push(-1)
                        } else if (tambahan) {
                            if (item == '-' || item == '+' || item == '/' || item == '*') {
                                opet = item
                            } else {
                                anjay.push(opet == ''? Number(item) : Number(String(opet + String(item))))
                                tambahan = false
                                opet = ""
                            }
Deni Rinaldi's avatar
Deni Rinaldi committed
596
                        } else {
d.arizona's avatar
d.arizona committed
597 598 599 600 601 602 603 604
                            if (indexID !== -1) {
                                let valuezz = dataTable2[indexID][tableMeta.columnIndex].value == undefined ? dataTable2[indexID][tableMeta.columnIndex] : dataTable2[indexID][tableMeta.columnIndex].value
                                anjay.push(valuezz == "" ? 0 : valuezz)
                            } else {
                                if (item === '(-1)') {
                                    anjay.push(-1)
                                }
                                // // console.log(item);
Deni Rinaldi's avatar
Deni Rinaldi committed
605
                            }
d.arizona's avatar
d.arizona committed
606 607 608 609
                        }
                    }
                }
            })
d.arizona's avatar
d.arizona committed
610 611
            // // console.log(baru)
            // // console.log(anjay)
d.arizona's avatar
d.arizona committed
612 613 614 615 616 617 618 619 620 621 622 623 624

            let total = 0
            let opt = ""
            anjay.map((item, index) => {
                if (item == "+") {
                    opt = "tambah"
                } else if (item == "-") {
                    opt = "kurang"
                } else if (item == "*") {
                    opt = "kali"
                } else if (item == "/") {
                    opt = "bagi"
                } else {
Deni Rinaldi's avatar
Deni Rinaldi committed
625
                    item = item == "" ? 0 : item
d.arizona's avatar
d.arizona committed
626 627 628 629 630 631 632
                    if (opt == "tambah") {
                        total = Number(total) + Number(item)
                    } else if (opt == "kurang") {
                        total = Number(total) - Number(item)
                    } else if (opt == "kali") {
                        total = Number(total) * Number(item)
                    } else if (opt == "bagi") {
Deni Rinaldi's avatar
Deni Rinaldi committed
633
                        total = Number(total) / Number(item) == NaN ? 0 : Number(total) / Number(item)
d.arizona's avatar
d.arizona committed
634 635 636 637 638
                    } else {
                        total += Number(item)
                    }
                }
            })
Deni Rinaldi's avatar
Deni Rinaldi committed
639
            total = R.equals(total, NaN) ? "0.0" : total
d.arizona's avatar
d.arizona committed
640
            // // console.log(dataTable2[tableMeta.rowIndex][22])
Deni Rinaldi's avatar
Deni Rinaldi committed
641
            // // console.log(tableMeta.rowData[5])
d.arizona's avatar
d.arizona committed
642
            // if (tableMeta.rowData[5] == 'Beginning Balance') {
Deni Rinaldi's avatar
Deni Rinaldi committed
643 644
            // console.log(baru)
            // console.log(anjay)
Deni Rinaldi's avatar
Deni Rinaldi committed
645
            // console.log(total)
d.arizona's avatar
d.arizona committed
646
            // }
Deni Rinaldi's avatar
Deni Rinaldi committed
647

d.arizona's avatar
d.arizona committed
648
            if (dataTable2[tableMeta.rowIndex][tableMeta.columnIndex].value == undefined) {
d.arizona's avatar
d.arizona committed
649
                // // console.log([tableMeta.rowIndex][tableMeta.columnIndex])
d.arizona's avatar
d.arizona committed
650 651 652 653 654 655 656 657
                dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = total
            } else {
                dataTable2[tableMeta.rowIndex][tableMeta.columnIndex].value = total
            }

            return total
        }

faisalhamdi's avatar
faisalhamdi committed
658
        const handleChange = (value, tableMeta, type) => {
faisalhamdi's avatar
faisalhamdi committed
659
            let val = String(value).split(",").join("")
faisalhamdi's avatar
faisalhamdi committed
660
            if (type === "actual") {
Deni Rinaldi's avatar
Deni Rinaldi committed
661
                dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = Number(val)
faisalhamdi's avatar
faisalhamdi committed
662
            } else {
Deni Rinaldi's avatar
Deni Rinaldi committed
663
                let indexParent = dataTable2.findIndex((val) => val[1] == dataTable2[tableMeta.rowIndex][2])
faisalhamdi's avatar
faisalhamdi committed
664
                if (indexParent > 0) {
d.arizona's avatar
d.arizona committed
665
                    // // console.log(indexParent)
faisalhamdi's avatar
faisalhamdi committed
666 667 668 669 670 671
                    let a = dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = Number(val)
                    let jagain = dataTable2[indexParent][tableMeta.columnIndex]
                    a = dataTable2[indexParent][tableMeta.columnIndex] = jagain == undefined ? (0 + Number(val)) : (jagain + Number(val))
                } else {
                    dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = Number(val)
                }
faisalhamdi's avatar
faisalhamdi committed
672 673
            }
        }
d.arizona's avatar
d.arizona committed
674
        const handleForecast = (tableMeta, periode) => {
d.arizona's avatar
d.arizona committed
675
            let total = 0
d.arizona's avatar
d.arizona committed
676
            if (String(tableMeta.rowData[5]).toLocaleLowerCase() == 'gain/ (loss) on fixed assets' || String(tableMeta.rowData[5]).toLocaleLowerCase() == 'ending balance' || String(tableMeta.rowData[5]).toLocaleLowerCase() == 'beginning balance') {
d.arizona's avatar
d.arizona committed
677 678 679
                if (String(tableMeta.rowData[5]).toLocaleLowerCase() == 'beginning balance') {
                    let indexID = dataTable2.findIndex((val, index) => String(val[5]).toLocaleLowerCase() == 'ending balance' && dataTable2[index-1][2] == tableMeta.rowData[2])
                    if (indexID !== -1) {
d.arizona's avatar
d.arizona committed
680 681
                        // console.log(dataTable2)
                        total = tableMeta.columnIndex == 21? dataTable2[indexID][20] : dataTable2[indexID][18].value
d.arizona's avatar
d.arizona committed
682 683 684 685 686 687
                    }
                } else {
                    let indexID = dataTable2[tableMeta.rowIndex][23].findIndex((val) => val.periode == periode)
                    if (indexID !== -1) {
                        total = dataTable2[tableMeta.rowIndex][23][indexID].value
                    }
d.arizona's avatar
d.arizona committed
688 689
                }
            } else {
d.arizona's avatar
d.arizona committed
690
                total = handleValueFormula(tableMeta.columnIndex, tableMeta)
d.arizona's avatar
d.arizona committed
691
            }
d.arizona's avatar
d.arizona committed
692
            dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = total
d.arizona's avatar
d.arizona committed
693 694
            return total
        }
faisalhamdi's avatar
faisalhamdi committed
695 696
        const handleTotal = (tableMeta) => {
            let total = 0
faisalhamdi's avatar
faisalhamdi committed
697
            // console.log(tableMeta)            
faisalhamdi's avatar
faisalhamdi committed
698 699 700
            // if (tableMeta.rowData[5] == 'Beginning balance') {
            //     console.log(tableMeta.rowData)
            // }
d.arizona's avatar
d.arizona committed
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
            if (String(tableMeta.rowData[5]).toLocaleLowerCase() == 'ending balance') {
                total = dataTable2[tableMeta.rowIndex][18].value
                dataTable2[tableMeta.rowIndex][19] = total
            } else if (String(tableMeta.rowData[5]).toLocaleLowerCase() == 'beginning balance') {
                total = dataTable2[tableMeta.rowIndex][7].value
                dataTable2[tableMeta.rowIndex][19] = total
            } else {
                dataTable2[tableMeta.rowIndex].map((item, index) => {
                    if (index >= 7 && index <= 18) {
                        let valItem = item.value == undefined ? item == undefined || item == "" ? 0 : item : item.value == "" ? 0 : item.value
                        total += Number(valItem)
                    }
                })
                dataTable2[tableMeta.rowIndex][19] = total
            }
faisalhamdi's avatar
faisalhamdi committed
716
            return total
d.arizona's avatar
d.arizona committed
717
            // // console.log(total);
faisalhamdi's avatar
faisalhamdi committed
718
        }
faisalhamdi's avatar
faisalhamdi committed
719 720 721 722 723 724 725 726 727
        const handleValue = (data) => {
            let total = 0
            dataTable2.map((item, index) => {
                if (data.rowData[1] == item[2]) {
                    total = item[data.columnIndex] == undefined ? (Number(total) + 0) : (Number(total) + Number(item[data.columnIndex]))
                }
            })
            let indexParent = dataTable2.findIndex((val) => val[1] == dataTable2[data.rowIndex][2])
            let a = dataTable2[data.rowIndex][data.columnIndex] = Number(total)
d.arizona's avatar
d.arizona committed
728
            // // console.log(indexParent);
faisalhamdi's avatar
faisalhamdi committed
729 730
            return a
        }
Dida Adams Arizona's avatar
Dida Adams Arizona committed
731 732

        const handleBfr = (value,tableMeta) => {
Deni Rinaldi's avatar
Deni Rinaldi committed
733
            let total = 0
Dida Adams Arizona's avatar
Dida Adams Arizona committed
734 735 736 737
            total = handleValueFormula(value, tableMeta, 'before')
            return total
        }

faisalhamdi's avatar
faisalhamdi committed
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
        const handleFormula = (data, tableMeta, month) => {
            let rilFormula = String(tableMeta.rowData[3])
            if (rilFormula.includes("#")) {
                if (this.props.status === "not-yet") {
                    let splitOrder = String(tableMeta.rowData[3]).split('@')
                    for (let index = 0; index < splitOrder.length; index++) {
                        if (splitOrder[index] === "") {
                        } else {
                            if (splitOrder[index].includes('#')) {

                            } else {
                                let splitOperator = splitOrder[index].match(/[a-zA-Z]+|[0-9]+|[-!$%^&*()_+|~=`{}\[\]:";'<>?,.\/]+(?:\.[0-9]+@|)/g)
                                let reg = /^\d+$/
                                splitOperator.map((item) => {
                                    if (reg.test(item) === true) {
                                        let i = dataTable2.findIndex((val) => val[23] == item)
                                        if (i > 0) {
                                            rilFormula = rilFormula.replace(item, dataTable2[i][tableMeta.columnIndex] === "" ? "0" : dataTable2[i][tableMeta.columnIndex])
                                        }
                                    }
                                })
                            }
                        }
                    }
                    let body = {
                        "submission_id": null,
                        "company_id": this.props.company.company_id,
                        "report_id": this.props.report_id,
                        "year": this.props.periode,
                        "month": month,
                        "formula": rilFormula
                    }
                    api.create().countingFormula(body).then(response => {
d.arizona's avatar
d.arizona committed
771
                        // // console.log(response);
faisalhamdi's avatar
faisalhamdi committed
772 773 774
                        if (response.data) {
                            if (response.data.status === "success") {
                                setTimeout(() => {
Deni Rinaldi's avatar
Deni Rinaldi committed
775
                                    return response.data.data.result
faisalhamdi's avatar
faisalhamdi committed
776 777 778
                                }, 2000);
                            }
                        }
faisalhamdi's avatar
faisalhamdi committed
779
                    })
faisalhamdi's avatar
faisalhamdi committed
780
                } else {
faisalhamdi's avatar
faisalhamdi committed
781 782 783 784 785 786 787 788 789
                    let body = {
                        "submission_id": this.props.submissionID,
                        "company_id": this.props.company.company_id,
                        "report_id": this.props.report_id,
                        "year": this.props.periode,
                        "month": month,
                        "formula": rilFormula
                    }
                    api.create().countingFormula(body).then(response => {
d.arizona's avatar
d.arizona committed
790
                        // // console.log(response)
faisalhamdi's avatar
faisalhamdi committed
791 792
                        if (response.data) {
                            if (response.data.status === "success") {
faisalhamdi's avatar
faisalhamdi committed
793
                                setTimeout(() => {
Deni Rinaldi's avatar
Deni Rinaldi committed
794
                                    return response.data.data.result
faisalhamdi's avatar
faisalhamdi committed
795
                                }, 2000);
faisalhamdi's avatar
faisalhamdi committed
796 797 798
                            }
                        }
                    })
faisalhamdi's avatar
faisalhamdi committed
799
                }
faisalhamdi's avatar
faisalhamdi committed
800 801 802 803 804 805 806
            } else {
                let arrayFormula = tableMeta.rowData[3].match(/[a-zA-Z]+|[0-9]+|[-!$%^&*()_+|~=`{}\[\]:";'<>?,.\/]+(?:\.[0-9]+@|)/g)
                let arrayJumlah = []
                arrayFormula.map((item, indexs) => {
                    let index = dataTable2.findIndex((val) => val[1] == item)
                    if (index > 0) {
                        arrayJumlah.push(dataTable2[index][tableMeta.columnIndex])
faisalhamdi's avatar
faisalhamdi committed
807
                    } else {
faisalhamdi's avatar
faisalhamdi committed
808
                        arrayJumlah.push(item)
faisalhamdi's avatar
faisalhamdi committed
809
                    }
faisalhamdi's avatar
faisalhamdi committed
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842
                    // if (indexs % 2 !== 0) {
                    //     operator.push(item)
                    // }
                })
                let array = arrayJumlah
                let total = 0
                let opt = ""
                array.map((item, index) => {
                    if (item == "+") {
                        opt = "tambah"
                    } else if (item == "-") {
                        opt = "kurang"
                    } else if (item == "*") {
                        opt = "kali"
                    } else if (item == "/") {
                        opt = "bagi"
                    } else {
                        if (opt == "tambah") {
                            total = Number(total) + Number(item)
                        } else if (opt == "kurang") {
                            total = Number(total) - Number(item)
                        } else if (opt == "kali") {
                            total = Number(total) * Number(item)
                        } else if (opt == "bagi") {
                            total = Number(total) / Number(item)
                        } else {
                            total += item
                        }
                    }
                })
                let a = dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = Number(total)
                return a
            }
faisalhamdi's avatar
faisalhamdi committed
843
        }
Dida Adams Arizona's avatar
Dida Adams Arizona committed
844

faisalhamdi's avatar
faisalhamdi committed
845
        const columns = [{
faisalhamdi's avatar
faisalhamdi committed
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
            name: "",
            options: {
                display: false
            }
        }, {
            name: "",
            options: {
                display: false
            }
        }, {
            name: "",
            options: {
                display: false
            }
        }, {
            name: "",
            options: {
                display: false
            }
        }, {
            name: "",
            options: {
                display: false
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
871
            name: "Account",
faisalhamdi's avatar
faisalhamdi committed
872 873
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
874
                    <TableCell key={columnMeta.index} style={{ ...style, top: 0, zIndex: 102, backgroundColor: '#1c71b8', width: 300 }}>
faisalhamdi's avatar
faisalhamdi committed
875 876 877 878 879 880
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'left' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
                setCellProps: () => ({ style }),
                customBodyRender: (val, tableMeta) => {
                    return (
Deni Rinaldi's avatar
Deni Rinaldi committed
881
                        <div style={{ width: 300 }}>
Dida Adams Arizona's avatar
Dida Adams Arizona committed
882 883
                            {tableMeta.rowData[25] ?
                                tableMeta.rowData[25].length > 0 ?
faisalhamdi's avatar
faisalhamdi committed
884 885 886 887 888 889 890 891 892 893 894 895
                                    <div style={{ paddingLeft: 20 * Number(tableMeta.rowData[4]) }}>
                                        <LightTooltip title={"Report Items Not Registered"} arrow>
                                            <span style={{ fontSize: 12, color: 'red' }}>{tableMeta.rowData[0] === 4 ? "" : val}</span>
                                        </LightTooltip>
                                    </div>
                                    :
                                    tableMeta.rowData[4] == 0 ?
                                        <span style={{ fontSize: 12, fontWeight: 'bold' }}>{String(tableMeta.rowData[0] === 4 ? "" : val).toUpperCase()}</span>
                                        :
                                        <div style={{ paddingLeft: 20 * Number(tableMeta.rowData[4]) }}>
                                            <span style={{ fontSize: 12 }}>{tableMeta.rowData[0] === 4 ? "" : val}</span>
                                        </div>
faisalhamdi's avatar
faisalhamdi committed
896
                                :
faisalhamdi's avatar
faisalhamdi committed
897 898 899 900 901 902
                                tableMeta.rowData[4] == 0 ?
                                    <span style={{ fontSize: 12, fontWeight: 'bold' }}>{String(tableMeta.rowData[0] === 4 ? "" : val).toUpperCase()}</span>
                                    :
                                    <div style={{ paddingLeft: 20 * Number(tableMeta.rowData[4]) }}>
                                        <span style={{ fontSize: 12 }}>{tableMeta.rowData[0] === 4 ? "" : val}</span>
                                    </div>
faisalhamdi's avatar
faisalhamdi committed
903 904 905 906 907 908
                            }
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
909
            name: `31 Dec ${Number(this.props.periode) - 1} Actual`,
faisalhamdi's avatar
faisalhamdi committed
910 911
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
912 913
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96 }}>
                        <Typography style={{ color: 'black', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
faisalhamdi's avatar
faisalhamdi committed
914 915
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
916
                setCellProps: () => ({ style2 }),
faisalhamdi's avatar
faisalhamdi committed
917 918 919
                customBodyRender: (value, tableMeta, updateValue) => {
                    return (
                        <div style={{ textAlign: 'right' }}>
d.arizona's avatar
d.arizona committed
920
                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1?
faisalhamdi's avatar
faisalhamdi committed
921 922
                                null
                                :
Dida Adams Arizona's avatar
Dida Adams Arizona committed
923 924 925 926 927 928 929 930 931 932 933 934
                                tableMeta.rowData[0] == 5 || tableMeta.rowData[0] == 6?
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
935
                                                value={Number(handleBfr(value,tableMeta)).toFixed(1)}
Dida Adams Arizona's avatar
Dida Adams Arizona committed
936 937 938 939 940
                                            />
                                        }
                                    />
                                </div>
                                :
faisalhamdi's avatar
faisalhamdi committed
941 942 943 944 945 946 947
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
faisalhamdi's avatar
faisalhamdi committed
948
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
949 950
                                                type="text"
                                                placeholder=""
faisalhamdi's avatar
faisalhamdi committed
951
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
952
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
953 954 955
                                            />
                                        }
                                    />
faisalhamdi's avatar
faisalhamdi committed
956
                                </div>
faisalhamdi's avatar
faisalhamdi committed
957 958 959 960
                            }
                        </div>
                    )
                }
faisalhamdi's avatar
faisalhamdi committed
961 962
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
963
            name: `Jan ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
964 965
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
966
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
967 968 969
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
970
                setCellProps: () => ({ style2 }),
faisalhamdi's avatar
faisalhamdi committed
971 972 973
                customBodyRender: (value, tableMeta, updateValue) => {
                    return (
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
991
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1007
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1008 1009 1010 1011 1012 1013
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1024
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1025
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1026 1027
                                                onBlur={(event) => {
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1028
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1029
                                                }}
faisalhamdi's avatar
faisalhamdi committed
1030 1031 1032 1033
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1034
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1035 1036 1037 1038 1039 1040 1041
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1042
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1043 1044 1045
                                        />
                                    </span>
                                    :
faisalhamdi's avatar
faisalhamdi committed
1046 1047
                                    tableMeta.rowData[0] === 4 ?
                                        null
faisalhamdi's avatar
faisalhamdi committed
1048
                                        :
faisalhamdi's avatar
faisalhamdi committed
1049
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
1050 1051 1052 1053 1054 1055
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1056
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1057
                                            />
faisalhamdi's avatar
faisalhamdi committed
1058
                                            :
faisalhamdi's avatar
faisalhamdi committed
1059
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
1060
                                                null
faisalhamdi's avatar
faisalhamdi committed
1061
                                                :
faisalhamdi's avatar
faisalhamdi committed
1062
                                                null
faisalhamdi's avatar
faisalhamdi committed
1063 1064 1065 1066 1067 1068
                            }
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
1069
            name: `Feb ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
1070 1071
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
1072
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
1073 1074 1075
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
1076
                setCellProps: () => ({ style2 }),
faisalhamdi's avatar
faisalhamdi committed
1077
                customBodyRender: (value, tableMeta, updateValue) => {
faisalhamdi's avatar
faisalhamdi committed
1078
                    return (
faisalhamdi's avatar
faisalhamdi committed
1079
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1097
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1113
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1114 1115 1116 1117 1118 1119
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1130
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1131
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1132 1133 1134
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1135
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1136 1137 1138 1139 1140
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1141
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1142 1143 1144 1145 1146 1147 1148
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1149
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1150 1151 1152
                                        />
                                    </span>
                                    :
faisalhamdi's avatar
faisalhamdi committed
1153 1154
                                    tableMeta.rowData[0] === 4 ?
                                        null
faisalhamdi's avatar
faisalhamdi committed
1155
                                        :
faisalhamdi's avatar
faisalhamdi committed
1156
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
1157 1158 1159 1160 1161 1162
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1163
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1164
                                            />
faisalhamdi's avatar
faisalhamdi committed
1165
                                            :
faisalhamdi's avatar
faisalhamdi committed
1166
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
1167
                                                null
faisalhamdi's avatar
faisalhamdi committed
1168
                                                :
faisalhamdi's avatar
faisalhamdi committed
1169
                                                null
faisalhamdi's avatar
faisalhamdi committed
1170
                            }
faisalhamdi's avatar
faisalhamdi committed
1171 1172 1173 1174 1175
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
1176
            name: `Mar ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
1177 1178
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
1179
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
1180 1181 1182
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
1183
                setCellProps: () => ({ style2 }),
faisalhamdi's avatar
faisalhamdi committed
1184
                customBodyRender: (value, tableMeta, updateValue) => {
faisalhamdi's avatar
faisalhamdi committed
1185
                    return (
faisalhamdi's avatar
faisalhamdi committed
1186
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1204
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1220
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1221 1222 1223 1224 1225 1226
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1237
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1238
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1239 1240 1241
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1242
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1243 1244 1245 1246 1247
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1248
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1249 1250 1251 1252 1253 1254 1255
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1256
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1257 1258 1259
                                        />
                                    </span>
                                    :
faisalhamdi's avatar
faisalhamdi committed
1260 1261
                                    tableMeta.rowData[0] === 4 ?
                                        null
faisalhamdi's avatar
faisalhamdi committed
1262
                                        :
faisalhamdi's avatar
faisalhamdi committed
1263
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
1264 1265 1266 1267 1268 1269
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1270
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1271
                                            />
faisalhamdi's avatar
faisalhamdi committed
1272
                                            :
faisalhamdi's avatar
faisalhamdi committed
1273
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
1274
                                                null
faisalhamdi's avatar
faisalhamdi committed
1275
                                                :
faisalhamdi's avatar
faisalhamdi committed
1276
                                                null
faisalhamdi's avatar
faisalhamdi committed
1277
                            }
faisalhamdi's avatar
faisalhamdi committed
1278 1279 1280 1281 1282
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
1283
            name: `Apr ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
1284 1285
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
1286
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
1287 1288 1289
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
1290
                setCellProps: () => ({ style2 }),
faisalhamdi's avatar
faisalhamdi committed
1291
                customBodyRender: (value, tableMeta, updateValue) => {
faisalhamdi's avatar
faisalhamdi committed
1292
                    return (
faisalhamdi's avatar
faisalhamdi committed
1293
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1311
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1327
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1328 1329 1330 1331 1332 1333
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1344
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1345
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1346 1347 1348
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1349
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1350 1351 1352 1353 1354
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1355
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1356 1357 1358 1359 1360 1361 1362
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1363
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1364 1365 1366
                                        />
                                    </span>
                                    :
faisalhamdi's avatar
faisalhamdi committed
1367 1368
                                    tableMeta.rowData[0] === 4 ?
                                        null
faisalhamdi's avatar
faisalhamdi committed
1369
                                        :
faisalhamdi's avatar
faisalhamdi committed
1370
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
1371 1372 1373 1374 1375 1376
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1377
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1378
                                            />
faisalhamdi's avatar
faisalhamdi committed
1379
                                            :
faisalhamdi's avatar
faisalhamdi committed
1380
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
1381
                                                null
faisalhamdi's avatar
faisalhamdi committed
1382
                                                :
faisalhamdi's avatar
faisalhamdi committed
1383
                                                null
faisalhamdi's avatar
faisalhamdi committed
1384
                            }
faisalhamdi's avatar
faisalhamdi committed
1385 1386 1387 1388 1389
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
1390
            name: `May ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
1391 1392
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
1393
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
1394 1395 1396
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
1397
                setCellProps: () => ({ style2 }),
faisalhamdi's avatar
faisalhamdi committed
1398
                customBodyRender: (value, tableMeta, updateValue) => {
faisalhamdi's avatar
faisalhamdi committed
1399
                    return (
faisalhamdi's avatar
faisalhamdi committed
1400
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1418
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1434
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1435 1436 1437 1438 1439 1440
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1451
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1452
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1453 1454 1455
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1456
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1457 1458 1459 1460 1461
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1462
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1463 1464 1465 1466 1467 1468 1469
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1470
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1471 1472 1473
                                        />
                                    </span>
                                    :
faisalhamdi's avatar
faisalhamdi committed
1474 1475
                                    tableMeta.rowData[0] === 4 ?
                                        null
faisalhamdi's avatar
faisalhamdi committed
1476
                                        :
faisalhamdi's avatar
faisalhamdi committed
1477
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
1478 1479 1480 1481 1482 1483
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1484
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1485
                                            />
faisalhamdi's avatar
faisalhamdi committed
1486 1487
                                            :                                            
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
1488
                                                null
faisalhamdi's avatar
faisalhamdi committed
1489
                                                :
faisalhamdi's avatar
faisalhamdi committed
1490
                                                null
faisalhamdi's avatar
faisalhamdi committed
1491
                            }
faisalhamdi's avatar
faisalhamdi committed
1492 1493 1494 1495 1496
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
1497
            name: `Jun ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
1498 1499
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
1500
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
1501 1502 1503
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
1504
                setCellProps: () => ({ style2 }),
faisalhamdi's avatar
faisalhamdi committed
1505
                customBodyRender: (value, tableMeta, updateValue) => {
faisalhamdi's avatar
faisalhamdi committed
1506
                    return (
faisalhamdi's avatar
faisalhamdi committed
1507
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1525
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1541
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1542 1543 1544 1545 1546 1547
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1558
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1559
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1560 1561 1562
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1563
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1564 1565 1566 1567 1568
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1569
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1570 1571 1572 1573 1574 1575 1576
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1577
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1578 1579 1580
                                        />
                                    </span>
                                    :
faisalhamdi's avatar
faisalhamdi committed
1581 1582
                                    tableMeta.rowData[0] === 4 ?
                                        null
faisalhamdi's avatar
faisalhamdi committed
1583
                                        :
faisalhamdi's avatar
faisalhamdi committed
1584
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
1585 1586 1587 1588 1589 1590
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1591
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1592
                                            />
faisalhamdi's avatar
faisalhamdi committed
1593
                                            :
faisalhamdi's avatar
faisalhamdi committed
1594
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
1595
                                                null
faisalhamdi's avatar
faisalhamdi committed
1596
                                                :
faisalhamdi's avatar
faisalhamdi committed
1597
                                                null
faisalhamdi's avatar
faisalhamdi committed
1598
                            }
faisalhamdi's avatar
faisalhamdi committed
1599 1600 1601 1602 1603
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
1604
            name: `Jul ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
1605 1606
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
1607
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
1608 1609 1610
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
1611 1612
                setCellProps: () => ({ style2 }),
                customBodyRender: (value, tableMeta, updateValue) => {
faisalhamdi's avatar
faisalhamdi committed
1613
                    return (
faisalhamdi's avatar
faisalhamdi committed
1614
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1632
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1648
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1649 1650 1651 1652 1653 1654
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1655 1656 1657 1658 1659 1660 1661 1662 1663 1664
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1665
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1666
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1667 1668 1669
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1670
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1671 1672 1673 1674 1675
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1676
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1677 1678 1679 1680 1681 1682 1683
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1684
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1685 1686 1687 1688 1689 1690 1691
                                        />
                                    </span>
                                    :
                                    tableMeta.rowData[0] === 4 ?
                                        null
                                        :
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
1692 1693 1694 1695 1696 1697
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1698
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1699
                                            />
faisalhamdi's avatar
faisalhamdi committed
1700
                                            :
faisalhamdi's avatar
faisalhamdi committed
1701
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
1702
                                                null
faisalhamdi's avatar
faisalhamdi committed
1703
                                                :
faisalhamdi's avatar
faisalhamdi committed
1704
                                                null
faisalhamdi's avatar
faisalhamdi committed
1705
                            }
faisalhamdi's avatar
faisalhamdi committed
1706 1707 1708 1709 1710
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
1711
            name: `Aug ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
1712 1713
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
1714
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
1715 1716 1717
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
1718 1719
                setCellProps: () => ({ style2 }),
                customBodyRender: (value, tableMeta, updateValue) => {
faisalhamdi's avatar
faisalhamdi committed
1720
                    return (
faisalhamdi's avatar
faisalhamdi committed
1721
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1739
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1755
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1756 1757 1758 1759 1760 1761
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1762 1763 1764 1765 1766 1767 1768 1769 1770 1771
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1772
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1773
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1774 1775 1776
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1777
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1778 1779 1780 1781 1782
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1783
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1784 1785 1786 1787 1788 1789 1790
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1791
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1792 1793 1794 1795 1796 1797 1798
                                        />
                                    </span>
                                    :
                                    tableMeta.rowData[0] === 4 ?
                                        null
                                        :
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
1799 1800 1801 1802 1803 1804
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1805
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1806
                                            />
faisalhamdi's avatar
faisalhamdi committed
1807
                                            :
faisalhamdi's avatar
faisalhamdi committed
1808
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
1809
                                                null
faisalhamdi's avatar
faisalhamdi committed
1810
                                                :
faisalhamdi's avatar
faisalhamdi committed
1811
                                                null
faisalhamdi's avatar
faisalhamdi committed
1812
                            }
faisalhamdi's avatar
faisalhamdi committed
1813 1814 1815 1816 1817
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
1818
            name: `Sep ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
1819 1820
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
1821
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
1822 1823 1824
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
faisalhamdi's avatar
faisalhamdi committed
1825 1826
                setCellProps: () => ({ style2 }),
                customBodyRender: (value, tableMeta, updateValue) => {
faisalhamdi's avatar
faisalhamdi committed
1827
                    return (
faisalhamdi's avatar
faisalhamdi committed
1828
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1846
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1862
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1863 1864 1865 1866 1867 1868
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1869 1870 1871 1872 1873 1874 1875 1876 1877 1878
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1879
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1880
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1881 1882 1883
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1884
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1885 1886 1887 1888 1889
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1890
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1891 1892 1893 1894 1895 1896 1897
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1898
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1899 1900 1901 1902 1903 1904 1905
                                        />
                                    </span>
                                    :
                                    tableMeta.rowData[0] === 4 ?
                                        null
                                        :
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
1906 1907 1908 1909 1910 1911
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1912
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1913
                                            />
faisalhamdi's avatar
faisalhamdi committed
1914
                                            :
faisalhamdi's avatar
faisalhamdi committed
1915
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
1916
                                                null
faisalhamdi's avatar
faisalhamdi committed
1917
                                                :
faisalhamdi's avatar
faisalhamdi committed
1918
                                                null
faisalhamdi's avatar
faisalhamdi committed
1919 1920 1921 1922 1923 1924
                            }
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
1925
            name: `Oct ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
1926 1927
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
1928
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
1929 1930 1931 1932 1933 1934 1935
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
                setCellProps: () => ({ style2 }),
                customBodyRender: (value, tableMeta, updateValue) => {
                    return (
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1953
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
1969
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1970 1971 1972 1973 1974 1975
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
1986
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
1987
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
1988 1989 1990
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
1991
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
1992 1993 1994 1995 1996
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
1997
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
1998 1999 2000 2001 2002 2003 2004
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2005
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2006 2007 2008 2009 2010 2011 2012
                                        />
                                    </span>
                                    :
                                    tableMeta.rowData[0] === 4 ?
                                        null
                                        :
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
2013 2014 2015 2016 2017 2018
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2019
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2020
                                            />
faisalhamdi's avatar
faisalhamdi committed
2021
                                            :
faisalhamdi's avatar
faisalhamdi committed
2022
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
2023
                                                null
faisalhamdi's avatar
faisalhamdi committed
2024
                                                :
faisalhamdi's avatar
faisalhamdi committed
2025
                                                null
faisalhamdi's avatar
faisalhamdi committed
2026 2027 2028 2029 2030 2031
                            }
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
2032
            name: `Nov ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
2033 2034
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
2035
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
2036 2037 2038 2039 2040 2041 2042
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
                setCellProps: () => ({ style2 }),
                customBodyRender: (value, tableMeta, updateValue) => {
                    return (
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2060
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2076
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2077 2078 2079 2080 2081 2082
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
2083 2084 2085 2086 2087 2088 2089 2090 2091 2092
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
2093
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
2094
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2095 2096 2097
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
2098
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
2099 2100 2101 2102 2103
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
2104
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
2105 2106 2107 2108 2109 2110 2111
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2112
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2113 2114 2115 2116 2117 2118 2119
                                        />
                                    </span>
                                    :
                                    tableMeta.rowData[0] === 4 ?
                                        null
                                        :
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
2120 2121 2122 2123 2124 2125
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2126
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2127
                                            />
faisalhamdi's avatar
faisalhamdi committed
2128
                                            :
faisalhamdi's avatar
faisalhamdi committed
2129
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
2130
                                                null
faisalhamdi's avatar
faisalhamdi committed
2131
                                                :
faisalhamdi's avatar
faisalhamdi committed
2132
                                                null
faisalhamdi's avatar
faisalhamdi committed
2133 2134 2135 2136 2137 2138
                            }
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
2139
            name: `Dec ${this.props.periode}`,
faisalhamdi's avatar
faisalhamdi committed
2140 2141
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
2142
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
faisalhamdi's avatar
faisalhamdi committed
2143 2144 2145 2146 2147 2148 2149
                        <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                    </TableCell>
                ),
                setCellProps: () => ({ style2 }),
                customBodyRender: (value, tableMeta, updateValue) => {
                    return (
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2167
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2183
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2184 2185 2186 2187 2188 2189
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
2190 2191 2192 2193 2194 2195 2196 2197 2198 2199
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
2200
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
2201
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2202 2203 2204
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
2205
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
2206 2207 2208 2209 2210
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
2211
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
2212 2213 2214 2215 2216 2217 2218
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2219
                                            value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2220 2221 2222 2223 2224 2225 2226
                                        />
                                    </span>
                                    :
                                    tableMeta.rowData[0] === 4 ?
                                        null
                                        :
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
2227 2228 2229 2230 2231 2232
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2233
                                                value={Number(handleValueFormula(value, tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2234
                                            />
faisalhamdi's avatar
faisalhamdi committed
2235
                                            :
faisalhamdi's avatar
faisalhamdi committed
2236
                                            tableMeta.rowData[0] === 1 ?
faisalhamdi's avatar
faisalhamdi committed
2237
                                                null
faisalhamdi's avatar
faisalhamdi committed
2238
                                                :
faisalhamdi's avatar
faisalhamdi committed
2239
                                                null
faisalhamdi's avatar
faisalhamdi committed
2240 2241 2242 2243 2244 2245
                            }
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
2246
            name: "Current Total",
faisalhamdi's avatar
faisalhamdi committed
2247 2248
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
2249 2250
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96 }}>
                        <Typography style={{ color: 'black', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
faisalhamdi's avatar
faisalhamdi committed
2251 2252 2253 2254 2255
                    </TableCell>
                ),
                setCellProps: () => ({ style2 }),
                customBodyRender: (value, tableMeta, updateValue) => {
                    return (
faisalhamdi's avatar
faisalhamdi committed
2256
                        <div style={{ width: 96, textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269
                            {
                                this.props.status === 'CLOSED' ?
                                    tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 4 ?
                                        null 
                                        : 
                                        tableMeta.rowData[0] === 3 ?
                                            <div style={{ flex: 1 }}>
                                                <FormControlLabel
                                                    style={{ margin: 0 }}
                                                    value={value}
                                                    control={
                                                        <NumberFormat
                                                            thousandSeparator={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2270
                                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2271 2272 2273
                                                            type="text"
                                                            placeholder=""
                                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2274
                                                            value={Number(handleTotal(tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289
                                                        />
                                                    }
                                                />
                                            </div> :
                                            <div style={{ flex: 1 }}>
                                                <FormControlLabel
                                                    style={{ margin: 0 }}
                                                    value={value}
                                                    control={
                                                        <NumberFormat
                                                            thousandSeparator={true}
                                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                            type="text"
                                                            placeholder=""
                                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2290
                                                            value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303
                                                        />
                                                    }
                                                />
                                            </div>
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2304
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2305 2306
                                                        type="text"
                                                        placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
2307 2308 2309 2310 2311 2312 2313
                                                        disabled={true}
                                                        value={Number(handleTotal(tableMeta)).toFixed(1)}
                                                        // onBlur={(event) => {
                                                        //     // updateValue(event.target.value)
                                                        //     handleChange(event.target.value, tableMeta)
                                                        //     // // console.log(dataTable2)
                                                        // }}
faisalhamdi's avatar
faisalhamdi committed
2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325
                                                    />
                                                }
                                            />
                                        </div> :
                                        tableMeta.rowData[0] === 5 ?
                                            <span style={{ fontSize: 12, textAlign: 'right' }}>
                                                <NumberFormat
                                                    thousandSeparator={true}
                                                    style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                    type="text"
                                                    placeholder=""
                                                    disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2326
                                                    value={Number(handleTotal(tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339
                                                />
                                            </span>
                                            :
                                            tableMeta.rowData[0] === 4 ?
                                                null
                                                :
                                                tableMeta.rowData[0] === 6 ?
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2340
                                                        value={Number(handleTotal(tableMeta)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2341 2342 2343 2344 2345 2346 2347
                                                    />
                                                    :
                                                    tableMeta.rowData[0] === 1 ?
                                                        null
                                                        :
                                                        null
                            }
faisalhamdi's avatar
faisalhamdi committed
2348 2349 2350 2351 2352
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
2353
            name: `31 Dec ${Number(this.props.periode) + 1} Total`,
faisalhamdi's avatar
faisalhamdi committed
2354 2355
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
2356 2357
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96 }}>
                        <Typography style={{ color: 'black', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
faisalhamdi's avatar
faisalhamdi committed
2358 2359 2360 2361 2362 2363
                    </TableCell>
                ),
                setCellProps: () => ({ style2 }),
                customBodyRender: (value, tableMeta, updateValue) => {
                    return (
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2381
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2397
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2398 2399 2400 2401 2402 2403
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
2404 2405 2406 2407 2408 2409 2410 2411 2412 2413
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
2414
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
2415
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2416 2417 2418
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
2419
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
2420 2421 2422 2423 2424
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
2425
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
2426 2427 2428 2429 2430 2431 2432
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2433
                                            value={Number(handleForecast(tableMeta, `${Number(this.props.periode) + 1}`)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2434 2435 2436 2437 2438 2439 2440
                                        />
                                    </span>
                                    :
                                    tableMeta.rowData[0] === 4 ?
                                        null
                                        :
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
2441 2442 2443 2444 2445 2446
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2447
                                                value={Number(handleForecast(tableMeta, `${Number(this.props.periode) + 1}`)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2448
                                            />
faisalhamdi's avatar
faisalhamdi committed
2449 2450 2451
                                            :
                                            tableMeta.rowData[0] === 1 ?
                                                null
faisalhamdi's avatar
faisalhamdi committed
2452
                                                :
faisalhamdi's avatar
faisalhamdi committed
2453
                                                null
faisalhamdi's avatar
faisalhamdi committed
2454 2455 2456 2457 2458 2459
                            }
                        </div>
                    )
                }
            }
        }, {
faisalhamdi's avatar
faisalhamdi committed
2460
            name: `31 Dec ${Number(this.props.periode) + 2} Total`,
faisalhamdi's avatar
faisalhamdi committed
2461 2462
            options: {
                customHeadRender: (columnMeta) => (
faisalhamdi's avatar
faisalhamdi committed
2463 2464
                    <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96 }}>
                        <Typography style={{ color: 'black', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
faisalhamdi's avatar
faisalhamdi committed
2465 2466 2467 2468 2469 2470
                    </TableCell>
                ),
                setCellProps: () => ({ style2 }),
                customBodyRender: (value, tableMeta, updateValue) => {
                    return (
                        <div style={{ textAlign: 'right' }}>
faisalhamdi's avatar
faisalhamdi committed
2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487
                            {
                                this.props.status === 'CLOSED' ?
                                tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ?
                                    null
                                    :
                                    tableMeta.rowData[0] === 3 ?
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2488
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503
                                                    />
                                                }
                                            />
                                        </div> :
                                        <div style={{ flex: 1 }}>
                                            <FormControlLabel
                                                style={{ margin: 0 }}
                                                value={value}
                                                control={
                                                    <NumberFormat
                                                        thousandSeparator={true}
                                                        style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                        type="text"
                                                        placeholder=""
                                                        disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2504
                                                        value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2505 2506 2507 2508 2509 2510
                                                    />
                                                }
                                            />
                                        </div>
                                :
                                tableMeta.rowData[0] === 3 ?
faisalhamdi's avatar
faisalhamdi committed
2511 2512 2513 2514 2515 2516 2517 2518 2519 2520
                                <div style={{ flex: 1 }}>
                                    <FormControlLabel
                                        style={{ margin: 0 }}
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ color: "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
Deni Rinaldi's avatar
Deni Rinaldi committed
2521
                                                disabled={this.props.isApprover ? true : ((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
2522
                                                value={Number(value).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2523 2524 2525
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta)
d.arizona's avatar
d.arizona committed
2526
                                                    // // console.log(dataTable2)
faisalhamdi's avatar
faisalhamdi committed
2527 2528 2529 2530 2531
                                                }}
                                            />
                                        }
                                    />
                                </div> :
faisalhamdi's avatar
faisalhamdi committed
2532
                                tableMeta.rowData[0] === 5 ?
faisalhamdi's avatar
faisalhamdi committed
2533 2534 2535 2536 2537 2538 2539
                                    <span style={{ fontSize: 12, textAlign: 'right' }}>
                                        <NumberFormat
                                            thousandSeparator={true}
                                            style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                            type="text"
                                            placeholder=""
                                            disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2540
                                            value={Number(handleForecast(tableMeta, `${Number(this.props.periode) + 2}`)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2541 2542 2543 2544 2545 2546 2547
                                        />
                                    </span>
                                    :
                                    tableMeta.rowData[0] === 4 ?
                                        null
                                        :
                                        tableMeta.rowData[0] === 6 ?
faisalhamdi's avatar
faisalhamdi committed
2548 2549 2550 2551 2552 2553
                                            <NumberFormat
                                                thousandSeparator={true}
                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                type="text"
                                                placeholder=""
                                                disabled={true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2554
                                                value={Number(handleForecast(tableMeta, `${Number(this.props.periode) + 1}`)).toFixed(1)}
faisalhamdi's avatar
faisalhamdi committed
2555
                                            />
faisalhamdi's avatar
faisalhamdi committed
2556 2557 2558
                                            :
                                            tableMeta.rowData[0] === 1 ?
                                                null
faisalhamdi's avatar
faisalhamdi committed
2559
                                                :
faisalhamdi's avatar
faisalhamdi committed
2560
                                                null
faisalhamdi's avatar
faisalhamdi committed
2561
                            }
faisalhamdi's avatar
faisalhamdi committed
2562 2563 2564 2565 2566 2567
                        </div>
                    )
                }
            }
        }
        ]
faisalhamdi's avatar
faisalhamdi committed
2568 2569 2570 2571 2572 2573 2574 2575 2576 2577
        const loadingComponent = (
            <div style={{ position: 'absolute', zIndex: 110, top: 0, left: 0, width: '100%', height: '100%', display: 'flex', justifyContent: 'center', alignItems: 'center', background: 'rgba(255,255,255,0.8)' }}>
                <PropagateLoader
                    // css={override}
                    size={20}
                    color={"#274B80"}
                    loading={this.state.loading}
                />
            </div>
        );
faisalhamdi's avatar
faisalhamdi committed
2578

faisalhamdi's avatar
faisalhamdi committed
2579 2580 2581
        return (
            <div style={{ height: this.props.height, backgroundColor: '#f8f8f8', marginBottom: 100, minHeight: 1000 }}>
                <div className={"main-color"} style={{ height: 78, flex: 1, display: 'flex', alignItems: 'center', paddingLeft: 20 }}>
faisalhamdi's avatar
faisalhamdi committed
2582
                    <Typography style={{ fontSize: '16px', color: 'white' }}>Master Budget Submission</Typography>
faisalhamdi's avatar
faisalhamdi committed
2583
                </div>
faisalhamdi's avatar
faisalhamdi committed
2584 2585 2586 2587 2588
                <Snackbar open={this.state.alert} autoHideDuration={6000} onClose={() => this.closeAlert()}>
                    <Alert onClose={() => this.closeAlert()} severity={this.state.tipeAlert}>
                        {this.state.messageAlert}
                    </Alert>
                </Snackbar>
faisalhamdi's avatar
faisalhamdi committed
2589
                {/* {this.state.loading && loadingComponent} */}
faisalhamdi's avatar
faisalhamdi committed
2590
                <div style={{ flex: 1, padding: 20, width: '100%' }}>
faisalhamdi's avatar
faisalhamdi committed
2591 2592 2593
                    {this.state.visibleFixedAssetsMovement === true ?
                        <Paper style={{ paddingTop: 10, paddingBottom: 20 }}>
                            <div style={{ borderBottom: 'solid 1px #c4c4c4' }} >
faisalhamdi's avatar
faisalhamdi committed
2594
                                <Typography style={{ fontSize: '12px', color: '#4b4b4b', margin: 10 }}>Master Budget - Fixed Assets Movement</Typography>
faisalhamdi's avatar
faisalhamdi committed
2595 2596 2597 2598 2599
                            </div>
                            <div style={{ padding: 20 }}>
                                <div style={{ display: 'flex', justifyContent: 'space-between' }}>
                                    <div>
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>{this.props.company.company_name}</Typography>
faisalhamdi's avatar
faisalhamdi committed
2600
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Period : {this.props.periode} (rev.{this.props.revision})</Typography>
faisalhamdi's avatar
faisalhamdi committed
2601 2602 2603
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>in IDR mn</Typography>
                                    </div>
                                    <div style={{ width: '50%' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2604
                                        {this.state.dataTable.length == 0 ? null : this.props.isApprover == true ?
faisalhamdi's avatar
faisalhamdi committed
2605
                                            <div style={{ justifyContent: 'flex-end', display: 'flex', flexFlow: 'wrap' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2606
                                                <a data-tip={'Download'} data-for="download">
faisalhamdi's avatar
faisalhamdi committed
2607 2608 2609 2610 2611 2612 2613
                                                    <button
                                                        style={{
                                                            backgroundColor: 'transparent',
                                                            cursor: 'pointer',
                                                            borderColor: 'transparent',
                                                            margin: 5
                                                        }}
Deni Rinaldi's avatar
Deni Rinaldi committed
2614 2615 2616 2617 2618 2619
                                                        onClick={() =>
                                                            this.setState({ loading: true }, () => {
                                                                setTimeout(() => {
                                                                    this.downloadAllData()
                                                                }, 100);
                                                            })}
faisalhamdi's avatar
faisalhamdi committed
2620
                                                    >
Deni Rinaldi's avatar
Deni Rinaldi committed
2621
                                                        <img src={Images.download} />
faisalhamdi's avatar
faisalhamdi committed
2622 2623
                                                    </button>
                                                </a>
Deni Rinaldi's avatar
Deni Rinaldi committed
2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643
                                                <ReactTooltip border={true} id="download" place="bottom" type="light" effect="solid" />
                                            </div> :
                                            <div style={{ justifyContent: 'flex-end', display: 'flex', flexFlow: 'wrap' }}>
                                                {((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === "draft" || this.props.status === 'submitted')) && (
                                                    <div>
                                                        <a data-tip={'Download Template'} data-for="template">
                                                            <button
                                                                style={{
                                                                    backgroundColor: 'transparent',
                                                                    cursor: 'pointer',
                                                                    borderColor: 'transparent',
                                                                    margin: 5
                                                                }}
                                                                onClick={() => this.downloadTemplate()}
                                                            >
                                                                <img src={Images.template} />
                                                            </button>
                                                        </a>
                                                        <ReactTooltip border={true} id="template" place="bottom" type="light" effect="solid" />
                                                    </div>
a.bairuha's avatar
a.bairuha committed
2644
                                                )}
Deni Rinaldi's avatar
Deni Rinaldi committed
2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661
                                                {((this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === "draft" || this.props.status === 'submitted')) && (
                                                    <div>
                                                        <a data-tip={'Upload'} data-for="upload">
                                                            <button
                                                                style={{
                                                                    backgroundColor: 'transparent',
                                                                    cursor: 'pointer',
                                                                    borderColor: 'transparent',
                                                                    margin: 5
                                                                }}
                                                                onClick={() => this.setState({ visibleUpload: true })}
                                                            >
                                                                <img src={Images.upload} />
                                                            </button>
                                                        </a>
                                                        <ReactTooltip border={true} id="upload" place="bottom" type="light" effect="solid" />
                                                    </div>
a.bairuha's avatar
a.bairuha committed
2662
                                                )}
faisalhamdi's avatar
faisalhamdi committed
2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683
                                                <a data-tip={'Download'} data-for="download">
                                                    <button
                                                        style={{
                                                            backgroundColor: 'transparent',
                                                            cursor: 'pointer',
                                                            borderColor: 'transparent',
                                                            margin: 5
                                                        }}
                                                        onClick={() =>
                                                            this.setState({ loading: true }, () => {
                                                                setTimeout(() => {
                                                                    this.downloadAllData()
                                                                }, 100);
                                                            })}
                                                    >
                                                        <img src={Images.download} />
                                                    </button>
                                                </a>
                                                <ReactTooltip border={true} id="download" place="bottom" type="light" effect="solid" />
                                            </div>
                                        }
faisalhamdi's avatar
faisalhamdi committed
2684
                                    </div>
faisalhamdi's avatar
faisalhamdi committed
2685
                                </div>
faisalhamdi's avatar
faisalhamdi committed
2686

faisalhamdi's avatar
faisalhamdi committed
2687
                                <div style={{ marginTop: 20, width: this.props.width - (this.props.open === true ? 400 : 150) }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2688
                                    {this.state.loading && loadingComponent}
faisalhamdi's avatar
faisalhamdi committed
2689
                                    <MuiThemeProvider theme={getMuiTheme()}>
faisalhamdi's avatar
faisalhamdi committed
2690 2691 2692 2693 2694
                                        <MUIDataTable
                                            data={dataTable2}
                                            columns={columns}
                                            options={options}
                                        />
faisalhamdi's avatar
faisalhamdi committed
2695
                                    </MuiThemeProvider>
Deni Rinaldi's avatar
Deni Rinaldi committed
2696
                                </div>
faisalhamdi's avatar
faisalhamdi committed
2697
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 20 }}>Last Updated by : {this.state.updateBy}</Typography>
faisalhamdi's avatar
faisalhamdi committed
2698
                            </div>
faisalhamdi's avatar
faisalhamdi committed
2699
                            <div className="grid grid-2x" style={{ marginTop: 20 }}>
faisalhamdi's avatar
faisalhamdi committed
2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710
                                <div className="col-1">
                                    <button
                                        className="button"
                                        type="button"
                                        style={{
                                            backgroundColor: 'transparent',
                                            cursor: 'pointer',
                                            borderColor: 'transparent',
                                            outline: 'none',
                                            marginRight: 20
                                        }}
faisalhamdi's avatar
faisalhamdi committed
2711 2712 2713 2714 2715
                                        onClick={() => this.setState({ loading: true }, () => {
                                            setTimeout(() => {
                                                this.props.onClickClose()
                                            }, 100);
                                        })}
faisalhamdi's avatar
faisalhamdi committed
2716
                                    >
faisalhamdi's avatar
faisalhamdi committed
2717
                                        <div style={{ backgroundColor: '#019ce5', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center' }}>
d.arizona's avatar
d.arizona committed
2718
                                            <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Back</Typography>
faisalhamdi's avatar
faisalhamdi committed
2719 2720
                                        </div>
                                    </button>
faisalhamdi's avatar
faisalhamdi committed
2721
                                </div>
a.bairuha's avatar
a.bairuha committed
2722
                                {this.props.isApprover === true || this.state.dataTable.length == 0 ? null :
faisalhamdi's avatar
faisalhamdi committed
2723
                                    (this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === "draft" || this.props.status === 'submitted') ?
Deni Rinaldi's avatar
Deni Rinaldi committed
2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759
                                        <div className="col-2" style={{ display: 'flex', justifyContent: 'flex-end', maxWidth: '100%' }}>
                                            <button
                                                className="button"
                                                type="button"
                                                style={{
                                                    backgroundColor: 'transparent',
                                                    cursor: 'pointer',
                                                    borderColor: 'transparent',
                                                    outline: 'none',
                                                    marginRight: 20
                                                }}
                                                onClick={() => {
                                                    this.setState({ loading: true }, () => {
                                                        setTimeout(() => {
                                                            this.handleValidate()
                                                        }, 100);
                                                    })
                                                }}
                                            >
                                                <div style={{ backgroundColor: '#fff', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center', border: 'solid 1px #354960' }}>
                                                    <Typography style={{ fontSize: '11px', color: '#354960', textAlign: 'center' }}>Calculate</Typography>
                                                </div>
                                            </button>
                                            <button
                                                className="button"
                                                type="button"
                                                style={{
                                                    backgroundColor: 'transparent',
                                                    cursor: this.state.editable !== true ? 'pointer' : 'default',
                                                    borderColor: 'transparent',
                                                    outline: 'none',
                                                    marginRight: 20
                                                }}
                                                onClick={() =>
                                                    this.state.editable === true ?
                                                        null :
faisalhamdi's avatar
faisalhamdi committed
2760
                                                        this.state.handleTekTekTek == 1 ? null :
Deni Rinaldi's avatar
Deni Rinaldi committed
2761
                                                            this.setState({ handleTekTekTek: 1 }, () => {
faisalhamdi's avatar
faisalhamdi committed
2762
                                                                this.backToMasterBudget('draft')
Deni Rinaldi's avatar
Deni Rinaldi committed
2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792
                                                            })
                                                }
                                            >
                                                <div style={{ backgroundColor: '#354960', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center' }}>
                                                    <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Save as Draft</Typography>
                                                </div>
                                            </button>
                                            <button
                                                type="button"
                                                disabled={this.state.buttonError}
                                                onClick={() =>
                                                    this.state.buttonError ?
                                                        this.setState({ alert: true, messageAlert: 'Data is not complete !', tipeAlert: 'warning' })
                                                        :
                                                        this.state.handleTekTekTek == 1 ? null :
                                                            this.setState({ handleTekTekTek: 1 }, () => {
                                                                this.backToMasterBudget('submitted')
                                                            })}
                                                style={{
                                                    backgroundColor: 'transparent',
                                                    cursor: this.state.buttonError === true ? 'default' : 'pointer',
                                                    borderColor: 'transparent',
                                                    outline: 'none',
                                                }}
                                            >
                                                <div style={{ backgroundColor: '#354960', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center' }}>
                                                    <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Save & Complete</Typography>
                                                </div>
                                            </button>
                                        </div> : null
faisalhamdi's avatar
faisalhamdi committed
2793
                                }
faisalhamdi's avatar
faisalhamdi committed
2794 2795 2796 2797 2798 2799 2800 2801
                            </div>
                        </Paper>
                        :
                        <Paper style={{ paddingTop: 10, paddingBottom: 20 }}>
                            <div>
                                <div style={{ padding: 25 }}>
                                    <div>
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>{this.props.company.company_name}</Typography>
faisalhamdi's avatar
faisalhamdi committed
2802
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Period : {this.props.periode}</Typography>
faisalhamdi's avatar
faisalhamdi committed
2803
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>in IDR mn</Typography>
faisalhamdi's avatar
faisalhamdi committed
2804
                                    </div>
faisalhamdi's avatar
faisalhamdi committed
2805
                                    {this.state.dataLoaded && (
faisalhamdi's avatar
faisalhamdi committed
2806
                                        <div style={{ marginTop: 20, width: this.props.width - (this.props.open === true ? 400 : 150) }}>
faisalhamdi's avatar
faisalhamdi committed
2807 2808
                                            {this.state.loading && loadingComponent}
                                            <MuiThemeProvider theme={getMuiTheme()}>
faisalhamdi's avatar
faisalhamdi committed
2809 2810 2811 2812 2813
                                                <MUIDataTable
                                                    data={dataTable2}
                                                    columns={columns}
                                                    options={options}
                                                />
faisalhamdi's avatar
faisalhamdi committed
2814
                                            </MuiThemeProvider>
faisalhamdi's avatar
faisalhamdi committed
2815 2816 2817
                                        </div>
                                    )}
                                </div>
2818 2819 2820 2821 2822 2823

                                <div className="grid grid-2x" style={{ marginTop: 20 }}>
                                    <div className="col-1">
                                        <button
                                            type="button"
                                            onClick={() => this.setState({ loading: true, visibleFixedAssetsMovement: true }, () => {
faisalhamdi's avatar
faisalhamdi committed
2824
                                                setTimeout(() => {
2825
                                                    this.getItemHierarki()
faisalhamdi's avatar
faisalhamdi committed
2826
                                                }, 100);
2827 2828 2829 2830
                                            })}
                                            style={{ marginRight: 20 }}
                                        >
                                            <div style={{ backgroundColor: '#019ce5', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center' }}>
d.arizona's avatar
d.arizona committed
2831
                                                <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Back</Typography>
2832 2833 2834 2835 2836 2837 2838
                                            </div>
                                        </button>
                                    </div>
                                    <div className="col-2" style={{ display: 'flex', justifyContent: 'flex-end', maxWidth: '100%' }}>
                                        <button
                                            className="button"
                                            type="button"
d.arizona's avatar
d.arizona committed
2839
                                            // disabled={this.state.buttonError}
2840 2841
                                            style={{
                                                backgroundColor: 'transparent',
Deni Rinaldi's avatar
Deni Rinaldi committed
2842
                                                cursor: 'pointer',
2843 2844 2845 2846 2847 2848 2849
                                                borderColor: 'transparent',
                                                outline: 'none',
                                                marginRight: 20
                                            }}
                                            onClick={() => {
                                                this.setState({ loading: true }, () => {
                                                    setTimeout(() => {
Deni Rinaldi's avatar
Deni Rinaldi committed
2850
                                                        this.setState({ loading: false, buttonError: this.state.errorPreview === true ? true : false, editable: false })
2851 2852 2853 2854 2855 2856 2857 2858 2859
                                                    }, 100);
                                                })
                                            }}
                                        >
                                            <div style={{ backgroundColor: '#fff', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center', border: 'solid 1px #354960' }}>
                                                <Typography style={{ fontSize: '11px', color: '#354960', textAlign: 'center' }}>Calculate</Typography>
                                            </div>
                                        </button>
                                        <button
faisalhamdi's avatar
faisalhamdi committed
2860
                                            className="button"
2861 2862
                                            type="button"
                                            disabled={this.state.buttonError}
faisalhamdi's avatar
faisalhamdi committed
2863 2864
                                            style={{
                                                backgroundColor: 'transparent',
faisalhamdi's avatar
faisalhamdi committed
2865
                                                cursor: this.state.editable === true ? 'default' : 'pointer',
faisalhamdi's avatar
faisalhamdi committed
2866 2867 2868 2869
                                                borderColor: 'transparent',
                                                outline: 'none',
                                                marginRight: 20
                                            }}
faisalhamdi's avatar
faisalhamdi committed
2870
                                            onClick={() => this.state.editable === true ?
Deni Rinaldi's avatar
Deni Rinaldi committed
2871 2872 2873 2874 2875 2876 2877
                                                null : this.setState({ loading: true }, () =>
                                                    this.state.handleTekTekTek == 1 ? null :
                                                        this.setState({ handleTekTekTek: 1 }, () => {
                                                            setTimeout(() => {
                                                                this.uploadFAM('draft')
                                                            }, 100);
                                                        }))}
2878 2879 2880 2881 2882 2883 2884
                                        >
                                            <div style={{ backgroundColor: '#354960', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center' }}>
                                                <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Save as Draft</Typography>
                                            </div>
                                        </button>
                                        <button
                                            type="button"
faisalhamdi's avatar
faisalhamdi committed
2885 2886 2887 2888 2889 2890
                                            style={{
                                                backgroundColor: 'transparent',
                                                cursor: this.state.editable !== true ? 'pointer' : 'default',
                                                borderColor: 'transparent',
                                                outline: 'none'
                                            }}
Deni Rinaldi's avatar
Deni Rinaldi committed
2891
                                            onClick={() =>
faisalhamdi's avatar
faisalhamdi committed
2892
                                                this.state.editable === true ?
Deni Rinaldi's avatar
Deni Rinaldi committed
2893 2894 2895 2896 2897 2898 2899
                                                    null : this.setState({ loading: true }, () =>
                                                        this.state.handleTekTekTek == 1 ? null :
                                                            this.setState({ handleTekTekTek: 1 }, () => {
                                                                setTimeout(() => {
                                                                    this.uploadFAM('submitted')
                                                                }, 100);
                                                            })
EKSAD's avatar
EKSAD committed
2900
                                                    )
faisalhamdi's avatar
faisalhamdi committed
2901
                                            }
2902 2903 2904 2905 2906 2907
                                        >
                                            <div style={{ backgroundColor: '#354960', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center' }}>
                                                <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Save & Complete</Typography>
                                            </div>
                                        </button>
                                    </div>
faisalhamdi's avatar
faisalhamdi committed
2908
                                </div>
faisalhamdi's avatar
faisalhamdi committed
2909
                            </div>
faisalhamdi's avatar
faisalhamdi committed
2910 2911
                        </Paper>}
                </div>
faisalhamdi's avatar
faisalhamdi committed
2912

faisalhamdi's avatar
faisalhamdi committed
2913 2914 2915 2916 2917 2918 2919
                {this.state.visibleUpload && (
                    <div className="test app-popup-show">
                        <div className="popup-content background-white border-radius" style={{ borderRadius: 8 }}>
                            <div className="popup-panel grid grid-2x main-color" style={{ height: 64, borderTopRightRadius: 8, borderTopLeftRadius: 8 }}>
                                <div className="col-1" style={{ maxWidth: "inherit", display: 'flex', alignItems: 'center' }}>
                                    <div className="popup-title">
                                        <span style={{ color: '#fff', fontSize: 16, fontWeight: 'bold' }}>Upload File</span>
faisalhamdi's avatar
faisalhamdi committed
2920
                                    </div>
faisalhamdi's avatar
faisalhamdi committed
2921
                                </div>
faisalhamdi's avatar
faisalhamdi committed
2922 2923 2924 2925 2926 2927 2928 2929
                                <div className="col-2 content-right" style={{ maxWidth: "inherit", alignSelf: 'center' }}>
                                    <button
                                        type="button"
                                        className="btn btn-circle btn-white"
                                        onClick={() => this.setState({ visibleUpload: false })}
                                    >
                                        <img src={Images.close} />
                                    </button>
faisalhamdi's avatar
faisalhamdi committed
2930 2931
                                </div>
                            </div>
faisalhamdi's avatar
faisalhamdi committed
2932 2933 2934 2935 2936 2937 2938 2939 2940 2941
                            <UploadFile
                                type={this.state.uploadStatus}
                                percentage={this.state.percentage}
                                result={this.state.result}
                                acceptedFiles={["xlsx"]}
                                onHandle={(dt) => {
                                    this.fileHandler(dt)
                                    this.setState({ uploadStatus: 'idle', percentage: '0' })
                                }}
                                onUpload={() => {
r.kurnia's avatar
r.kurnia committed
2942
                                    String(this.state.judul).includes("MASTER") && String(this.state.judul).includes("BUDGET") && String(this.state.judul).includes("FIXED") && String(this.state.judul).includes("ASSETS") && String(this.state.judul).includes("MOVEMENT") ?
faisalhamdi's avatar
faisalhamdi committed
2943 2944 2945 2946
                                        this.checkUpload() :
                                        this.setState({ alert: true, messageAlert: "Invalid Template", tipeAlert: 'warning' })
                                }}
                            />
faisalhamdi's avatar
faisalhamdi committed
2947
                        </div>
faisalhamdi's avatar
faisalhamdi committed
2948 2949
                    </div>
                )}
faisalhamdi's avatar
faisalhamdi committed
2950 2951 2952 2953
            </div>
        );
    }
}