FixedAssetsMovement.js 203 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,
Riri Novita's avatar
Riri Novita committed
50
            updateBy: [],
51
            handleDoubleClick: 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
    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({
Riri Novita's avatar
Riri Novita committed
74
                        updateBy: response.data.data.detail === null ? [] : response.data.data.detail
faisalhamdi's avatar
faisalhamdi committed
75
                    })
faisalhamdi's avatar
faisalhamdi committed
76 77
                } else {
                    this.setState({ alert: true, messageAlert: response.data.message, typeAlert: 'warning', loading: false }, () => {
d.arizona's avatar
d.arizona committed
78
                        if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
faisalhamdi's avatar
faisalhamdi committed
79 80 81 82 83 84
                            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 => {
d.arizona's avatar
d.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
                                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)
                                    })
                                }
                            }
                        })
d.arizona's avatar
d.arizona committed
183
                        console.log(dataTable)
faisalhamdi's avatar
faisalhamdi committed
184 185 186
                        this.setState({ dataTable, loading: false, buttonError: true, editable: true })
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
187
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
faisalhamdi's avatar
faisalhamdi committed
188 189 190 191 192 193
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
faisalhamdi's avatar
faisalhamdi committed
194
                    }
faisalhamdi's avatar
faisalhamdi committed
195
                } else {
Riri Novita's avatar
Riri Novita committed
196
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error', loading: false })
faisalhamdi's avatar
faisalhamdi committed
197
                }
faisalhamdi's avatar
faisalhamdi committed
198
            } else {
d.arizona's avatar
d.arizona committed
199
                this.setState({ alert: true, messageAlert: 'Connection Timeout, please check your Connection', tipeAlert: 'error', loading: false })
faisalhamdi's avatar
faisalhamdi committed
200 201 202 203 204 205 206 207
            }
        })
    }

    handleValue(data) {
        let total = 0
        this.state.dataTable.map((item, index) => {
            if (data.rowData[1] == item[2]) {
faisalhamdi's avatar
faisalhamdi committed
208
                total = item[data.columnIndex] == undefined ? (Number(total) + 0) : (Number(total) + Number(item[data.columnIndex]))
faisalhamdi's avatar
faisalhamdi committed
209 210 211 212
            }
        })
        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
213
        // // console.log(indexParent);
faisalhamdi's avatar
faisalhamdi committed
214 215 216
        return a
    }

faisalhamdi's avatar
faisalhamdi committed
217
    handleChange(value, tableMeta) {
faisalhamdi's avatar
faisalhamdi committed
218
        let val = String(value).split(",").join("")
faisalhamdi's avatar
faisalhamdi committed
219
        let data = this.state.dataTable
faisalhamdi's avatar
faisalhamdi committed
220 221
        let indexParent = data.findIndex((val) => val[1] == data[tableMeta.rowIndex][2])
        if (indexParent > 0) {
d.arizona's avatar
d.arizona committed
222
            // // console.log(indexParent)
faisalhamdi's avatar
faisalhamdi committed
223 224 225 226 227 228
            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
229 230
    }

faisalhamdi's avatar
faisalhamdi committed
231 232 233 234 235
    backToMasterBudget(type) {
        let data = []
        this.state.dataTable.map(i => {
            data.push({
                item_report_id: i[1],
Deni Rinaldi's avatar
Deni Rinaldi committed
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
                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
252 253 254 255 256 257 258 259 260 261
            })
        })
        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
262
        // // console.log(data);
d.arizona's avatar
d.arizona committed
263 264 265 266 267
        if (type == 'submitted') {
            this.props.saveToMasterBudget(payload, 'FAM')
        } else {
            this.props.saveToMasterBudget(payload)
        }
faisalhamdi's avatar
faisalhamdi committed
268 269 270
        this.props.onClickClose()
    }

faisalhamdi's avatar
faisalhamdi committed
271 272
    downloadTemplate = async () => {
        let res = await fetch(
faisalhamdi's avatar
faisalhamdi committed
273
            `${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
274 275
        )
        res = await res.blob()
d.arizona's avatar
d.arizona committed
276
        // // console.log(res)
faisalhamdi's avatar
faisalhamdi committed
277 278 279 280
        if (res.size > 0) {
            let url = window.URL.createObjectURL(res);
            let a = document.createElement('a');
            a.href = url;
faisalhamdi's avatar
faisalhamdi committed
281
            a.download = 'Template Master Budget Fixed Assets Movement.xlsx';
faisalhamdi's avatar
faisalhamdi committed
282 283 284 285 286 287 288
            a.click();
        }
    }

    fileHandler = (event) => {
        let fileObj = event
        ExcelRenderer(fileObj, (err, resp) => {
d.arizona's avatar
d.arizona committed
289
            // // console.log(resp)
faisalhamdi's avatar
faisalhamdi committed
290
            if (err) {
d.arizona's avatar
d.arizona committed
291
                // console.log(err);
faisalhamdi's avatar
faisalhamdi committed
292 293 294
            }
            else {
                let isi = resp.rows.slice(3)
d.arizona's avatar
d.arizona committed
295
                // // console.log(resp.rows[2]);
faisalhamdi's avatar
faisalhamdi committed
296
                let payload = []
faisalhamdi's avatar
faisalhamdi committed
297
                let reg = /^[-+]?(?:[0-9]+,)*[0-9]+(?:\.[0-9]+)?$/;
faisalhamdi's avatar
faisalhamdi committed
298 299 300 301 302
                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
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
                            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
319 320 321 322 323 324 325
                        })
                    }
                })
                let body = {
                    company_id: this.props.company.company_id,
                    periode: this.props.periode,
                    report_id: this.props.report_id,
d.arizona's avatar
d.arizona committed
326 327
                    fixed_asset_movement: payload,
                    status: 'submitted'
faisalhamdi's avatar
faisalhamdi committed
328
                }
d.arizona's avatar
d.arizona committed
329
                // // console.log(body)
faisalhamdi's avatar
faisalhamdi committed
330
                this.setState({ payload: body, judul: resp.rows[1][0], judulColumn: resp.rows[2] })
faisalhamdi's avatar
faisalhamdi committed
331 332 333 334 335 336
            }
        });
    }

    checkUpload() {
        api.create().checkUploadMB(this.state.payload).then(response => {
d.arizona's avatar
d.arizona committed
337 338
            // // console.log(JSON.stringify(this.state.payload));
            // // console.log(response)
faisalhamdi's avatar
faisalhamdi committed
339
            if (response.data) {
faisalhamdi's avatar
faisalhamdi committed
340 341 342 343 344 345 346 347 348 349 350 351
                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
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
                                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
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
                                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' }, () => {
d.arizona's avatar
d.arizona committed
384
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
faisalhamdi's avatar
faisalhamdi committed
385 386 387 388
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
faisalhamdi's avatar
faisalhamdi committed
389 390
                            }
                        })
faisalhamdi's avatar
faisalhamdi committed
391 392 393
                    }
                } else {
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
faisalhamdi's avatar
faisalhamdi committed
394
                }
faisalhamdi's avatar
faisalhamdi committed
395 396
            } else {
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
faisalhamdi's avatar
faisalhamdi committed
397 398 399 400
            }
        })
    }

faisalhamdi's avatar
faisalhamdi committed
401
    uploadFAM(type) {
faisalhamdi's avatar
faisalhamdi committed
402 403 404 405
        let data = []
        this.state.dataTable.map(i => {
            data.push({
                item_report_id: i[1],
Deni Rinaldi's avatar
Deni Rinaldi committed
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
                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
422 423 424
            })
        })
        let body = {
faisalhamdi's avatar
faisalhamdi committed
425
            submission_id: this.props.submissionID,
faisalhamdi's avatar
faisalhamdi committed
426 427 428
            company_id: this.props.company.company_id,
            periode: this.props.periode,
            report_id: this.props.report_id,
faisalhamdi's avatar
faisalhamdi committed
429 430
            fixed_asset_movement: data,
            status: type
faisalhamdi's avatar
faisalhamdi committed
431
        }
d.arizona's avatar
d.arizona committed
432
        // // console.log(JSON.stringify(body));
faisalhamdi's avatar
faisalhamdi committed
433
        api.create('UPLOAD').uploadMasterBudget(body).then(response => {
d.arizona's avatar
d.arizona committed
434
            // // console.log(response);
faisalhamdi's avatar
faisalhamdi committed
435
            if (response.data) {
faisalhamdi's avatar
faisalhamdi committed
436 437 438
                if (response.ok) {
                    if (response.data.status === "success") {
                        this.props.onClickClose()
d.arizona's avatar
d.arizona committed
439 440 441 442 443
                        if (type == 'submitted') {
                            this.props.getReport('FAM')
                        } else {
                            this.props.getReport()
                        }
faisalhamdi's avatar
faisalhamdi committed
444 445
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
446
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
faisalhamdi's avatar
faisalhamdi committed
447 448 449 450 451 452 453
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
                    }
faisalhamdi's avatar
faisalhamdi committed
454
                } else {
faisalhamdi's avatar
faisalhamdi committed
455
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
faisalhamdi's avatar
faisalhamdi committed
456 457
                }
            } else {
faisalhamdi's avatar
faisalhamdi committed
458 459
                // this.setState({ loading: false })
                // alert(response.problem)
d.arizona's avatar
d.arizona committed
460
                this.setState({ alert: true, messageAlert: 'Error saving data. Please try again', tipeAlert: 'error', loading: false })
faisalhamdi's avatar
faisalhamdi committed
461 462 463 464
            }
        })
    }

faisalhamdi's avatar
faisalhamdi committed
465
    async downloadAllData() {
faisalhamdi's avatar
faisalhamdi committed
466
        // 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
467
        // // console.log(url);
faisalhamdi's avatar
faisalhamdi committed
468 469
        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
470
        let res = await fetch(
d.arizona's avatar
d.arizona committed
471
            this.props.submissionID == null ? resNull : resReal
faisalhamdi's avatar
faisalhamdi committed
472 473 474 475 476 477 478
        )
        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
479
            a.download = 'Master Budget Fixed Assets Movement.xlsx';
faisalhamdi's avatar
faisalhamdi committed
480 481 482 483
            a.click();
        }
    }

faisalhamdi's avatar
faisalhamdi committed
484 485
    handleValidate() {
        let data = []
d.arizona's avatar
d.arizona committed
486
        // // console.log(this.state.dataTable)
faisalhamdi's avatar
faisalhamdi committed
487 488 489 490
        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
491 492 493 494 495 496 497 498 499 500 501 502
                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
503 504 505
                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
506 507
            })
        })
d.arizona's avatar
d.arizona committed
508
        // // console.log(JSON.stringify(data))
faisalhamdi's avatar
faisalhamdi committed
509
        let payload = {
faisalhamdi's avatar
faisalhamdi committed
510 511 512 513 514 515
            "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
516 517
        }
        api.create().validateSubmitReport(payload).then((response) => {
d.arizona's avatar
d.arizona committed
518
            // // console.log(response)
faisalhamdi's avatar
faisalhamdi committed
519
            if (response.data.data.result) {
faisalhamdi's avatar
faisalhamdi committed
520
                this.setState({ loading: false, buttonError: false, editable: false })
faisalhamdi's avatar
faisalhamdi committed
521 522 523 524 525 526
            } else {
                this.setState({ loading: false, buttonError: true, editable: true })
            }
        })
    }

faisalhamdi's avatar
faisalhamdi committed
527 528 529 530
    closeAlert() {
        this.setState({ alert: false })
    }

faisalhamdi's avatar
faisalhamdi committed
531
    render() {
faisalhamdi's avatar
faisalhamdi committed
532
        let dataTable2 = this.state.dataTable
Dida Adams Arizona's avatar
Dida Adams Arizona committed
533
        const handleValueFormula = (value, tableMeta, Bfr) => {
d.arizona's avatar
d.arizona committed
534 535 536
            let splitFormula = String(tableMeta.rowData[3]).split('@')
            let baru = []
            let anjay = []
Deni Rinaldi's avatar
Deni Rinaldi committed
537 538
            splitFormula.map((item, index) => {
                let items = String(item).substr(Number(String(item).length) - 1, 1)
d.arizona's avatar
d.arizona committed
539 540 541 542
                let re = /^[a-zA-Z0-9_]+$/;
                let asd = ''
                if (item !== "") {
                    if (!re.test(items)) {
Deni Rinaldi's avatar
Deni Rinaldi committed
543 544
                        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
545 546 547 548 549 550
                    } else {
                        baru.push(String(item))
                    }
                }
            })

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

            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
635
                    item = item == "" ? 0 : item
d.arizona's avatar
d.arizona committed
636 637 638 639 640 641 642
                    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
643
                        total = Number(total) / Number(item) == NaN ? 0 : Number(total) / Number(item)
d.arizona's avatar
d.arizona committed
644 645 646 647 648
                    } else {
                        total += Number(item)
                    }
                }
            })
Deni Rinaldi's avatar
Deni Rinaldi committed
649
            total = R.equals(total, NaN) ? "0.0" : total
d.arizona's avatar
d.arizona committed
650
            // // console.log(dataTable2[tableMeta.rowIndex][22])
Deni Rinaldi's avatar
Deni Rinaldi committed
651
            // // console.log(tableMeta.rowData[5])
d.arizona's avatar
d.arizona committed
652
            // if (tableMeta.rowData[5] == 'Beginning Balance') {
Deni Rinaldi's avatar
Deni Rinaldi committed
653 654
            // console.log(baru)
            // console.log(anjay)
Deni Rinaldi's avatar
Deni Rinaldi committed
655
            // console.log(total)
d.arizona's avatar
d.arizona committed
656
            // }
Deni Rinaldi's avatar
Deni Rinaldi committed
657

d.arizona's avatar
d.arizona committed
658
            if (dataTable2[tableMeta.rowIndex][tableMeta.columnIndex].value == undefined) {
d.arizona's avatar
d.arizona committed
659
                // // console.log([tableMeta.rowIndex][tableMeta.columnIndex])
d.arizona's avatar
d.arizona committed
660 661 662 663 664 665 666 667
                dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = total
            } else {
                dataTable2[tableMeta.rowIndex][tableMeta.columnIndex].value = total
            }

            return total
        }

faisalhamdi's avatar
faisalhamdi committed
668
        const handleChange = (value, tableMeta, type) => {
faisalhamdi's avatar
faisalhamdi committed
669
            let val = String(value).split(",").join("")
faisalhamdi's avatar
faisalhamdi committed
670
            if (type === "actual") {
Deni Rinaldi's avatar
Deni Rinaldi committed
671
                dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = Number(val)
faisalhamdi's avatar
faisalhamdi committed
672
            } else {
Deni Rinaldi's avatar
Deni Rinaldi committed
673
                let indexParent = dataTable2.findIndex((val) => val[1] == dataTable2[tableMeta.rowIndex][2])
faisalhamdi's avatar
faisalhamdi committed
674
                if (indexParent > 0) {
d.arizona's avatar
d.arizona committed
675
                    let a = 0
d.arizona's avatar
d.arizona committed
676
                    // // console.log(indexParent)
d.arizona's avatar
d.arizona committed
677 678 679 680 681
                    if (String(tableMeta.rowData[5]).toLocaleLowerCase() == 'beginning balance') {
                        a = dataTable2[tableMeta.rowIndex][tableMeta.columnIndex].value = Number(val)
                    } else {
                        a = dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = Number(val)
                    }
faisalhamdi's avatar
faisalhamdi committed
682 683 684
                    let jagain = dataTable2[indexParent][tableMeta.columnIndex]
                    a = dataTable2[indexParent][tableMeta.columnIndex] = jagain == undefined ? (0 + Number(val)) : (jagain + Number(val))
                } else {
d.arizona's avatar
d.arizona committed
685 686 687 688 689 690
                    if (String(tableMeta.rowData[5]).toLocaleLowerCase() == 'beginning balance') {
                        dataTable2[tableMeta.rowIndex][tableMeta.columnIndex].value = Number(val)
                    } else {
                        dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = Number(val)
                    }
                    // dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = Number(val)
faisalhamdi's avatar
faisalhamdi committed
691
                }
faisalhamdi's avatar
faisalhamdi committed
692 693
            }
        }
d.arizona's avatar
d.arizona committed
694
        const handleForecast = (tableMeta, periode) => {
d.arizona's avatar
d.arizona committed
695
            let total = 0
d.arizona's avatar
d.arizona committed
696
            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
697
                if (String(tableMeta.rowData[5]).toLocaleLowerCase() == 'beginning balance') {
Riri Novita's avatar
Riri Novita committed
698
                    let indexID = dataTable2.findIndex((val, index) => String(val[5]).toLocaleLowerCase() == 'ending balance' && dataTable2[index - 1][2] == tableMeta.rowData[2])
d.arizona's avatar
d.arizona committed
699
                    if (indexID !== -1) {
d.arizona's avatar
d.arizona committed
700
                        // console.log(dataTable2)
Riri Novita's avatar
Riri Novita committed
701
                        total = tableMeta.columnIndex == 21 ? dataTable2[indexID][20] : dataTable2[indexID][18].value
d.arizona's avatar
d.arizona committed
702 703 704 705 706 707
                    }
                } 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
708 709
                }
            } else {
d.arizona's avatar
d.arizona committed
710
                total = handleValueFormula(tableMeta.columnIndex, tableMeta)
d.arizona's avatar
d.arizona committed
711
            }
d.arizona's avatar
d.arizona committed
712
            dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = total
d.arizona's avatar
d.arizona committed
713 714
            return total
        }
faisalhamdi's avatar
faisalhamdi committed
715 716
        const handleTotal = (tableMeta) => {
            let total = 0
faisalhamdi's avatar
faisalhamdi committed
717
            // console.log(tableMeta)            
faisalhamdi's avatar
faisalhamdi committed
718 719 720
            // if (tableMeta.rowData[5] == 'Beginning balance') {
            //     console.log(tableMeta.rowData)
            // }
d.arizona's avatar
d.arizona committed
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
            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
736
            return total
d.arizona's avatar
d.arizona committed
737
            // // console.log(total);
faisalhamdi's avatar
faisalhamdi committed
738
        }
faisalhamdi's avatar
faisalhamdi committed
739 740 741 742 743 744 745 746 747
        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
748
            // // console.log(indexParent);
faisalhamdi's avatar
faisalhamdi committed
749 750
            return a
        }
Dida Adams Arizona's avatar
Dida Adams Arizona committed
751

Riri Novita's avatar
Riri Novita committed
752
        const handleBfr = (value, tableMeta) => {
Deni Rinaldi's avatar
Deni Rinaldi committed
753
            let total = 0
Dida Adams Arizona's avatar
Dida Adams Arizona committed
754 755 756 757
            total = handleValueFormula(value, tableMeta, 'before')
            return total
        }

faisalhamdi's avatar
faisalhamdi committed
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
        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
791
                        // // console.log(response);
faisalhamdi's avatar
faisalhamdi committed
792 793 794
                        if (response.data) {
                            if (response.data.status === "success") {
                                setTimeout(() => {
Deni Rinaldi's avatar
Deni Rinaldi committed
795
                                    return response.data.data.result
faisalhamdi's avatar
faisalhamdi committed
796 797 798
                                }, 2000);
                            }
                        }
faisalhamdi's avatar
faisalhamdi committed
799
                    })
faisalhamdi's avatar
faisalhamdi committed
800
                } else {
faisalhamdi's avatar
faisalhamdi committed
801 802 803 804 805 806 807 808 809
                    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
810
                        // // console.log(response)
faisalhamdi's avatar
faisalhamdi committed
811 812
                        if (response.data) {
                            if (response.data.status === "success") {
faisalhamdi's avatar
faisalhamdi committed
813
                                setTimeout(() => {
Deni Rinaldi's avatar
Deni Rinaldi committed
814
                                    return response.data.data.result
faisalhamdi's avatar
faisalhamdi committed
815
                                }, 2000);
faisalhamdi's avatar
faisalhamdi committed
816 817 818
                            }
                        }
                    })
faisalhamdi's avatar
faisalhamdi committed
819
                }
faisalhamdi's avatar
faisalhamdi committed
820 821 822 823 824 825 826
            } 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
827
                    } else {
faisalhamdi's avatar
faisalhamdi committed
828
                        arrayJumlah.push(item)
faisalhamdi's avatar
faisalhamdi committed
829
                    }
faisalhamdi's avatar
faisalhamdi committed
830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862
                    // 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
863
        }
Dida Adams Arizona's avatar
Dida Adams Arizona committed
864

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

faisalhamdi's avatar
faisalhamdi committed
2603 2604 2605
        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
2606
                    <Typography style={{ fontSize: '16px', color: 'white' }}>Master Budget Submission</Typography>
faisalhamdi's avatar
faisalhamdi committed
2607
                </div>
faisalhamdi's avatar
faisalhamdi committed
2608 2609 2610 2611 2612
                <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
2613
                {/* {this.state.loading && loadingComponent} */}
faisalhamdi's avatar
faisalhamdi committed
2614
                <div style={{ flex: 1, padding: 20, width: '100%' }}>
faisalhamdi's avatar
faisalhamdi committed
2615 2616 2617
                    {this.state.visibleFixedAssetsMovement === true ?
                        <Paper style={{ paddingTop: 10, paddingBottom: 20 }}>
                            <div style={{ borderBottom: 'solid 1px #c4c4c4' }} >
faisalhamdi's avatar
faisalhamdi committed
2618
                                <Typography style={{ fontSize: '12px', color: '#4b4b4b', margin: 10 }}>Master Budget - Fixed Assets Movement</Typography>
faisalhamdi's avatar
faisalhamdi committed
2619 2620 2621 2622 2623
                            </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
2624
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Period : {this.props.periode} (rev.{this.props.revision})</Typography>
faisalhamdi's avatar
faisalhamdi committed
2625 2626 2627
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>in IDR mn</Typography>
                                    </div>
                                    <div style={{ width: '50%' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2628
                                        {this.state.dataTable.length == 0 ? null : this.props.isApprover == true ?
Riri Novita's avatar
Riri Novita committed
2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651
                                            null
                                            // <div style={{ justifyContent: 'flex-end', display: 'flex', flexFlow: 'wrap' }}>
                                            //     <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> 
                                            :
Deni Rinaldi's avatar
Deni Rinaldi committed
2652
                                            <div style={{ justifyContent: 'flex-end', display: 'flex', flexFlow: 'wrap' }}>
syadziy's avatar
syadziy committed
2653
                                                {((!this.props.truelyApprover) && (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
2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669
                                                    <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
2670
                                                )}
syadziy's avatar
syadziy committed
2671
                                                {((!this.props.truelyApprover) && (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
2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687
                                                    <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
2688
                                                )}
Riri Novita's avatar
Riri Novita committed
2689
                                                {/* <a data-tip={'Download'} data-for="download">
faisalhamdi's avatar
faisalhamdi committed
2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706
                                                    <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>
Riri Novita's avatar
Riri Novita committed
2707
                                                <ReactTooltip border={true} id="download" place="bottom" type="light" effect="solid" /> */}
faisalhamdi's avatar
faisalhamdi committed
2708 2709
                                            </div>
                                        }
faisalhamdi's avatar
faisalhamdi committed
2710
                                    </div>
faisalhamdi's avatar
faisalhamdi committed
2711
                                </div>
faisalhamdi's avatar
faisalhamdi committed
2712

faisalhamdi's avatar
faisalhamdi committed
2713
                                <div style={{ marginTop: 20, width: this.props.width - (this.props.open === true ? 400 : 150) }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2714
                                    {this.state.loading && loadingComponent}
faisalhamdi's avatar
faisalhamdi committed
2715
                                    <MuiThemeProvider theme={getMuiTheme()}>
faisalhamdi's avatar
faisalhamdi committed
2716 2717 2718 2719 2720
                                        <MUIDataTable
                                            data={dataTable2}
                                            columns={columns}
                                            options={options}
                                        />
faisalhamdi's avatar
faisalhamdi committed
2721
                                    </MuiThemeProvider>
Deni Rinaldi's avatar
Deni Rinaldi committed
2722
                                </div>
Riri Novita's avatar
Riri Novita committed
2723 2724 2725 2726 2727 2728 2729 2730 2731
                                <div style={{ display: 'flex' }}>
                                    <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 20 }}>Last Updated by : </Typography>
                                    <div style={{ marginLeft: 10, overflowY: 'scroll', height: this.state.updateBy.length < 2 ? 25 : 75, marginTop: 10 }}>
                                        {
                                            this.state.updateBy.length > 0 ? this.state.updateBy.reverse().map((item, index) => {
                                                return (
                                                    <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 10, marginRight: 5 }}>{item.latest_update}</Typography>
                                                )
                                            }) :
Riri Novita's avatar
Riri Novita committed
2732
                                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 10, marginRight: 5 }}>-</Typography>
Riri Novita's avatar
Riri Novita committed
2733 2734 2735
                                        }
                                    </div>
                                </div>
faisalhamdi's avatar
faisalhamdi committed
2736
                            </div>
faisalhamdi's avatar
faisalhamdi committed
2737
                            <div className="grid grid-2x" style={{ marginTop: 20 }}>
faisalhamdi's avatar
faisalhamdi committed
2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748
                                <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
2749 2750 2751 2752 2753
                                        onClick={() => this.setState({ loading: true }, () => {
                                            setTimeout(() => {
                                                this.props.onClickClose()
                                            }, 100);
                                        })}
faisalhamdi's avatar
faisalhamdi committed
2754
                                    >
faisalhamdi's avatar
faisalhamdi committed
2755
                                        <div style={{ backgroundColor: '#019ce5', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center' }}>
d.arizona's avatar
d.arizona committed
2756
                                            <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Back</Typography>
faisalhamdi's avatar
faisalhamdi committed
2757 2758
                                        </div>
                                    </button>
faisalhamdi's avatar
faisalhamdi committed
2759
                                </div>
a.bairuha's avatar
a.bairuha committed
2760
                                {this.props.isApprover === true || this.state.dataTable.length == 0 ? null :
syadziy's avatar
syadziy committed
2761
                                    (!this.props.truelyApprover) && (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
2762 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 2793 2794 2795 2796 2797
                                        <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 :
2798 2799
                                                        this.state.handleDoubleClick == 1 ? null :
                                                            this.setState({ handleDoubleClick: 1 }, () => {
faisalhamdi's avatar
faisalhamdi committed
2800
                                                                this.backToMasterBudget('draft')
Deni Rinaldi's avatar
Deni Rinaldi committed
2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814
                                                            })
                                                }
                                            >
                                                <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' })
                                                        :
2815 2816
                                                        this.state.handleDoubleClick == 1 ? null :
                                                            this.setState({ handleDoubleClick: 1 }, () => {
Deni Rinaldi's avatar
Deni Rinaldi committed
2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830
                                                                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
2831
                                }
faisalhamdi's avatar
faisalhamdi committed
2832 2833 2834 2835 2836 2837 2838 2839
                            </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
2840
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Period : {this.props.periode}</Typography>
faisalhamdi's avatar
faisalhamdi committed
2841
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>in IDR mn</Typography>
faisalhamdi's avatar
faisalhamdi committed
2842
                                    </div>
faisalhamdi's avatar
faisalhamdi committed
2843
                                    {this.state.dataLoaded && (
faisalhamdi's avatar
faisalhamdi committed
2844
                                        <div style={{ marginTop: 20, width: this.props.width - (this.props.open === true ? 400 : 150) }}>
faisalhamdi's avatar
faisalhamdi committed
2845 2846
                                            {this.state.loading && loadingComponent}
                                            <MuiThemeProvider theme={getMuiTheme()}>
faisalhamdi's avatar
faisalhamdi committed
2847 2848 2849 2850 2851
                                                <MUIDataTable
                                                    data={dataTable2}
                                                    columns={columns}
                                                    options={options}
                                                />
faisalhamdi's avatar
faisalhamdi committed
2852
                                            </MuiThemeProvider>
faisalhamdi's avatar
faisalhamdi committed
2853 2854 2855
                                        </div>
                                    )}
                                </div>
2856 2857 2858 2859 2860 2861

                                <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
2862
                                                setTimeout(() => {
2863
                                                    this.getItemHierarki()
faisalhamdi's avatar
faisalhamdi committed
2864
                                                }, 100);
2865 2866 2867 2868
                                            })}
                                            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
2869
                                                <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Back</Typography>
2870 2871 2872 2873 2874 2875 2876
                                            </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
2877
                                            // disabled={this.state.buttonError}
2878 2879
                                            style={{
                                                backgroundColor: 'transparent',
Deni Rinaldi's avatar
Deni Rinaldi committed
2880
                                                cursor: 'pointer',
2881 2882 2883 2884 2885 2886 2887
                                                borderColor: 'transparent',
                                                outline: 'none',
                                                marginRight: 20
                                            }}
                                            onClick={() => {
                                                this.setState({ loading: true }, () => {
                                                    setTimeout(() => {
Deni Rinaldi's avatar
Deni Rinaldi committed
2888
                                                        this.setState({ loading: false, buttonError: this.state.errorPreview === true ? true : false, editable: false })
2889 2890 2891 2892 2893 2894 2895 2896 2897
                                                    }, 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
2898
                                            className="button"
2899 2900
                                            type="button"
                                            disabled={this.state.buttonError}
faisalhamdi's avatar
faisalhamdi committed
2901 2902
                                            style={{
                                                backgroundColor: 'transparent',
faisalhamdi's avatar
faisalhamdi committed
2903
                                                cursor: this.state.editable === true ? 'default' : 'pointer',
faisalhamdi's avatar
faisalhamdi committed
2904 2905 2906 2907
                                                borderColor: 'transparent',
                                                outline: 'none',
                                                marginRight: 20
                                            }}
faisalhamdi's avatar
faisalhamdi committed
2908
                                            onClick={() => this.state.editable === true ?
Deni Rinaldi's avatar
Deni Rinaldi committed
2909
                                                null : this.setState({ loading: true }, () =>
2910 2911
                                                    this.state.handleDoubleClick == 1 ? null :
                                                        this.setState({ handleDoubleClick: 1 }, () => {
Deni Rinaldi's avatar
Deni Rinaldi committed
2912 2913 2914 2915
                                                            setTimeout(() => {
                                                                this.uploadFAM('draft')
                                                            }, 100);
                                                        }))}
2916 2917 2918 2919 2920 2921 2922
                                        >
                                            <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
2923 2924 2925 2926 2927 2928
                                            style={{
                                                backgroundColor: 'transparent',
                                                cursor: this.state.editable !== true ? 'pointer' : 'default',
                                                borderColor: 'transparent',
                                                outline: 'none'
                                            }}
Deni Rinaldi's avatar
Deni Rinaldi committed
2929
                                            onClick={() =>
faisalhamdi's avatar
faisalhamdi committed
2930
                                                this.state.editable === true ?
Deni Rinaldi's avatar
Deni Rinaldi committed
2931
                                                    null : this.setState({ loading: true }, () =>
2932 2933
                                                        this.state.handleDoubleClick == 1 ? null :
                                                            this.setState({ handleDoubleClick: 1 }, () => {
Deni Rinaldi's avatar
Deni Rinaldi committed
2934 2935 2936 2937
                                                                setTimeout(() => {
                                                                    this.uploadFAM('submitted')
                                                                }, 100);
                                                            })
EKSAD's avatar
EKSAD committed
2938
                                                    )
faisalhamdi's avatar
faisalhamdi committed
2939
                                            }
2940 2941 2942 2943 2944 2945
                                        >
                                            <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
2946
                                </div>
faisalhamdi's avatar
faisalhamdi committed
2947
                            </div>
faisalhamdi's avatar
faisalhamdi committed
2948 2949
                        </Paper>}
                </div>
faisalhamdi's avatar
faisalhamdi committed
2950

faisalhamdi's avatar
faisalhamdi committed
2951 2952 2953 2954 2955 2956 2957
                {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
2958
                                    </div>
faisalhamdi's avatar
faisalhamdi committed
2959
                                </div>
faisalhamdi's avatar
faisalhamdi committed
2960 2961 2962 2963 2964 2965 2966 2967
                                <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
2968 2969
                                </div>
                            </div>
faisalhamdi's avatar
faisalhamdi committed
2970 2971 2972 2973 2974 2975 2976 2977 2978 2979
                            <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
2980
                                    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
2981 2982 2983 2984
                                        this.checkUpload() :
                                        this.setState({ alert: true, messageAlert: "Invalid Template", tipeAlert: 'warning' })
                                }}
                            />
faisalhamdi's avatar
faisalhamdi committed
2985
                        </div>
faisalhamdi's avatar
faisalhamdi committed
2986 2987
                    </div>
                )}
faisalhamdi's avatar
faisalhamdi committed
2988 2989 2990 2991
            </div>
        );
    }
}