ListOfCreditFacilitiesMR.js 292 KB
Newer Older
Deni Rinaldi's avatar
Deni Rinaldi committed
1
import React, { Component } from 'react';
d.arizona's avatar
d.arizona committed
2
import { createMuiTheme, FormControlLabel, MuiThemeProvider, Paper, TableCell, Tooltip, Typography, withStyles, Input, ThemeProvider, TextareaAutosize } from '@material-ui/core'
Deni Rinaldi's avatar
Deni Rinaldi committed
3 4 5
import MUIDataTable from 'mui-datatables';
import Images from '../../assets/Images';
import api from '../../api';
faisalhamdi's avatar
faisalhamdi committed
6
import NumberFormat from 'react-number-format';
d.arizona's avatar
d.arizona committed
7 8 9 10 11 12 13 14
import Constant from '../../library/Constant';
import { titleCase } from '../../library/Utils';
import { Autocomplete } from '@material-ui/lab';
import { PropagateLoader } from 'react-spinners';
import ReactTooltip from 'react-tooltip';
import { DatePicker } from '@material-ui/pickers';
import { format } from 'date-fns';
import { BorderStyle } from '@material-ui/icons';
d.arizona's avatar
d.arizona committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
import { includes } from 'ramda';
import Snackbar from '@material-ui/core/Snackbar';
import MuiAlert from '@material-ui/lab/Alert';
import { makeStyles } from '@material-ui/core/styles';
import UploadFile from "../../library/Upload";
import { ExcelRenderer } from 'react-excel-renderer';

function Alert(props) {
  return <MuiAlert elevation={6} variant="filled" {...props} />;
}

const useStyles = makeStyles((theme) => ({
  root: {
    width: '100%',
    '& > * + *': {
      marginTop: theme.spacing(2),
    },
  },
}));
Deni Rinaldi's avatar
Deni Rinaldi committed
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

const LightTooltip = withStyles((theme) => ({
    tooltip: {
        backgroundColor: theme.palette.common.white,
        color: 'rgba(0, 0, 0, 0.87)',
        boxShadow: theme.shadows[1],
        fontSize: 11,
    },
}))(Tooltip);
var ct = require("../../library/CustomTable");
const getMuiTheme = () => createMuiTheme(ct.customTable3());
const options = ct.customOptionsFixedColumn();

const style = {
    position: "sticky",
    left: 0,
    background: "white",
    zIndex: 101,
};

const style2 = {
    position: "sticky",
    background: "white",
    zIndex: 100,
    top: 0
};
Deni Rinaldi's avatar
Deni Rinaldi committed
60

d.arizona's avatar
d.arizona committed
61 62 63 64 65 66 67 68 69 70 71 72 73
const theme = createMuiTheme({
    overrides: {
        // Style sheet name ⚛️
        MuiInputBase: {
            input: {
                color: '#5198ea',
                marginTop: -10,
                textAlign: 'center'
            }
        }
    },
});

d.arizona's avatar
d.arizona committed
74 75 76 77 78 79 80 81 82 83 84 85
const theme2 = createMuiTheme({
    overrides: {
        // Style sheet name ⚛️
        MuiInputBase: {
            input: {
                color: '#5198ea',
                textAlign: 'center'
            }
        }
    },
});

d.arizona's avatar
d.arizona committed
86 87 88 89 90 91 92 93 94 95 96 97
const theme3 = createMuiTheme({
    overrides: {
        // Style sheet name ⚛️
        MuiInputBase: {
            input: {
                color: '#black',
                textAlign: 'center'
            }
        }
    },
});

Deni Rinaldi's avatar
Deni Rinaldi committed
98
export default class ListOfCreditFacilities extends Component {
Deni Rinaldi's avatar
Deni Rinaldi committed
99 100 101 102
    constructor(props) {
        super(props)
        this.state = {
            dataTable: [],
d.arizona's avatar
d.arizona committed
103 104 105 106
            bankNameList: [],
            typeOfCreditList: [],
            loading: false,
            dataTableRatio: [],
d.arizona's avatar
d.arizona committed
107
            currentDate: format(new Date(), 'yyyy-MM-dd'),
d.arizona's avatar
d.arizona committed
108
            totalOutStand: 0,
d.arizona's avatar
d.arizona committed
109 110 111 112
            diff: 0,
            perBS: 0,
            snekbar: false,
            snekbarMsg: '',
d.arizona's avatar
d.arizona committed
113 114
            visibleLOCFMR: true,
            saveDraft: true,
d.arizona's avatar
d.arizona committed
115
            saveComp: true,
d.arizona's avatar
d.arizona committed
116
            get_for: 'view',
faisalhamdi's avatar
faisalhamdi committed
117
            updateBy: [],
d.arizona's avatar
d.arizona committed
118
            notes: "",
d.arizona's avatar
d.arizona committed
119
            viewOnly: true,
d.arizona's avatar
d.arizona committed
120 121
            dataDelete: [],
            saveTambahan: true
Deni Rinaldi's avatar
Deni Rinaldi committed
122
        }
d.arizona's avatar
d.arizona committed
123
        this.fileHandler = this.fileHandler.bind(this);
Deni Rinaldi's avatar
Deni Rinaldi committed
124
    }
Deni Rinaldi's avatar
Deni Rinaldi committed
125

Deni Rinaldi's avatar
Deni Rinaldi committed
126
    componentDidMount() {
d.arizona's avatar
d.arizona committed
127
        this.getPerBS()
d.arizona's avatar
d.arizona committed
128 129 130
        this.getBankData()
        this.getTypeOfCredit()
        this.getSubmission()
d.arizona's avatar
d.arizona committed
131
        this.getLatestUpdate()
d.arizona's avatar
d.arizona committed
132
        this.handleViewOnly()
Deni Rinaldi's avatar
Deni Rinaldi committed
133 134
    }

d.arizona's avatar
d.arizona committed
135 136
    handleGetFor(type) {
        this.setState({get_for: type}, () => {
d.arizona's avatar
d.arizona committed
137
            this.getPerBS()
d.arizona's avatar
d.arizona committed
138 139 140
            this.getBankData()
            this.getTypeOfCredit()
            this.getSubmission()
d.arizona's avatar
d.arizona committed
141
            this.getLatestUpdate()
d.arizona's avatar
d.arizona committed
142 143 144
        })
    }

d.arizona's avatar
d.arizona committed
145 146 147 148
    handleViewOnly() {
        let checkApprover = false
        let checkLastStatus = false
        let checkStatus = false
d.arizona's avatar
d.arizona committed
149
        let checkPrevRev = false
d.arizona's avatar
d.arizona committed
150 151 152 153 154 155 156 157 158 159 160 161

        if (this.props.isApprover) {
            checkApprover = true
        } else {
            checkApprover = false
        }
        
        if (this.props.lastStatus == 'SUBMIT' || this.props.lastStatus == 'REVISION') {
            checkLastStatus = true
        } else {
            checkLastStatus = false
        } 
d.arizona's avatar
d.arizona committed
162 163 164 165 166 167
        
        if (this.props.prevRevision) {
            checkPrevRev = true
        } else {
            checkPrevRev = false
        }
d.arizona's avatar
d.arizona committed
168 169 170 171 172 173 174
        
        if (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') {
            checkStatus = true
        } else {
            checkStatus = false
        }

d.arizona's avatar
d.arizona committed
175
        this.setState({viewOnly: !checkApprover && checkLastStatus && checkStatus && checkPrevRev})
d.arizona's avatar
d.arizona committed
176
        // this.setState({viewOnly: true})
d.arizona's avatar
d.arizona committed
177 178
    }

Deni Rinaldi's avatar
Deni Rinaldi committed
179 180
    getItemHierarki() {
        let payload = {
Deni Rinaldi's avatar
Deni Rinaldi committed
181
            "report_id": this.props.report_id,
Deni Rinaldi's avatar
Deni Rinaldi committed
182 183 184 185
            "revision": Number(this.props.revision),
            "periode": this.props.periode,
            "company_id": this.props.company.company_id,
            "monthly_report_id": this.props.monthlyReportId,
d.arizona's avatar
d.arizona committed
186 187
            "months": this.props.month.month_id,
            "get_for": this.state.get_for
Deni Rinaldi's avatar
Deni Rinaldi committed
188
        }
Deni Rinaldi's avatar
Deni Rinaldi committed
189
        api.create().getHierarkiMontlyReportLOCF(payload).then(response => {
faisalhamdi's avatar
faisalhamdi committed
190
            console.log(payload);
Deni Rinaldi's avatar
Deni Rinaldi committed
191 192
            console.log(response);
            let dataTable = []
faisalhamdi's avatar
faisalhamdi committed
193 194
            if (response.data) {
                let res = response.data.data
d.arizona's avatar
d.arizona committed
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
                // 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.locf.borrower_comp_name === null ? "0.0" : item.locf.borrower_comp_name === "" ? "0.0" : item.locf.borrower_comp_name,
                //             item.locf.bank_name === null ? "0.0" : item.locf.bank_name === "" ? "0.0" : item.locf.bank_name,
                //             item.locf.type_of_credit === null ? "0.0" : item.locf.type_of_credit === "" ? "0.0" : item.locf.type_of_credit,
                //             item.locf.remarks === null ? "0.0" : item.locf.remarks === "" ? "0.0" : item.locf.remarks,
                //             item.locf.loan_maturity_date === null ? "0.0" : item.locf.loan_maturity_date === "" ? "0.0" : item.locf.loan_maturity_date,
                //             item.locf.interest === null ? "0.0" : item.locf.interest === "" ? "0.0" : item.locf.interest,
                //             item.locf.currency === null ? "0.0" : item.locf.currency === "" ? "0.0" : item.locf.currency,
                //             item.locf.loan_plafond_amount_ori === null ? "0.0" : item.locf.loan_plafond_amount_ori === "" ? "0.0" : item.locf.loan_plafond_amount_ori,
                //             item.locf.loan_plafond_amount_idr === null ? "0.0" : item.locf.loan_plafond_amount_idr === "" ? "0.0" : item.locf.loan_plafond_amount_idr,
                //             item.locf.out_loan_ki_amount_ori === null ? "0.0" : item.locf.out_loan_ki_amount_ori === "" ? "0.0" : item.locf.out_loan_ki_amount_ori,
                //             item.locf.out_loan_ki_amount_idr === null ? "0.0" : item.locf.out_loan_ki_amount_idr === "" ? "0.0" : item.locf.out_loan_ki_amount_idr,
                //             item.locf.out_loan_kmk_amount_ori === null ? "0.0" : item.locf.out_loan_kmk_amount_ori === "" ? "0.0" : item.locf.out_loan_kmk_amount_ori,
                //             item.locf.out_loan_kmk_amount_idr === null ? "0.0" : item.locf.out_loan_kmk_amount_idr === "" ? "0.0" : item.locf.out_loan_kmk_amount_idr,
                //             // item.locf.mtd_vs_previous_month === null ? "0.0" : item.locf.mtd_vs_previous_month === "" ? "0.0" : item.locf.mtd_vs_previous_month,
                //             item.locf.out_loan_other_type === null ? "0.0" : item.locf.out_loan_other_type === "" ? "0.0" : item.locf.out_loan_other_type,
                //             item.locf.out_loan_other_amount_ori === null ? "0.0" : item.locf.out_loan_other_amount_ori === "" ? "0.0" : item.locf.out_loan_other_amount_ori,
                //             item.locf.out_loan_other_amount_idr === null ? "0.0" : item.locf.out_loan_other_amount_idr === "" ? "0.0" : item.locf.out_loan_other_amount_idr,
                //             item.locf.total_out_loan_ori === null ? "0.0" : item.locf.total_out_loan_ori === "" ? "0.0" : item.locf.total_out_loan_ori,
                //             item.locf.total_out_loan_idr === null ? "0.0" : item.locf.total_out_loan_idr === "" ? "0.0" : item.locf.total_out_loan_idr,
                //             item.locf.remaining_plafond_ori === null ? "0.0" : item.locf.remaining_plafond_ori === "" ? "0.0" : item.locf.remaining_plafond_ori,
                //             item.locf.remaining_plafond_idr === null ? "0.0" : item.locf.remaining_plafond_idr === "" ? "0.0" : item.locf.remaining_plafond_idr,
                //             item.locf.current_ratio_financial === null ? "0.0" : item.locf.current_ratio_financial === "" ? "0.0" : item.locf.current_ratio_financial,
                //             item.locf.current_ratio_current === null ? "0.0" : item.locf.current_ratio_current === "" ? "0.0" : item.locf.current_ratio_current,
                //             item.locf.der_financial === null ? "0.0" : item.locf.der_financial === "" ? "0.0" : item.locf.der_financial,
                //             item.locf.der_current === null ? "0.0" : item.locf.der_current === "" ? "0.0" : item.locf.der_current,
                //             item.locf.debt_to_ebitda_financial === null ? "0.0" : item.locf.debt_to_ebitda_financial === "" ? "0.0" : item.locf.debt_to_ebitda_financial,
                //             item.locf.debt_to_ebitda_current === null ? "0.0" : item.locf.debt_to_ebitda_current === "" ? "0.0" : item.locf.debt_to_ebitda_current,
                //             item.locf.ebitda_to_interest_financial === null ? "0.0" : item.locf.ebitda_to_interest_financial === "" ? "0.0" : item.locf.ebitda_to_interest_financial,
                //             item.locf.ebitda_to_interest_current === null ? "0.0" : item.locf.ebitda_to_interest_current === "" ? "0.0" : item.locf.ebitda_to_interest_current,
                //             item.locf.other_ratio1_ratio_name === null ? "0.0" : item.locf.other_ratio1_ratio_name === "" ? "0.0" : item.locf.other_ratio1_ratio_name,
                //             item.locf.other_ratio1_financial === null ? "0.0" : item.locf.other_ratio1_financial === "" ? "0.0" : item.locf.other_ratio1_financial,
                //             item.locf.other_ratio1_current === null ? "0.0" : item.locf.other_ratio1_current === "" ? "0.0" : item.locf.other_ratio1_current,
                //             item.locf.other_ratio2_ratio_name === null ? "0.0" : item.locf.other_ratio2_ratio_name === "" ? "0.0" : item.locf.other_ratio2_ratio_name,
                //             item.locf.other_ratio2_financial === null ? "0.0" : item.locf.other_ratio2_financial === "" ? "0.0" : item.locf.other_ratio2_financial,
                //             item.locf.other_ratio2_current === null ? "0.0" : item.locf.other_ratio2_current === "" ? "0.0" : item.locf.other_ratio2_current,
                //             item.locf.other_ratio3_ratio_name === null ? "0.0" : item.locf.other_ratio3_ratio_name === "" ? "0.0" : item.locf.other_ratio3_ratio_name,
                //             item.locf.other_ratio3_financial === null ? "0.0" : item.locf.other_ratio3_financial === "" ? "0.0" : item.locf.other_ratio3_financial,
                //             item.locf.other_ratio3_current === null ? "0.0" : item.locf.other_ratio3_current === "" ? "0.0" : item.locf.other_ratio3_current,
                //             item.locf.other_ratio4_ratio_name === null ? "0.0" : item.locf.other_ratio4_ratio_name === "" ? "0.0" : item.locf.other_ratio4_ratio_name,
                //             item.locf.other_ratio4_financial === null ? "0.0" : item.locf.other_ratio4_financial === "" ? "0.0" : item.locf.other_ratio4_financial,
                //             item.locf.other_ratio4_current === null ? "0.0" : item.locf.other_ratio4_current === "" ? "0.0" : item.locf.other_ratio4_current,
                //             item.notes,
                //             // item.locf.per_bs === null ? "0.0" : item.locf.per_bs === "" ? "0.0" : item.locf.per_bs,
                //             // item.locf.diff === null ? "0.0" : item.locf.diff === "" ? "0.0" : item.locf.diff,
                //         ])
                //     }
                //     if (item.children !== null) {
                //         if (item.children.length > 0) {
                //             item.children.map((items, indexs) => {
                //                 handlePushChild(items)
                //             })
                //         }
                //     }
                // }
faisalhamdi's avatar
faisalhamdi committed
259
                res.map((item, index) => {
d.arizona's avatar
d.arizona committed
260
                    let tgl = String(item.locf.loan_maturity_date).split('-')
d.arizona's avatar
d.arizona committed
261 262 263 264 265 266 267
                    if (index == res.length -1) {
                        dataTable.push([
                            item.type_report_id,
                            item.id,
                            item.parent,
                            item.formula,
                            item.level,
d.arizona's avatar
d.arizona committed
268
                            // item.description,
d.arizona's avatar
d.arizona committed
269
                            item.locf.borrower_comp_name === null || item.locf.borrower_comp_name === "" ? this.props.company.company_name : item.locf.borrower_comp_name,
d.arizona's avatar
d.arizona committed
270 271
                            item.locf.bank_name === null ? null : item.locf.bank_name === "" ? null : {value: item.locf.bank_name},
                            item.locf.type_of_credit === null ? null : item.locf.type_of_credit === "" ? null : {value: item.locf.type_of_credit},
d.arizona's avatar
d.arizona committed
272
                            item.locf.remarks === null || item.locf.remarks === "" ? "" : item.locf.remarks,
d.arizona's avatar
d.arizona committed
273
                            item.locf.loan_maturity_date == null || item.locf.loan_maturity_date == "" ? null : (item.locf.loan_maturity_date !== "null"? String(tgl[2]).length > 2? tgl[2] + '-' + tgl[1] + '-' + tgl[0] : String(item.locf.loan_maturity_date) : null),
d.arizona's avatar
d.arizona committed
274 275
                            item.locf.interest === null || item.locf.interest === "" ? "0.00" : item.locf.interest,
                            item.locf.currency === null || item.locf.currency === "" ? "" : item.locf.currency,
d.arizona's avatar
d.arizona committed
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
                            item.locf.loan_plafond_amount_ori,
                            item.locf.loan_plafond_amount_idr === null ? "0.0" : item.locf.loan_plafond_amount_idr === "" ? "0.0" : item.locf.loan_plafond_amount_idr,
                            item.locf.out_loan_ki_amount_ori,
                            item.locf.out_loan_ki_amount_idr === null ? "0.0" : item.locf.out_loan_ki_amount_idr === "" ? "0.0" : item.locf.out_loan_ki_amount_idr,
                            item.locf.out_loan_kmk_amount_ori,
                            item.locf.out_loan_kmk_amount_idr === null ? "0.0" : item.locf.out_loan_kmk_amount_idr === "" ? "0.0" : item.locf.out_loan_kmk_amount_idr,
                            // item.locf.mtd_vs_previous_month === null ? "0.0" : item.locf.mtd_vs_previous_month === "" ? "0.0" : item.locf.mtd_vs_previous_month,
                            item.locf.out_loan_other_type,
                            item.locf.out_loan_other_amount_ori,
                            item.locf.out_loan_other_amount_idr === null ? "0.0" : item.locf.out_loan_other_amount_idr === "" ? "0.0" : item.locf.out_loan_other_amount_idr,
                            item.locf.total_out_loan_ori === null ? "0.0" : item.locf.total_out_loan_ori === "" ? "0.0" : item.locf.total_out_loan_ori,
                            item.locf.total_out_loan_idr === null ? "0.0" : item.locf.total_out_loan_idr === "" ? "0.0" : item.locf.total_out_loan_idr,
                            item.locf.remaining_plafond_ori === null ? "0.0" : item.locf.remaining_plafond_ori === "" ? "0.0" : item.locf.remaining_plafond_ori,
                            item.locf.remaining_plafond_idr === null ? "0.0" : item.locf.remaining_plafond_idr === "" ? "0.0" : item.locf.remaining_plafond_idr,
                            item.locf.current_ratio_financial,
                            item.locf.current_ratio_current === null ? "0.0" : item.locf.current_ratio_current === "" ? "0.0" : item.locf.current_ratio_current,
                            item.locf.der_financial,
                            item.locf.der_current === null ? "0.0" : item.locf.der_current === "" ? "0.0" : item.locf.der_current,
                            item.locf.debt_to_ebitda_financial,
                            item.locf.debt_to_ebitda_current === null ? "0.0" : item.locf.debt_to_ebitda_current === "" ? "0.0" : item.locf.debt_to_ebitda_current,
                            item.locf.ebitda_to_interest_financial,
                            item.locf.ebitda_to_interest_current === null ? "0.0" : item.locf.ebitda_to_interest_current === "" ? "0.0" : item.locf.ebitda_to_interest_current,
                            item.locf.other_ratio1_ratio_name,
                            item.locf.other_ratio1_financial,
                            item.locf.other_ratio1_current === null ? "0.0" : item.locf.other_ratio1_current === "" ? "0.0" : item.locf.other_ratio1_current,
                            item.locf.other_ratio2_ratio_name,
                            item.locf.other_ratio2_financial,
                            item.locf.other_ratio2_current === null ? "0.0" : item.locf.other_ratio2_current === "" ? "0.0" : item.locf.other_ratio2_current,
                            item.locf.other_ratio3_ratio_name,
                            item.locf.other_ratio3_financial,
                            item.locf.other_ratio3_current === null ? "0.0" : item.locf.other_ratio3_current === "" ? "0.0" : item.locf.other_ratio3_current,
                            item.locf.other_ratio4_ratio_name,
d.arizona's avatar
d.arizona committed
308
                            item.locf.other_ratio4_financial,
d.arizona's avatar
d.arizona committed
309
                            item.locf.other_ratio4_current === null ? "0.0" : item.locf.other_ratio4_current === "" ? "0.0" : item.locf.other_ratio4_current,
d.arizona's avatar
d.arizona committed
310
                            item.locf.notes,
d.arizona's avatar
d.arizona committed
311 312
                            // item.per_bs === null ? "0.0" : item.locf.per_bs === "" ? "0.0" : item.locf.per_bs,
                            // item.diff === null ? "0.0" : item.locf.diff === "" ? "0.0" : item.locf.diff,
d.arizona's avatar
d.arizona committed
313
                            index
d.arizona's avatar
d.arizona committed
314
                        ], 
d.arizona's avatar
d.arizona committed
315
                        [9, "", "", "", "", "", {value: "Grand Total"}, null, "", "", "", "0",  "", "0", "", "0", "", "0", "", "", "0", "0", "0", "0", "0", "", "0", "", "0", "", "0", "", "0", "", "", "", "", "", "", "", "", "", "", "", "", "notes", 999999 ],
d.arizona's avatar
d.arizona committed
316 317 318 319 320 321 322 323
                        )
                    } else {
                        dataTable.push([
                            item.type_report_id,
                            item.id,
                            item.parent,
                            item.formula,
                            item.level,
d.arizona's avatar
d.arizona committed
324
                            // item.description,
d.arizona's avatar
d.arizona committed
325
                            item.locf.borrower_comp_name === null || item.locf.borrower_comp_name === "" ? this.props.company.company_name : item.locf.borrower_comp_name,
d.arizona's avatar
d.arizona committed
326 327
                            item.locf.bank_name === null ? null : item.locf.bank_name === "" ? null : {value: item.locf.bank_name},
                            item.locf.type_of_credit === null ? null : item.locf.type_of_credit === "" ? null : {value: item.locf.type_of_credit},
d.arizona's avatar
d.arizona committed
328
                            item.locf.remarks === null || item.locf.remarks === "" ? "" : item.locf.remarks,
d.arizona's avatar
d.arizona committed
329
                            item.locf.loan_maturity_date == null || item.locf.loan_maturity_date == "" ? null : (item.locf.loan_maturity_date !== "null"? String(tgl[2]).length > 2? tgl[2] + '-' + tgl[1] + '-' + tgl[0] : String(item.locf.loan_maturity_date) : null),
d.arizona's avatar
d.arizona committed
330 331
                            item.locf.interest === null || item.locf.interest === "" ? "0.00" : item.locf.interest,
                            item.locf.currency === null || item.locf.currency === "" ? "" : item.locf.currency,
d.arizona's avatar
d.arizona committed
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
                            item.locf.loan_plafond_amount_ori,
                            item.locf.loan_plafond_amount_idr === null ? "0.0" : item.locf.loan_plafond_amount_idr === "" ? "0.0" : item.locf.loan_plafond_amount_idr,
                            item.locf.out_loan_ki_amount_ori,
                            item.locf.out_loan_ki_amount_idr === null ? "0.0" : item.locf.out_loan_ki_amount_idr === "" ? "0.0" : item.locf.out_loan_ki_amount_idr,
                            item.locf.out_loan_kmk_amount_ori,
                            item.locf.out_loan_kmk_amount_idr === null ? "0.0" : item.locf.out_loan_kmk_amount_idr === "" ? "0.0" : item.locf.out_loan_kmk_amount_idr,
                            // item.locf.mtd_vs_previous_month === null ? "0.0" : item.locf.mtd_vs_previous_month === "" ? "0.0" : item.locf.mtd_vs_previous_month,
                            item.locf.out_loan_other_type,
                            item.locf.out_loan_other_amount_ori,
                            item.locf.out_loan_other_amount_idr === null ? "0.0" : item.locf.out_loan_other_amount_idr === "" ? "0.0" : item.locf.out_loan_other_amount_idr,
                            item.locf.total_out_loan_ori === null ? "0.0" : item.locf.total_out_loan_ori === "" ? "0.0" : item.locf.total_out_loan_ori,
                            item.locf.total_out_loan_idr === null ? "0.0" : item.locf.total_out_loan_idr === "" ? "0.0" : item.locf.total_out_loan_idr,
                            item.locf.remaining_plafond_ori === null ? "0.0" : item.locf.remaining_plafond_ori === "" ? "0.0" : item.locf.remaining_plafond_ori,
                            item.locf.remaining_plafond_idr === null ? "0.0" : item.locf.remaining_plafond_idr === "" ? "0.0" : item.locf.remaining_plafond_idr,
                            item.locf.current_ratio_financial,
                            item.locf.current_ratio_current === null ? "0.0" : item.locf.current_ratio_current === "" ? "0.0" : item.locf.current_ratio_current,
                            item.locf.der_financial,
                            item.locf.der_current === null ? "0.0" : item.locf.der_current === "" ? "0.0" : item.locf.der_current,
                            item.locf.debt_to_ebitda_financial,
                            item.locf.debt_to_ebitda_current === null ? "0.0" : item.locf.debt_to_ebitda_current === "" ? "0.0" : item.locf.debt_to_ebitda_current,
                            item.locf.ebitda_to_interest_financial,
                            item.locf.ebitda_to_interest_current === null ? "0.0" : item.locf.ebitda_to_interest_current === "" ? "0.0" : item.locf.ebitda_to_interest_current,
                            item.locf.other_ratio1_ratio_name,
                            item.locf.other_ratio1_financial,
                            item.locf.other_ratio1_current === null ? "0.0" : item.locf.other_ratio1_current === "" ? "0.0" : item.locf.other_ratio1_current,
                            item.locf.other_ratio2_ratio_name,
                            item.locf.other_ratio2_financial,
                            item.locf.other_ratio2_current === null ? "0.0" : item.locf.other_ratio2_current === "" ? "0.0" : item.locf.other_ratio2_current,
                            item.locf.other_ratio3_ratio_name,
                            item.locf.other_ratio3_financial,
                            item.locf.other_ratio3_current === null ? "0.0" : item.locf.other_ratio3_current === "" ? "0.0" : item.locf.other_ratio3_current,
                            item.locf.other_ratio4_ratio_name,
d.arizona's avatar
d.arizona committed
364
                            item.locf.other_ratio4_financial,
d.arizona's avatar
d.arizona committed
365
                            item.locf.other_ratio4_current === null ? "0.0" : item.locf.other_ratio4_current === "" ? "0.0" : item.locf.other_ratio4_current,
d.arizona's avatar
d.arizona committed
366 367
                            item.locf.notes,
                            index
d.arizona's avatar
d.arizona committed
368 369 370 371 372
                            // item.per_bs === null ? "0.0" : item.locf.per_bs === "" ? "0.0" : item.locf.per_bs,
                            // item.diff === null ? "0.0" : item.locf.diff === "" ? "0.0" : item.locf.diff,
                        ])
                    }
                    
d.arizona's avatar
d.arizona committed
373 374 375 376 377 378 379
                    // if (item.children !== null) {
                    //     if (item.children.length > 0) {
                    //         item.children.map((items, indexs) => {
                    //             handlePushChild(items)
                    //         })
                    //     }
                    // }
faisalhamdi's avatar
faisalhamdi committed
380
                })
d.arizona's avatar
d.arizona committed
381
                // console.log(dataTable);
d.arizona's avatar
d.arizona committed
382
                if (dataTable.length == 0 && this.state.get_for == 'edit') {
d.arizona's avatar
d.arizona committed
383
                    dataTable.push(
d.arizona's avatar
d.arizona committed
384
                        [3, "", "", "", "", this.props.company.company_name, null, null, "", null, "0.00", "",  "", "0", "", "0", "", "0", "", "", "0", "0", "0", "0", "0", "", "0", "", "0", "", "0", "", "0", "", "", "", "", "", "", "", "", "", "", "", "", "", 0 ],
385
                        [9, "", "", "", "", "", {value: "Grand Total"}, null, "", "", "", "0",  "", "0", "", "0", "", "0", "", "", "0", "0", "0", "0", "0", "", "0", "", "0", "", "0", "", "0", "", "", "", "", "", "", "", "", "", "", "", "", "notes", 999999 ],
d.arizona's avatar
d.arizona committed
386 387
                    )
                }
d.arizona's avatar
d.arizona committed
388
                console.log(dataTable)
d.arizona's avatar
d.arizona committed
389
                this.setState({ dataTable, loading: false, visibleLOCFMR: true }, () => {
d.arizona's avatar
d.arizona committed
390 391 392 393 394 395
                    this.handleCalculate()
                })
            }
        })
    }

d.arizona's avatar
d.arizona committed
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
    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,
            "monthly_report_id": this.props.monthlyReportId,
            "months": this.props.month.month_id
        }
        // console.log(payload)
        api.create().getLastestUpdateMR(payload).then(response => {
            console.log(JSON.stringify(response))
            if (response.data) {
                if (response.data.status === "success") {
                    this.setState({
faisalhamdi's avatar
faisalhamdi committed
411
                        updateBy: response.data.data.detail === null ? [] : response.data.data.detail,
d.arizona's avatar
d.arizona committed
412 413 414 415
                        notes: response.data.data.notes_update === null ? "" : response.data.data.notes_update
                    })
                } else {
                    this.setState({ alert: true, messageAlert: response.data.message, typeAlert: 'warning', loading: false }, () => {
d.arizona's avatar
d.arizona committed
416
                        if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
d.arizona's avatar
d.arizona committed
417 418 419 420 421 422 423 424 425 426 427 428 429 430
                            setTimeout(() => {
                                localStorage.removeItem(Constant.TOKEN)
                                window.location.reload();
                            }, 1000);
                        }
                    })
                }
            } else {
                // console.log('brrrrrrrr')
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error', loading: false })
            }
        })
    }

d.arizona's avatar
d.arizona committed
431 432 433 434 435 436 437 438 439 440 441 442 443 444
    fileHandler = (event) => {
        let fileObj = event
        ExcelRenderer(fileObj, (err, resp) => {
            // console.log(resp)
            if (err) {
                console.log(err);
            }
            else {
                let isi = resp.rows.slice(3)
                console.log(isi);
                let payload = []
                let reg = /^[-+]?(?:[0-9]+,)*[0-9]+(?:\.[0-9]+)?$/;
                isi.map((i, index) => {
                    if (i.length > 0) {
d.arizona's avatar
d.arizona committed
445
                        let tgl = String(i[5]).split('-')
d.arizona's avatar
d.arizona committed
446 447
                        console.log(i[5])
                        console.log(tgl)
d.arizona's avatar
d.arizona committed
448 449 450
                        payload.push({
                            "item_report_id": i[1],
                            "borrower_comp_name": this.props.company.company_name,
d.arizona's avatar
d.arizona committed
451 452 453
                            "bank_name": i[2],
                            "type_of_credit": i[3],
                            "remarks": i[4],
d.arizona's avatar
d.arizona committed
454
                            "loan_maturity_date":  i[5] !== undefined? tgl[2] + '-' + tgl[1] + '-' + tgl[0] : null,
d.arizona's avatar
d.arizona committed
455 456 457 458 459 460 461 462 463 464 465
                            "interest": i[6],
                            "currency": i[7],
                            "loan_plafond_amount_ori": i[8],
                            "loan_plafond_amount_idr": i[9],
                            "out_loan_ki_amount_ori": i[10],
                            "out_loan_ki_amount_idr": i[11],
                            "out_loan_kmk_amount_ori": i[12],
                            "out_loan_kmk_amount_idr": i[13],
                            "out_loan_other_type": i[14],
                            "out_loan_other_amount_ori": i[15],
                            "out_loan_other_amount_idr": i[16],
d.arizona's avatar
d.arizona committed
466 467 468 469
                            // "total_out_loan_ori": i[18],
                            // "total_out_loan_idr": i[19],
                            // "remaining_plafond_ori": i[20],
                            // "remaining_plafond_idr": i[21],
d.arizona's avatar
d.arizona committed
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
                            "current_ratio_financial": i[17],
                            "der_financial": i[18],
                            "debt_to_ebitda_financial": i[19],
                            "ebitda_to_interest_financial": i[20],
                            "other_ratio1_ratio_name": i[21],
                            "other_ratio1_financial": i[22],
                            "other_ratio1_current": i[23],
                            "other_ratio2_ratio_name": i[24],
                            "other_ratio2_financial": i[25],
                            "other_ratio2_current": i[26],
                            "other_ratio3_ratio_name": i[27],
                            "other_ratio3_financial": i[28],
                            "other_ratio3_current": i[29],
                            "other_ratio4_ratio_name": i[30],
                            "other_ratio4_financial": i[31],
                            "other_ratio4_current": i[32],
                            "notes": i[33],
d.arizona's avatar
d.arizona committed
487 488 489 490 491 492 493 494
                        })
                    }
                })
                let body = {
                    "monthly_report_id": this.props.monthlyReportId,
                    "company_id": this.props.company.company_id,
                    "periode": this.props.periode,
                    "report_id": this.props.report_id,
d.arizona's avatar
d.arizona committed
495
                    "status": 'submitted',
d.arizona's avatar
d.arizona committed
496 497 498 499
                    "months": this.props.month.month_id,
                    "locf": payload,
                    "per_bs": this.state.perBS,
                    "diff": this.state.diff,
d.arizona's avatar
d.arizona committed
500
                    "total_loan" : this.state.perBS
d.arizona's avatar
d.arizona committed
501 502
                }
                console.log(body)
d.arizona's avatar
d.arizona committed
503
                this.setState({ payload: body, judul: resp.rows[1][0], judulColumn: resp.rows[0][0] })
d.arizona's avatar
d.arizona committed
504 505 506 507
            }
        });
    }

d.arizona's avatar
d.arizona committed
508 509 510 511 512 513 514 515 516 517
    deleteReport() {
        let payload = { "item_report_id": this.state.dataDelete, "periode": this.props.periode, "months": this.props.month.month_id}

        if (this.state.dataDelete.length > 0) {
            api.create().deleteAllItemReportLOCF(payload).then((response) => {
                console.log(response)
            })
        } 
    }

d.arizona's avatar
d.arizona committed
518
    checkUpload() {
d.arizona's avatar
d.arizona committed
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
        let dataDelete = []
        api.create().getIdDeleteFromExcelLOCF(this.state.payload).then((response) => {
            console.log(response)
            // if (response.data) {
            //     // // // // // console.log(response.data)
            //     let idDelete = response.data.data.item_report_id
            //     if (idDelete.length > 0) {
            //         idDelete.map((item, index) => {
            //             dataDelete.push(item)
            //         })
            //         this.setState({ dataDelete })
            //     }
            // }
        })

d.arizona's avatar
d.arizona committed
534
        api.create().checkUploadMonthlyReportLOCF(this.state.payload).then(response => {
d.arizona's avatar
d.arizona committed
535
            console.log(JSON.stringify(this.state.payload));
d.arizona's avatar
d.arizona committed
536 537 538
            console.log(response)
            if (response.data) {
                if (response.data.status === 'success') {
d.arizona's avatar
d.arizona committed
539
                    this.setState({ visibleUpload: false, loading: true, visibleLOCFMR: false, totalOutStand: 0, diff: 0 })
d.arizona's avatar
d.arizona committed
540 541 542 543
                    let dataTable = []
                    response.data.data.map((item, index) => {
                        if (index == response.data.data.length -1) {
                            dataTable.push([
d.arizona's avatar
d.arizona committed
544
                                3,
d.arizona's avatar
d.arizona committed
545 546 547 548
                                item.item_report_id,
                                item.parent,
                                item.formula,
                                item.level,
d.arizona's avatar
d.arizona committed
549
                                item.borrower_comp_name === null ? this.props.company.company_name : item.borrower_comp_name === "" ? this.props.company.company_name : item.borrower_comp_name,
d.arizona's avatar
d.arizona committed
550 551
                                item.bank_name === null ? null : item.bank_name === "" ? null : {value: item.bank_name},
                                item.type_of_credit === null ? null : item.type_of_credit === "" ? null : {value: item.type_of_credit},
d.arizona's avatar
d.arizona committed
552
                                item.remarks === null ? "" : item.remarks === "" ? "" : item.remarks,
d.arizona's avatar
d.arizona committed
553 554 555
                                item.loan_maturity_date === null || item.loan_maturity_date === "" ? null : item.loan_maturity_date,
                                item.interest === null || item.interest === "" ? "0.00" : item.interest,
                                item.currency === null || item.currency === "" ? "" : item.currency,
d.arizona's avatar
d.arizona committed
556
                                item.loan_plafond_amount_ori == null? "" : item.loan_plafond_amount_ori,
d.arizona's avatar
d.arizona committed
557
                                item.loan_plafond_amount_idr === null ? "0.0" : item.loan_plafond_amount_idr === "" ? "0.0" : item.loan_plafond_amount_idr,
d.arizona's avatar
d.arizona committed
558 559 560 561 562 563 564
                                item.type_of_credit == "Investment Loan"? item.out_loan_ki_amount_ori : "0.0",
                                item.type_of_credit == "Investment Loan"? (item.out_loan_ki_amount_idr === null ? "0.0" : item.out_loan_ki_amount_idr === "" ? "0.0" : item.out_loan_ki_amount_idr) : "0.0",
                                item.type_of_credit == "Revolving Loan (KMK)"? item.out_loan_kmk_amount_ori : "0.0",
                                item.type_of_credit == "Revolving Loan (KMK)"? (item.out_loan_kmk_amount_idr === null ? "0.0" : item.out_loan_kmk_amount_idr === "" ? "0.0" : item.out_loan_kmk_amount_idr) : "0.0",
                                item.type_of_credit == "Others"? item.out_loan_other_type : "",
                                item.type_of_credit == "Others"? item.out_loan_other_amount_ori : "0.0",
                                item.type_of_credit == "Others"? (item.out_loan_other_amount_idr === null ? "0.0" : item.out_loan_other_amount_idr === "" ? "0.0" : item.out_loan_other_amount_idr) : "0.0",
d.arizona's avatar
d.arizona committed
565 566 567 568
                                item.total_out_loan_ori === null ? "0.0" : item.total_out_loan_ori === "" ? "0.0" : item.total_out_loan_ori,
                                item.total_out_loan_idr === null ? "0.0" : item.total_out_loan_idr === "" ? "0.0" : item.total_out_loan_idr,
                                item.remaining_plafond_ori === null ? "0.0" : item.remaining_plafond_ori === "" ? "0.0" : item.remaining_plafond_ori,
                                item.remaining_plafond_idr === null ? "0.0" : item.remaining_plafond_idr === "" ? "0.0" : item.remaining_plafond_idr,
d.arizona's avatar
d.arizona committed
569
                                item.current_ratio_financial == null? "" : item.current_ratio_financial,
d.arizona's avatar
d.arizona committed
570
                                item.current_ratio_current === null ? "0.0" : item.current_ratio_current === "" ? "0.0" : item.current_ratio_current,
d.arizona's avatar
d.arizona committed
571
                                item.der_financial == null? "" : item.der_financial,
d.arizona's avatar
d.arizona committed
572
                                item.der_current === null ? "0.0" : item.der_current === "" ? "0.0" : item.der_current,
d.arizona's avatar
d.arizona committed
573
                                item.debt_to_ebitda_financial == null? "" : item.debt_to_ebitda_financial,
d.arizona's avatar
d.arizona committed
574
                                item.debt_to_ebitda_current === null ? "0.0" : item.debt_to_ebitda_current === "" ? "0.0" : item.debt_to_ebitda_current,
d.arizona's avatar
d.arizona committed
575
                                item.ebitda_to_interest_financial == null? "" : item.ebitda_to_interest_financial,
d.arizona's avatar
d.arizona committed
576
                                item.ebitda_to_interest_current === null ? "0.0" : item.ebitda_to_interest_current === "" ? "0.0" : item.ebitda_to_interest_current,
d.arizona's avatar
d.arizona committed
577
                                item.other_ratio1_ratio_name == null? "" : item.other_ratio1_ratio_name,
d.arizona's avatar
d.arizona committed
578
                                item.other_ratio1_financial === null ? "0.0" : item.other_ratio1_financial === "" ? "0.0" : item.other_ratio1_financial,
d.arizona's avatar
d.arizona committed
579
                                item.other_ratio1_current === null ? "0.0" : item.other_ratio1_current === "" ? "0.0" : item.other_ratio1_current,
d.arizona's avatar
d.arizona committed
580
                                item.other_ratio2_ratio_name == null? "" : item.other_ratio2_ratio_name,
d.arizona's avatar
d.arizona committed
581
                                item.other_ratio2_financial === null ? "0.0" : item.other_ratio2_financial === "" ? "0.0" : item.other_ratio2_financial,
d.arizona's avatar
d.arizona committed
582
                                item.other_ratio2_current === null ? "0.0" : item.other_ratio2_current === "" ? "0.0" : item.other_ratio2_current,
d.arizona's avatar
d.arizona committed
583
                                item.other_ratio3_ratio_name == null? "" : item.other_ratio3_ratio_name,
d.arizona's avatar
d.arizona committed
584
                                item.other_ratio3_financial === null ? "0.0" : item.other_ratio3_financial === "" ? "0.0" : item.other_ratio3_financial,
d.arizona's avatar
d.arizona committed
585
                                item.other_ratio3_current === null ? "0.0" : item.other_ratio3_current === "" ? "0.0" : item.other_ratio3_current,
d.arizona's avatar
d.arizona committed
586
                                item.other_ratio4_ratio_name == null? "" : item.other_ratio4_ratio_name,
d.arizona's avatar
d.arizona committed
587
                                item.other_ratio4_financial === null ? "0.0" : item.other_ratio4_financial === "" ? "0.0" : item.other_ratio4_financial,
d.arizona's avatar
d.arizona committed
588 589 590 591 592 593 594
                                item.other_ratio4_current === null ? "0.0" : item.other_ratio4_current === "" ? "0.0" : item.other_ratio4_current,
                                item.notes,
                            ], 
                            [9, "", "", "", "", "", {value: "Grand Total"}, null, "", "", "", "0",  "", "0", "", "0", "", "0", "", "", "0", "0", "0", "0", "0", "", "0", "", "0", "", "0", "", "0", "", "", "", "", "", "", "", "", "", "", "", "", "notes", 999999 ],
                            )
                        } else {
                            dataTable.push([
d.arizona's avatar
d.arizona committed
595
                                3,
d.arizona's avatar
d.arizona committed
596 597 598 599
                                item.item_report_id,
                                item.parent,
                                item.formula,
                                item.level,
d.arizona's avatar
d.arizona committed
600
                                item.borrower_comp_name === null ? this.props.company.company_name : item.borrower_comp_name === "" ? this.props.company.company_name : item.borrower_comp_name,
d.arizona's avatar
d.arizona committed
601 602
                                item.bank_name === null ? null : item.bank_name === "" ? null : {value: item.bank_name},
                                item.type_of_credit === null ? null : item.type_of_credit === "" ? null : {value: item.type_of_credit},
d.arizona's avatar
d.arizona committed
603
                                item.remarks === null ? "" : item.remarks === "" ? "" : item.remarks,
d.arizona's avatar
d.arizona committed
604 605 606
                                item.loan_maturity_date === null || item.loan_maturity_date === "" ? null : item.loan_maturity_date,
                                item.interest === null || item.interest === "" ? "0.00" : item.interest,
                                item.currency === null || item.currency === "" ? "" : item.currency,
d.arizona's avatar
d.arizona committed
607
                                item.loan_plafond_amount_ori == null? "" : item.loan_plafond_amount_ori,
d.arizona's avatar
d.arizona committed
608
                                item.loan_plafond_amount_idr === null ? "0.0" : item.loan_plafond_amount_idr === "" ? "0.0" : item.loan_plafond_amount_idr,
d.arizona's avatar
d.arizona committed
609 610 611 612 613 614 615
                                item.type_of_credit == "Investment Loan"? item.out_loan_ki_amount_ori : "0.0",
                                item.type_of_credit == "Investment Loan"? (item.out_loan_ki_amount_idr === null ? "0.0" : item.out_loan_ki_amount_idr === "" ? "0.0" : item.out_loan_ki_amount_idr) : "0.0",
                                item.type_of_credit == "Revolving Loan (KMK)"? item.out_loan_kmk_amount_ori : "0.0",
                                item.type_of_credit == "Revolving Loan (KMK)"? (item.out_loan_kmk_amount_idr === null ? "0.0" : item.out_loan_kmk_amount_idr === "" ? "0.0" : item.out_loan_kmk_amount_idr) : "0.0",
                                item.type_of_credit == "Others"? item.out_loan_other_type : "",
                                item.type_of_credit == "Others"? item.out_loan_other_amount_ori : "0.0",
                                item.type_of_credit == "Others"? (item.out_loan_other_amount_idr === null ? "0.0" : item.out_loan_other_amount_idr === "" ? "0.0" : item.out_loan_other_amount_idr) : "0.0",
d.arizona's avatar
d.arizona committed
616 617 618 619
                                item.total_out_loan_ori === null ? "0.0" : item.total_out_loan_ori === "" ? "0.0" : item.total_out_loan_ori,
                                item.total_out_loan_idr === null ? "0.0" : item.total_out_loan_idr === "" ? "0.0" : item.total_out_loan_idr,
                                item.remaining_plafond_ori === null ? "0.0" : item.remaining_plafond_ori === "" ? "0.0" : item.remaining_plafond_ori,
                                item.remaining_plafond_idr === null ? "0.0" : item.remaining_plafond_idr === "" ? "0.0" : item.remaining_plafond_idr,
d.arizona's avatar
d.arizona committed
620
                                item.current_ratio_financial == null? "" : item.current_ratio_financial,
d.arizona's avatar
d.arizona committed
621
                                item.current_ratio_current === null ? "0.0" : item.current_ratio_current === "" ? "0.0" : item.current_ratio_current,
d.arizona's avatar
d.arizona committed
622
                                item.der_financial == null? "" : item.der_financial,
d.arizona's avatar
d.arizona committed
623
                                item.der_current === null ? "0.0" : item.der_current === "" ? "0.0" : item.der_current,
d.arizona's avatar
d.arizona committed
624
                                item.debt_to_ebitda_financial == null? "" : item.debt_to_ebitda_financial,
d.arizona's avatar
d.arizona committed
625
                                item.debt_to_ebitda_current === null ? "0.0" : item.debt_to_ebitda_current === "" ? "0.0" : item.debt_to_ebitda_current,
d.arizona's avatar
d.arizona committed
626
                                item.ebitda_to_interest_financial == null? "" : item.ebitda_to_interest_financial,
d.arizona's avatar
d.arizona committed
627
                                item.ebitda_to_interest_current === null ? "0.0" : item.ebitda_to_interest_current === "" ? "0.0" : item.ebitda_to_interest_current,
d.arizona's avatar
d.arizona committed
628
                                item.other_ratio1_ratio_name == null? "" : item.other_ratio1_ratio_name,
d.arizona's avatar
d.arizona committed
629
                                item.other_ratio1_financial === null ? "0.0" : item.other_ratio1_financial === "" ? "0.0" : item.other_ratio1_financial,
d.arizona's avatar
d.arizona committed
630
                                item.other_ratio1_current === null ? "0.0" : item.other_ratio1_current === "" ? "0.0" : item.other_ratio1_current,
d.arizona's avatar
d.arizona committed
631
                                item.other_ratio2_ratio_name == null? "" : item.other_ratio2_ratio_name,
d.arizona's avatar
d.arizona committed
632
                                item.other_ratio2_financial === null ? "0.0" : item.other_ratio2_financial === "" ? "0.0" : item.other_ratio2_financial,
d.arizona's avatar
d.arizona committed
633
                                item.other_ratio2_current === null ? "0.0" : item.other_ratio2_current === "" ? "0.0" : item.other_ratio2_current,
d.arizona's avatar
d.arizona committed
634
                                item.other_ratio3_ratio_name == null? "" : item.other_ratio3_ratio_name,
d.arizona's avatar
d.arizona committed
635
                                item.other_ratio3_financial === null ? "0.0" : item.other_ratio3_financial === "" ? "0.0" : item.other_ratio3_financial,
d.arizona's avatar
d.arizona committed
636
                                item.other_ratio3_current === null ? "0.0" : item.other_ratio3_current === "" ? "0.0" : item.other_ratio3_current,
d.arizona's avatar
d.arizona committed
637
                                item.other_ratio4_ratio_name == null? "" : item.other_ratio4_ratio_name,
d.arizona's avatar
d.arizona committed
638
                                item.other_ratio4_financial === null ? "0.0" : item.other_ratio4_financial === "" ? "0.0" : item.other_ratio4_financial,
d.arizona's avatar
d.arizona committed
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
                                item.other_ratio4_current === null ? "0.0" : item.other_ratio4_current === "" ? "0.0" : item.other_ratio4_current,
                                item.notes,
                            ])
                        }
                        
                        // if (item.children !== null) {
                        //     if (item.children.length > 0) {
                        //         item.children.map((items, indexs) => {
                        //             handlePushChild(items)
                        //         })
                        //     }
                        // }
                    })
                    // console.log(dataTable);
                    if (dataTable.length == 0) {
                        dataTable.push(
d.arizona's avatar
d.arizona committed
655
                            [3, "", "", "", "", this.props.company.company_name, null, null, "", null, "0.00", "",  "", "0", "", "0", "", "0", "", "", "0", "0", "0", "0", "0", "", "0", "", "0", "", "0", "", "0", "", "", "", "", "", "", "", "", "", "", "", "", "", 0 ],
d.arizona's avatar
d.arizona committed
656 657 658 659
                            [9, "", "", "", "", "", {value: "Grand Total"}, null, "", "", "", "0",  "", "0", "", "0", "", "0", "", "", "0", "0", "0", "0", "0", "", "0", "", "0", "", "0", "", "0", "", "", "", "", "", "", "", "", "", "", "", "", "notes", 999999 ],
                        )
                    }
                    
d.arizona's avatar
d.arizona committed
660
                    this.setState({ dataTable, dataLoaded: true, loading: false, buttonError: false, dataDelete: [] }, () => {
d.arizona's avatar
d.arizona committed
661
                        this.handleCalculate()
d.arizona's avatar
d.arizona committed
662 663 664 665 666 667 668 669 670 671
                        this.state.dataTable.map(item => {
                            if (item[23].length > 0) {
                                // console.log('masuk')
                                this.setState({ buttonError: true, errorPreview: true })
                            }
                        })
                        // console.log(this.state.buttonError)
                    })
                    // console.log(dataTable);
                }
faisalhamdi's avatar
faisalhamdi committed
672
            }
Deni Rinaldi's avatar
Deni Rinaldi committed
673 674 675
        })
    }

d.arizona's avatar
d.arizona committed
676
    uploadLOCF(type) {
d.arizona's avatar
d.arizona committed
677
        let data = []
d.arizona's avatar
d.arizona committed
678
        let error = false
d.arizona's avatar
d.arizona committed
679
        this.deleteReport()
d.arizona's avatar
d.arizona committed
680 681
        this.state.dataTable.map(i => {
            if (i[0] == 3) {
d.arizona's avatar
d.arizona committed
682
                if (i[6] == null || i[7] == null || i[8] == "" || i[9] == "" || i[10] == "" || i[11] == "") {
d.arizona's avatar
d.arizona committed
683 684
                    error = true
                }
d.arizona's avatar
d.arizona committed
685 686 687 688

                if (i[7].value == 'Others' && i[18] == '') {
                    error = true
                }
d.arizona's avatar
d.arizona committed
689
                let tgl = String(i[9]).split('-')
d.arizona's avatar
d.arizona committed
690
                let checkUndifined = tgl.findIndex((val) => val == undefined)
d.arizona's avatar
d.arizona committed
691 692 693
                data.push({
                    "item_report_id": i[1],
                    "borrower_comp_name": i[5],
d.arizona's avatar
d.arizona committed
694
                    "bank_name": i[6] == null? [6] : i[6].value,
d.arizona's avatar
d.arizona committed
695
                    "type_of_credit": i[7] == null? i[7] : i[7].value,
d.arizona's avatar
d.arizona committed
696
                    "remarks": i[8],
d.arizona's avatar
d.arizona committed
697
                    // "loan_maturity_date": i[9],
d.arizona's avatar
d.arizona committed
698 699
                    "loan_maturity_date":  i[9] == undefined || i[9] == "null" || i[9] == null? "" : (String(tgl[2]).length <= 2? tgl[2] + '-' + tgl[1] + '-' + tgl[0] : String(i[9])),
                    // "loan_maturity_date":  i[9] !== undefined || i[9] !== "null" || i[9] !== null? (String(tgl[2]).length <= 2? tgl[2] + '-' + tgl[1] + '-' + tgl[0] : String(i[9])) : "",
d.arizona's avatar
d.arizona committed
700
                    "interest": i[10] == ""? "0.00" : i[10],
d.arizona's avatar
d.arizona committed
701
                    "currency": i[11],
Riri Novita's avatar
Riri Novita committed
702 703 704 705 706 707
                    "loan_plafond_amount_ori": Number(i[12]).toFixed(1) == ""? "0.0" : Number(i[12]).toFixed(1),
                    "loan_plafond_amount_idr": Number(i[13]).toFixed(1) == ""? "0.0" : Number(i[13]).toFixed(1),
                    "out_loan_ki_amount_ori": Number(i[14]).toFixed(1) == ""? "0.0" : Number(i[14]).toFixed(1),
                    "out_loan_ki_amount_idr": Number(i[15]).toFixed(1) == ""? "0.0" : Number(i[15]).toFixed(1),
                    "out_loan_kmk_amount_ori": Number(i[16]).toFixed(1) == ""? "0.0" : Number(i[16]).toFixed(1),
                    "out_loan_kmk_amount_idr": Number(i[17]).toFixed(1) == ""? "0.0" : Number(i[17]).toFixed(1),
d.arizona's avatar
d.arizona committed
708
                    // "mtd_vs_previous_month": i[18],
d.arizona's avatar
d.arizona committed
709
                    "out_loan_other_type": i[18],
Riri Novita's avatar
Riri Novita committed
710 711 712 713 714 715 716 717 718 719 720 721 722 723
                    "out_loan_other_amount_ori": Number(i[19]).toFixed(1) == ""? "0.0" : Number(i[19]).toFixed(1),
                    "out_loan_other_amount_idr": Number(i[20]).toFixed(1) == ""? "0.0" : Number(i[20]).toFixed(1),
                    "total_out_loan_ori": Number(i[21]).toFixed(1) == ""? "0.0" : Number(i[21]).toFixed(1),
                    "total_out_loan_idr": Number(i[22]).toFixed(1) == ""? "0.0" : Number(i[22]).toFixed(1),
                    "remaining_plafond_ori": Number(i[23]).toFixed(1) == ""? "0.0" : Number(i[23]).toFixed(1),
                    "remaining_plafond_idr": Number(i[24]).toFixed(1) == ""? "0.0" : Number(i[24]).toFixed(1),
                    "current_ratio_financial": Number(i[25]).toFixed(2) == ""? "0.00" : Number(i[25]).toFixed(2),
                    "current_ratio_current": Number(i[26]).toFixed(2) == ""? "0.00" : Number(i[26]).toFixed(2),
                    "der_financial": Number(i[27]).toFixed(2) == ""? "0.00" : Number(i[27]).toFixed(2),
                    "der_current": Number(i[28]).toFixed(2) == ""? "0.00" : Number(i[28]).toFixed(2),
                    "debt_to_ebitda_financial": Number(i[29]).toFixed(2) == ""? "0.00" : Number(i[29]).toFixed(2),
                    "debt_to_ebitda_current": Number(i[30]).toFixed(2) == ""? "0.00" : Number(i[30]).toFixed(2),
                    "ebitda_to_interest_financial": Number(i[31]).toFixed(2) == ""? "0.00" : Number(i[31]).toFixed(2),
                    "ebitda_to_interest_current": Number(i[32]).toFixed(2) == ""? "0.00" : Number(i[32]).toFixed(2),
d.arizona's avatar
d.arizona committed
724
                    "other_ratio1_ratio_name": i[33],
Riri Novita's avatar
Riri Novita committed
725 726
                    "other_ratio1_financial": Number(i[34]).toFixed(2) == ""? "0.00" : Number(i[34]).toFixed(2),
                    "other_ratio1_current": Number(i[35]).toFixed(2) == ""? "0.00" : Number(i[35]).toFixed(2),
d.arizona's avatar
d.arizona committed
727
                    "other_ratio2_ratio_name": i[36],
Riri Novita's avatar
Riri Novita committed
728 729
                    "other_ratio2_financial": Number(i[37]).toFixed(2) == ""? "0.00" : Number(i[37]).toFixed(2),
                    "other_ratio2_current": Number(i[38]).toFixed(2) == ""? "0.00" : Number(i[38]).toFixed(2),
d.arizona's avatar
d.arizona committed
730
                    "other_ratio3_ratio_name": i[39],
Riri Novita's avatar
Riri Novita committed
731 732
                    "other_ratio3_financial": Number(i[40]).toFixed(2) == ""? "0.00" : Number(i[40]).toFixed(2),
                    "other_ratio3_current": Number(i[41]).toFixed(2) == ""? "0.00" : Number(i[41]).toFixed(2),
d.arizona's avatar
d.arizona committed
733
                    "other_ratio4_ratio_name": i[42],
Riri Novita's avatar
Riri Novita committed
734 735
                    "other_ratio4_financial": Number(i[43]).toFixed(2) == ""? "0.00" : Number(i[43]).toFixed(2),
                    "other_ratio4_current": Number(i[44]).toFixed(2) == ""? "0.00" : Number(i[44]).toFixed(2),
d.arizona's avatar
d.arizona committed
736 737 738 739 740 741 742 743 744 745 746 747 748 749
                    "notes": i[45],
                })
            }
        })
        let body = {
            "monthly_report_id": this.props.monthlyReportId,
            "company_id": this.props.company.company_id,
            "periode": this.props.periode,
            "report_id": this.props.report_id,
            "status": type,
            "months": this.props.month.month_id,
            "locf": data,
            "per_bs": this.state.perBS,
            "diff": this.state.diff,
d.arizona's avatar
d.arizona committed
750
            "total_loan" : this.state.perBS
d.arizona's avatar
d.arizona committed
751
        }
d.arizona's avatar
d.arizona committed
752 753
        console.log(JSON.stringify(body));
        if (error && type == 'submitted') {
754
            this.setState({handleDoubleClick: 0, saveDraft: false, saveComp: true, loading: false , snekbar: true, snekbarMsg: 'Data Incomplete', handleDoubleClick: 0})
d.arizona's avatar
d.arizona committed
755 756 757 758 759 760
        } else {
            api.create('UPLOAD').uploadMonthlyReportLOCF(body).then(response => {
                console.log(response);
                if (response.data) {
                    if (response.ok) {
                        if (response.data.status === "success") {
d.arizona's avatar
d.arizona committed
761
                            this.props.saveToMonthlyReport('LOCF')
d.arizona's avatar
d.arizona committed
762 763 764 765
                            // this.props.onClickClose()
                            // this.props.getReport()
                        } else {
                            this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning', loading: false }, () => {
d.arizona's avatar
d.arizona committed
766
                                if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
d.arizona's avatar
d.arizona committed
767 768 769 770 771 772 773 774
                                    setTimeout(() => {
                                        localStorage.removeItem(Constant.TOKEN)
                                        window.location.reload();
                                    }, 1000);
                                }
                            })
                            // alert(response.data.status)
                        }
d.arizona's avatar
d.arizona committed
775
                    } else {
776
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error', loading: false, handleDoubleClick: 0 })
d.arizona's avatar
d.arizona committed
777 778
                    }
                } else {
779
                    this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error', loading: false, handleDoubleClick: 0 })
d.arizona's avatar
d.arizona committed
780
                }
781
                this.setState({handleDoubleClick: 0})
d.arizona's avatar
d.arizona committed
782 783
            })
        }
d.arizona's avatar
d.arizona committed
784 785
    }

d.arizona's avatar
d.arizona committed
786 787 788 789 790 791
    getBankData() {
        let body = {
            group: 'BANK',
            company_id: this.props.company.company_id,
            type: 'BANK_NAME'
        }
d.arizona's avatar
d.arizona committed
792
        this.setState({ dataLoaded: false })
d.arizona's avatar
d.arizona committed
793 794 795 796 797 798 799 800 801 802 803
        api.create().getAllSettingByType(body).then(response => {
            console.log(response)
            if (response.data) {
                if (response.ok) {
                    if (response.data.status === 'success') {
                        let data = response.data.data
                        // // // console.log(data)
                        let inputBank = []

                        data.map((item) => {
                            inputBank.push({
d.arizona's avatar
d.arizona committed
804
                                value: `${item.value}`
d.arizona's avatar
d.arizona committed
805 806 807 808 809 810 811 812 813 814
                            })
                        })
                        let defaultProps = {
                            options: inputBank,
                            getOptionLabel: (option) => titleCase(option.value),
                        };
                        // // // console.log(defaultProps)
                        this.setState({ bankNameList: defaultProps })
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
815
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
d.arizona's avatar
d.arizona committed
816 817 818 819 820 821 822 823 824 825
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
                    }
                } else {
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
                }
Deni Rinaldi's avatar
Deni Rinaldi committed
826
            } else {
d.arizona's avatar
d.arizona committed
827 828 829 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
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
            }
        })
    }

    getTypeOfCredit() {
        let body = {
            group: 'BANK',
            company_id: this.props.company.company_id,
            type: 'TYPE_OF_CREDIT'
        }
        api.create().getAllSettingByType(body).then(response => {
            console.log(response)
            if (response.data) {
                if (response.ok) {
                    if (response.data.status === 'success') {
                        let data = response.data.data
                        // // // console.log(data)
                        let inputTypeOfCredit = []

                        data.map((item) => {
                            inputTypeOfCredit.push({
                                value: item.value
                            })
                        })
                        let defaultProps = {
                            options: inputTypeOfCredit,
                            getOptionLabel: (option) => titleCase(option.value),
                        };
                        // // // console.log(defaultProps)
                        this.setState({ typeOfCreditList: defaultProps})
Deni Rinaldi's avatar
Deni Rinaldi committed
858
                    } else {
d.arizona's avatar
d.arizona committed
859
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
860
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
d.arizona's avatar
d.arizona committed
861 862 863 864
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
Deni Rinaldi's avatar
Deni Rinaldi committed
865
                            }
d.arizona's avatar
d.arizona committed
866 867 868 869 870 871 872 873 874 875 876 877 878
                        })
                    }
                } else {
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
                }
            } else {
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
            }
        })
    }

    downloadTemplate = async () => {
        let res = await fetch(
d.arizona's avatar
d.arizona committed
879
            `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/locf/monthly_report/download_template?report_id=${this.props.report_id}&&company_id=${this.props.company.company_id}&&year=${this.props.periode}&&months=${this.props.month.month_id}`
d.arizona's avatar
d.arizona committed
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
        )
        res = await res.blob()
        // console.log(this.props.report_id)
        // console.log(this.props.company.company_id)
        // console.log(this.props.periode)
        // console.log(this.props.month.month_id)
        if (res.size > 0) {
            let url = window.URL.createObjectURL(res);
            let a = document.createElement('a');
            a.href = url;
            a.download = 'Template Monthly Report List of Credit Facilities.xlsx';
            a.click();
        }
    }

    async downloadAllData() {
d.arizona's avatar
d.arizona committed
896 897
        let url = `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/locf/monthly_report/export_monthly_report?monthly_report_id=&&report_id=${this.props.report_id}&&company_id=${this.props.company.company_id}&&year=${this.props.periode}&&revision=${this.props.revision}&&months=${this.props.month.month_id}`
        let urls = `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/locf/monthly_report/export_monthly_report?monthly_report_id=${this.props.monthlyReportId}&&report_id=${this.props.report_id}&&company_id=${this.props.company.company_id}&&year=${this.props.periode}&&revision=${this.props.revision}&&months=${this.props.month.month_id}`
d.arizona's avatar
d.arizona committed
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
        // console.log(url);
        // console.log(urls);
        let res = await fetch(
            this.props.monthlyReportId == null ? url : urls
        )
        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;
            a.download = 'Monthly Report List of Credit Facilities.xlsx';
            a.click();
        }
    }

    getSubmission() {
        this.setState({ loading: true })
        let payload = {
            "company_id": this.props.company.company_id,
            "periode": this.props.periode,
            "is_approver": true
        }
        api.create().getSubmission(payload).then(response => {
            // console.log(response)
            if (response.data) {
                if (response.data.status === "success") {
                    this.setState({
                        submissionID: response.data.data.submission_id,
                        lastRevision: response.data.data.last_revision,
                    }, () => {
                      this.getDataRatio()  
                    })
                } else {
                    this.setState({ submissionID: null, loading: false })
                }
            }
        })
    }

d.arizona's avatar
d.arizona committed
938 939 940 941 942 943 944 945 946 947
    getPerBS() {
        let payload = {
            "report_id": this.props.report_id,
            "revision": Number(this.props.revision),
            "periode": this.props.periode,
            "company_id": this.props.company.company_id,
            "monthly_report_id": this.props.monthlyReportId,
            "months": this.props.month.month_id
        }
        api.create().getPerBSiMontlyReportLOCF(payload).then((response) => {
d.arizona's avatar
d.arizona committed
948
            console.log(response)
d.arizona's avatar
d.arizona committed
949 950 951
            // if (this.state.get_for == 'view') {
            //     this.setState({perBS: "0.0"})
            // } else {
d.arizona's avatar
d.arizona committed
952
                if (response.data.status == "success") {
d.arizona's avatar
d.arizona committed
953 954 955 956 957
                    this.setState({
                        perBS: response.data.data.per_bs == null || response.data.data.per_bs == ''? Number(0).toFixed(1) : Number(response.data.data.per_bs).toFixed(1),
                        totalOutStand: response.data.data.total_loan,
                        diff: response.data.data.diff
                    })
d.arizona's avatar
d.arizona committed
958
                }
d.arizona's avatar
d.arizona committed
959
            // }
d.arizona's avatar
d.arizona committed
960 961 962
        })
    }

d.arizona's avatar
d.arizona committed
963 964
    getDataRatio() {
        let payload = {
d.arizona's avatar
d.arizona committed
965 966 967 968 969
            "report": 'ratio',
            "monthlyReportId": this.props.monthlyReportId,
            "periode": this.props.periode,
            "companyId": this.props.company.company_id,
            "months": this.props.month.month_id
d.arizona's avatar
d.arizona committed
970
        }
d.arizona's avatar
d.arizona committed
971
        api.create().getRatioLOCF(payload).then(response => {
d.arizona's avatar
d.arizona committed
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
            console.log(payload);
            console.log(response);
            let dataTable = []
            if (response.data) {
                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.uom,
                                item.ratio.total_actual_before === null ? "0.0" : item.ratio.total_actual_before === "" ? "0.0" : item.ratio.total_actual_before,
Riri Novita's avatar
Riri Novita committed
990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
                                Number(item.ratio.monthly_january).toFixed(2),
                                Number(item.ratio.monthly_february).toFixed(2),
                                Number(item.ratio.monthly_march).toFixed(2),
                                Number(item.ratio.monthly_april).toFixed(2),
                                Number(item.ratio.monthly_may).toFixed(2),
                                Number(item.ratio.monthly_june).toFixed(2),
                                Number(item.ratio.monthly_july).toFixed(2),
                                Number(item.ratio.monthly_august).toFixed(2),
                                Number(item.ratio.monthly_september).toFixed(2),
                                Number(item.ratio.monthly_october).toFixed(2),
                                Number(item.ratio.monthly_november).toFixed(2),
                                Number(item.ratio.monthly_december).toFixed(2),
                                Number(item.ratio.total_next_year).toFixed(2),
                                Number(item.ratio.total_more_year).toFixed(2),
d.arizona's avatar
d.arizona committed
1004 1005 1006 1007
                                item.order,
                                item.condition_it_should_be,
                                item.condition_if_wrong
                            ])
Deni Rinaldi's avatar
Deni Rinaldi committed
1008
                        }
d.arizona's avatar
d.arizona committed
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
                        if (item.children !== null) {
                            if (item.children.length > 0) {
                                item.children.map((items, indexs) => {
                                    handlePushChild(items)
                                })
                            }
                        }
                    }
                    res.map((item, index) => {
                        dataTable.push([
                            item.type_report_id,
                            item.id,
                            item.parent,
                            item.formula,
                            item.level,
                            item.description,
                            item.oum,
                            item.ratio.total_actual_before === null ? "0.0" : item.ratio.total_actual_before === "" ? "0.0" : item.ratio.total_actual_before,
Riri Novita's avatar
Riri Novita committed
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
                            Number(item.ratio.monthly_january).toFixed(2),
                            Number(item.ratio.monthly_february).toFixed(2),
                            Number(item.ratio.monthly_march).toFixed(2),
                            Number(item.ratio.monthly_april).toFixed(2),
                            Number(item.ratio.monthly_may).toFixed(2),
                            Number(item.ratio.monthly_june).toFixed(2),
                            Number(item.ratio.monthly_july).toFixed(2),
                            Number(item.ratio.monthly_august).toFixed(2),
                            Number(item.ratio.monthly_september).toFixed(2),
                            Number(item.ratio.monthly_october).toFixed(2),
                            Number(item.ratio.monthly_november).toFixed(2),
                            Number(item.ratio.monthly_december).toFixed(2),
                            Number(item.ratio.total_next_year).toFixed(2),
                            Number(item.ratio.total_more_year).toFixed(2),
d.arizona's avatar
d.arizona committed
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
                            item.order,
                            item.condition_it_should_be,
                            item.condition_if_wrong
                        ])
                        if (item.children !== null) {
                            if (item.children.length > 0) {
                                item.children.map((items, indexs) => {
                                    handlePushChild(items)
                                })
                            }
                        }
                    })
                    console.log(dataTable)
                    this.setState({dataTableRatio : dataTable}, () => {
                        this.getItemHierarki()
                    })
                } else {                            
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning'}, () => {
d.arizona's avatar
d.arizona committed
1059
                        if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
d.arizona's avatar
d.arizona committed
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073
                            setTimeout(() => {
                                localStorage.removeItem(Constant.TOKEN)
                                window.location.reload();
                            }, 1000);
                        }
                    })
                }
            } else {
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error', loading: false })
            }
        })
    }

    backToMonthlyReport(type) {
d.arizona's avatar
d.arizona committed
1074
        // this.setState({ loading: true })
d.arizona's avatar
d.arizona committed
1075
        let data = []
d.arizona's avatar
d.arizona committed
1076
        let error = false
d.arizona's avatar
d.arizona committed
1077
        this.deleteReport()
d.arizona's avatar
d.arizona committed
1078
        this.state.dataTable.map(i => {
d.arizona's avatar
d.arizona committed
1079
            if (i[0] == 3) {
d.arizona's avatar
d.arizona committed
1080
                if (i[6] == null || i[7] == null || i[8] == "" || i[9] == "" || i[10] == "" || i[11] == "") {
d.arizona's avatar
d.arizona committed
1081 1082
                    error = true
                }
d.arizona's avatar
d.arizona committed
1083 1084 1085
                if (i[7].value == 'Others' && i[18] == '') {
                    error = true
                }
d.arizona's avatar
d.arizona committed
1086
                let tgl = String(i[9]).split('-')
d.arizona's avatar
d.arizona committed
1087
                let checkUndifined = tgl.findIndex((val) => val == undefined)
d.arizona's avatar
d.arizona committed
1088 1089 1090
                data.push({
                    "item_report_id": i[1],
                    "borrower_comp_name": i[5],
d.arizona's avatar
d.arizona committed
1091 1092
                    "bank_name": i[6] == null? [6] : i[6].value,
                    "type_of_credit": i[7] == null? i[7] : i[7].value,
d.arizona's avatar
d.arizona committed
1093
                    "remarks": i[8],
d.arizona's avatar
d.arizona committed
1094
                    "loan_maturity_date":  i[9] == undefined || i[9] == "null" || i[9] == null? "" : (String(tgl[2]).length <= 2? tgl[2] + '-' + tgl[1] + '-' + tgl[0] : String(i[9])),
d.arizona's avatar
d.arizona committed
1095
                    // "loan_maturity_date":  i[9],
d.arizona's avatar
d.arizona committed
1096
                    "interest": i[10] == ""? "0.00" : i[10],
d.arizona's avatar
d.arizona committed
1097
                    "currency": i[11],
Riri Novita's avatar
Riri Novita committed
1098 1099 1100 1101 1102 1103
                    "loan_plafond_amount_ori": Number(i[12]).toFixed(1) == ""? "0.0" : Number(i[12]).toFixed(1),
                    "loan_plafond_amount_idr": Number(i[13]).toFixed(1) == ""? "0.0" : Number(i[13]).toFixed(1),
                    "out_loan_ki_amount_ori": Number(i[14]).toFixed(1) == ""? "0.0" : Number(i[14]).toFixed(1),
                    "out_loan_ki_amount_idr": Number(i[15]).toFixed(1) == ""? "0.0" : Number(i[15]).toFixed(1),
                    "out_loan_kmk_amount_ori": Number(i[16]).toFixed(1) == ""? "0.0" : Number(i[16]).toFixed(1),
                    "out_loan_kmk_amount_idr": Number(i[17]).toFixed(1) == ""? "0.0" : Number(i[17]).toFixed(1),
d.arizona's avatar
d.arizona committed
1104
                    // "mtd_vs_previous_month": i[18],
d.arizona's avatar
d.arizona committed
1105
                    "out_loan_other_type": i[18],
Riri Novita's avatar
Riri Novita committed
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
                    "out_loan_other_amount_ori": Number(i[19]).toFixed(1) == ""? "0.0" : Number(i[19]).toFixed(1),
                    "out_loan_other_amount_idr": Number(i[20]).toFixed(1) == ""? "0.0" : Number(i[20]).toFixed(1),
                    "total_out_loan_ori": Number(i[21]).toFixed(1) == ""? "0.0" : Number(i[21]).toFixed(1),
                    "total_out_loan_idr": Number(i[22]).toFixed(1) == ""? "0.0" : Number(i[22]).toFixed(1),
                    "remaining_plafond_ori": Number(i[23]).toFixed(1) == ""? "0.0" : Number(i[23]).toFixed(1),
                    "remaining_plafond_idr": Number(i[24]).toFixed(1) == ""? "0.0" : Number(i[24]).toFixed(1),
                    "current_ratio_financial": Number(i[25]).toFixed(2) == ""? "0.00" : Number(i[25]).toFixed(2),
                    "current_ratio_current": Number(i[26]).toFixed(2) == ""? "0.00" : Number(i[26]).toFixed(2),
                    "der_financial": Number(i[27]).toFixed(2) == ""? "0.00" : Number(i[27]).toFixed(2),
                    "der_current": Number(i[28]).toFixed(2) == ""? "0.00" : Number(i[28]).toFixed(2),
                    "debt_to_ebitda_financial": Number(i[29]).toFixed(2) == ""? "0.00" : Number(i[29]).toFixed(2),
                    "debt_to_ebitda_current": Number(i[30]).toFixed(2) == ""? "0.00" : Number(i[30]).toFixed(2),
                    "ebitda_to_interest_financial": Number(i[31]).toFixed(2) == ""? "0.00" : Number(i[31]).toFixed(2),
                    "ebitda_to_interest_current": Number(i[32]).toFixed(2) == ""? "0.00" : Number(i[32]).toFixed(2),
d.arizona's avatar
d.arizona committed
1120
                    "other_ratio1_ratio_name": i[33],
Riri Novita's avatar
Riri Novita committed
1121 1122
                    "other_ratio1_financial": Number(i[34]).toFixed(2) == ""? "0.00" : Number(i[34]).toFixed(2),
                    "other_ratio1_current": Number(i[35]).toFixed(2) == ""? "0.00" : Number(i[35]).toFixed(2),
d.arizona's avatar
d.arizona committed
1123
                    "other_ratio2_ratio_name": i[36],
Riri Novita's avatar
Riri Novita committed
1124 1125
                    "other_ratio2_financial": Number(i[37]).toFixed(2) == ""? "0.00" : Number(i[37]).toFixed(2),
                    "other_ratio2_current": Number(i[38]).toFixed(2) == ""? "0.00" : Number(i[38]).toFixed(2),
d.arizona's avatar
d.arizona committed
1126
                    "other_ratio3_ratio_name": i[39],
Riri Novita's avatar
Riri Novita committed
1127 1128
                    "other_ratio3_financial": Number(i[40]).toFixed(2) == ""? "0.00" : Number(i[40]).toFixed(2),
                    "other_ratio3_current": Number(i[41]).toFixed(2) == ""? "0.00" : Number(i[41]).toFixed(2),
d.arizona's avatar
d.arizona committed
1129
                    "other_ratio4_ratio_name": i[42],
Riri Novita's avatar
Riri Novita committed
1130 1131
                    "other_ratio4_financial": Number(i[43]).toFixed(2) == ""? "0.00" : Number(i[43]).toFixed(2),
                    "other_ratio4_current": Number(i[44]).toFixed(2) == ""? "0.00" : Number(i[44]).toFixed(2),
d.arizona's avatar
d.arizona committed
1132 1133 1134
                    "notes": i[45],
                })
            }
d.arizona's avatar
d.arizona committed
1135 1136
        })
        let payload = {
d.arizona's avatar
d.arizona committed
1137
            "monthly_report_id": this.props.monthlyReportId,
d.arizona's avatar
d.arizona committed
1138 1139 1140 1141 1142 1143 1144 1145
            "company_id": this.props.company.company_id,
            "periode": this.props.periode,
            "report_id": this.props.report_id,
            "status": type,
            "months": this.props.month.month_id,
            "locf": data,
            "per_bs": this.state.perBS,
            "diff": this.state.diff,
d.arizona's avatar
d.arizona committed
1146
            "total_loan" : this.state.perBS
d.arizona's avatar
d.arizona committed
1147
        }
d.arizona's avatar
d.arizona committed
1148

d.arizona's avatar
d.arizona committed
1149
        console.log(JSON.stringify(payload))
d.arizona's avatar
d.arizona committed
1150
        if (error && type == 'submitted') {
1151
            this.setState({handleDoubleClick: 0, saveDraft: false, saveComp: true, loading: false, snekbar: true, snekbarMsg: 'Data Incomplete', handleDoubleClick: 0})
d.arizona's avatar
d.arizona committed
1152 1153 1154 1155 1156
        } else {
            api.create('UPLOAD').createMonthlyReportLOCF(payload).then(response => {
                console.log(response);
                if (response.data) {
                    if (response.data.status === "success") {
d.arizona's avatar
d.arizona committed
1157
                        this.props.saveToMonthlyReport('LOCF')
d.arizona's avatar
d.arizona committed
1158
                    } else {
Riri Novita's avatar
Riri Novita committed
1159 1160
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning', loading: false}, () => {
                            document.body.style.overflow = 'unset';
d.arizona's avatar
d.arizona committed
1161
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
Riri Novita's avatar
Riri Novita committed
1162 1163 1164 1165 1166
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
d.arizona's avatar
d.arizona committed
1167 1168
                            this.props.saveToMonthlyReport()
                        })
Riri Novita's avatar
Riri Novita committed
1169 1170 1171 1172 1173 1174
                    } 
                    // else {
                    //     this.setState({ loading: false }, () => {
                    //         this.props.saveToMonthlyReport()
                    //     })
                    // }
d.arizona's avatar
d.arizona committed
1175 1176
                } else {
                    this.setState({ loading: false }, () => {
d.arizona's avatar
d.arizona committed
1177 1178
                        // this.getSubmission()
                        document.body.style.overflow = 'unset';
d.arizona's avatar
d.arizona committed
1179 1180
                    })
                }
1181
                this.setState({handleDoubleClick: 0})
d.arizona's avatar
d.arizona committed
1182 1183
            })
        }
d.arizona's avatar
d.arizona committed
1184 1185
    }

d.arizona's avatar
d.arizona committed
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 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 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260

    handleCalculate = () => {
        let dataTable2 = this.state.dataTable
        this.setState({ loading: true }, () => {
            let bankPrev = ""
            let idPrev  = 0
            let newData = []
            let dataCoba = []
            let bankNameEmpty = false
            let totalLoan = 0
            dataTable2.map((item, index) => {
                if (item[0] !== 8) {
                    if (item[6] == null) {
                        bankNameEmpty = true
                    } else {
                        let groupName = String(item[6].value).split("-")
                        let indexAS = dataCoba.findIndex((val) => item[6].value.includes(val.groupName))
                        if (indexAS == -1) {
                            dataCoba.push({
                                groupName: groupName[groupName.length - 1],
                                data: [item]
                            })
                        } else {
                            let indexDD = dataCoba[indexAS].data.length-1 == -1 ? 0 : dataCoba[indexAS].data.length-1
                            if (String(dataCoba[indexAS].data[indexDD]).includes('Total')) {
                                let dataAwal = []
                                let dataAkhir = []
                                dataAwal = dataCoba[indexAS].data.splice(0, dataCoba[indexAS].data.length-2)
                                dataAkhir = dataCoba[indexAS].data.splice(dataCoba[indexAS].data.length-1, 1)
                                dataAwal.push(item)
                                dataCoba[indexAS].data = dataAwal.concat(dataAkhir)
                            } else {
                                dataCoba[indexAS].data.push(item)
                            }
                        }
                    }
                }
            })
            let dataGabung = []
            if (!bankNameEmpty) {
                dataCoba.map((item, index) => {
                    item.data.map((items,index) => {
                        dataGabung.push(items)
                    })
                })

                dataGabung.map((items, index) => {
                    if (items[0] == 3) {
                        totalLoan += items[22]
                    }
                    if (bankPrev != "") {
                        if (items[6].value !== bankPrev) {
                            bankPrev = items[6].value
                            if (items[6].value == 'Grand Total') {
                                // if (dataTable2.length > 2) {
                                //     newData.push(items)
                                // } else { 
                                    if (String(dataGabung[index - 1][6].value).includes('Total ')) {
                                        newData.push(items)
                                    } else {
                                        // if (String(dataGabung[index][6].value).includes('Total ')) {
                                        //     newData.push(items)
                                        // } else { 
                                            // items[46] = index + 1
                                            let nameTotal = String(dataGabung[index - 1][6].value).split("-")
                                            newData.push([
                                                8, 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                {value: 'Total ' + nameTotal[nameTotal.length - 1]},
                                                null, 
                                                "", 
d.arizona's avatar
d.arizona committed
1261
                                                null, 
d.arizona's avatar
d.arizona committed
1262 1263
                                                "0.00", 
                                                "",  
d.arizona's avatar
d.arizona committed
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
                                                "", 
                                                "0", 
                                                "", 
                                                "0", 
                                                "",  
                                                "0", 
                                                "", 
                                                "", 
                                                "0", 
                                                "0", 
                                                "0", 
                                                "0", 
                                                "0", 
                                                "", 
                                                "0", 
                                                "", 
                                                "0", 
                                                "", 
                                                "0", 
                                                "", 
                                                "0", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
                                                "", 
d.arizona's avatar
d.arizona committed
1297
                                                "",
d.arizona's avatar
d.arizona committed
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
                                                index],  
                                                items,
                                            )
                                        // }
                                    } 
                                // }
                            } else {
                                if (String(dataGabung[index - 1][6].value).includes('Total ')) {
                                    newData.push(items)
                                } else {
                                    if (String(dataGabung[index][6].value).includes('Total ')) {
                                        newData.push(items)
                                    } else {
                                        items[46] = index + 1
                                        let nameTotal = String(dataGabung[index - 1][6].value).split("-")
                                        newData.push([
                                            8, 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            {value: 'Total ' + nameTotal[nameTotal.length - 1]}, 
                                            null, 
                                            "", 
d.arizona's avatar
d.arizona committed
1323
                                            null, 
d.arizona's avatar
d.arizona committed
1324 1325
                                            "0.00", 
                                            "",  
d.arizona's avatar
d.arizona committed
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 1356 1357 1358
                                            "", 
                                            "0", 
                                            "", 
                                            "0", 
                                            "", 
                                            "0", 
                                            "", 
                                            "", 
                                            "0", 
                                            "0", 
                                            "0", 
                                            "0", 
                                            "0", 
                                            "", 
                                            "0", 
                                            "", 
                                            "0", 
                                            "", 
                                            "0", 
                                            "", 
                                            "0",
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
                                            "", 
d.arizona's avatar
d.arizona committed
1359
                                            "",
d.arizona's avatar
d.arizona committed
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377
                                            index],
                                            items,
                                        )
                                    }
                                    
                                }
                            }
                        }
                        else {
                            newData.push(items)
                        }
                    } else {
                        bankPrev = items[6].value
                        idPrev = items[0]
                        newData.push(items)
                    }
                })
            } else {
d.arizona's avatar
d.arizona committed
1378 1379 1380
                if (this.state.get_for == 'edit') {
                    this.setState({snekbar: true, snekbarMsg: 'Bank Names Cannot be Empty'})
                }
d.arizona's avatar
d.arizona committed
1381 1382 1383 1384 1385
            }
            
            setTimeout(() => {
                // console.log(dataCoba)
                // console.log(dataGabung)
d.arizona's avatar
d.arizona committed
1386
                console.log(newData)
d.arizona's avatar
d.arizona committed
1387
                // console.log(dataTampungBank)
d.arizona's avatar
d.arizona committed
1388
                console.log(Number(totalLoan).toFixed(1));
d.arizona's avatar
d.arizona committed
1389
                console.log(this.state.perBS)
d.arizona's avatar
d.arizona committed
1390
                console.log(this.state.diff)
d.arizona's avatar
d.arizona committed
1391
                // console.log(bankNameEmpty)
d.arizona's avatar
d.arizona committed
1392 1393
                // dataTable: newData, totalOutStand: newData[newData.length-1][22]
                if (bankNameEmpty) {
d.arizona's avatar
d.arizona committed
1394 1395 1396 1397 1398
                    if (this.state.get_for == 'view') {
                        this.setState({ loading: false, dataTable: this.state.dataTable, diff: this.state.diff == null? "0.0" : Number(0 - this.state.perBS).toFixed(1), perBS: this.state.totalOutStand == null? "0.0" : this.state.totalOutStand, saveDraft: false, saveComp: true})
                    } else {
                        this.setState({ loading: false, dataTable: this.state.dataTable, diff: Number(0 - this.state.perBS).toFixed(1), saveDraft: false, saveComp: true})
                    }
d.arizona's avatar
d.arizona committed
1399
                } else {
d.arizona's avatar
d.arizona committed
1400
                    if (this.state.get_for == 'view') {
d.arizona's avatar
d.arizona committed
1401
                        this.setState({ loading: false, dataTable: newData, diff: this.state.diff == null? "0.0" : Number(Number(totalLoan).toFixed(1) - this.state.perBS).toFixed(1), perBS: this.state.totalOutStand == null? "0.0" : this.state.totalOutStand })
d.arizona's avatar
d.arizona committed
1402
                    } else {
d.arizona's avatar
d.arizona committed
1403 1404 1405 1406
                        this.setState({ loading: false, dataTable: newData, diff: Number(Number(totalLoan).toFixed(1) - this.state.perBS).toFixed(1), saveDraft: false, saveComp: Number(Number(totalLoan).toFixed(1) - this.state.perBS) == 0 || Number(Number(totalLoan).toFixed(1) - this.state.perBS) == "-0.0"? false : true }, () => {
                            // alert(this.state.saveComp)
                            // console.log(Number(Number(totalLoan).toFixed(1) - this.state.perBS));
                        })
d.arizona's avatar
d.arizona committed
1407 1408

                    }
d.arizona's avatar
d.arizona committed
1409 1410 1411 1412
                }
            }, 100);
        })
    }
d.arizona's avatar
d.arizona committed
1413 1414 1415 1416 1417 1418
    

    render() {
        let dataTable2 = this.state.dataTable
        let loading = this.state.loading
        let dataTampungBank = []
d.arizona's avatar
d.arizona committed
1419
        let indexNyasar = false
d.arizona's avatar
d.arizona committed
1420
        let totalLoan = 0 
d.arizona's avatar
d.arizona committed
1421

d.arizona's avatar
d.arizona committed
1422
        // const formatSeparator = (num) => {
d.arizona's avatar
d.arizona committed
1423
        //    return String(num).replace(/(?<!\..*)(\d)(?=(?:\d{3})+(?:\.|$))/g, '$1,')
d.arizona's avatar
d.arizona committed
1424 1425 1426

            // return num
        // }
d.arizona's avatar
d.arizona committed
1427

d.arizona's avatar
d.arizona committed
1428
        const handleAction = (typeReport, tableMeta, typeButton) => {
d.arizona's avatar
d.arizona committed
1429
            // console.log(typeReport)
d.arizona's avatar
d.arizona committed
1430
            if (typeReport == 3) {
d.arizona's avatar
d.arizona committed
1431
                if (dataTable2.length == 2) {
d.arizona's avatar
d.arizona committed
1432 1433 1434 1435
                    if (typeButton == 'add') {
                        return true
                    } else {
                        return false
Deni Rinaldi's avatar
Deni Rinaldi committed
1436 1437
                    }
                } else {
d.arizona's avatar
d.arizona committed
1438 1439 1440 1441 1442 1443 1444 1445
                    return true
                }
            } else {
                return false
            }
        }

        const handleChange = (value, tableMeta, column, typeChange, typeDrop) => {
d.arizona's avatar
d.arizona committed
1446
            let val = ''
d.arizona's avatar
d.arizona committed
1447 1448 1449 1450 1451 1452
            if (typeChange == 'date') {
                dataTable2[tableMeta.rowIndex][column] = format(value, 'yyyy-MM-dd')
                this.setState({loading: true}, () => {
                    this.setState({loading: false})
                })
            } else {
d.arizona's avatar
d.arizona committed
1453
                if (column != 8 && column != 11 && column != 18 && column != 25 && column != 27 && column != 29 && column != 31 && column != 33 && column != 36 && column != 39 && column != 42 && column != 45 ) {
d.arizona's avatar
d.arizona committed
1454 1455
                    val = String(value).split(",").join("")
                    val = Number(val).toFixed(2)
d.arizona's avatar
d.arizona committed
1456
                } else {
d.arizona's avatar
d.arizona committed
1457 1458
                    val = String(value).split(",").join("")
                    
d.arizona's avatar
d.arizona committed
1459
                }
d.arizona's avatar
d.arizona committed
1460

d.arizona's avatar
d.arizona committed
1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479
                if (value.value !== undefined) {
                    if (value.value == 'Investment Loan') {
                        dataTable2[tableMeta.rowIndex][16] = 0
                        dataTable2[tableMeta.rowIndex][17] = 0
                        dataTable2[tableMeta.rowIndex][18] = ""
                        dataTable2[tableMeta.rowIndex][19] = 0
                        dataTable2[tableMeta.rowIndex][20] = 0
                    } else if (value.value == 'Revolving Loan (KMK)') {
                        dataTable2[tableMeta.rowIndex][14] = 0
                        dataTable2[tableMeta.rowIndex][15] = 0
                        dataTable2[tableMeta.rowIndex][18] = ""
                        dataTable2[tableMeta.rowIndex][19] = 0
                        dataTable2[tableMeta.rowIndex][20] = 0
                    } else if (value.value == 'others') {
                        dataTable2[tableMeta.rowIndex][14] = 0
                        dataTable2[tableMeta.rowIndex][15] = 0
                        dataTable2[tableMeta.rowIndex][16] = 0
                        dataTable2[tableMeta.rowIndex][17] = 0
                    }
d.arizona's avatar
d.arizona committed
1480 1481 1482
                    dataTable2[tableMeta.rowIndex][column] = value
                } else {
                    dataTable2[tableMeta.rowIndex][column] = val
d.arizona's avatar
d.arizona committed
1483
                }
d.arizona's avatar
d.arizona committed
1484
            }
d.arizona's avatar
d.arizona committed
1485 1486 1487
            console.log(dataTable2[tableMeta.rowIndex][column]);
            console.log(value)
            console.log(String(value).split(",").join(""))
d.arizona's avatar
d.arizona committed
1488 1489 1490 1491 1492
        }

        const handleValueDropDown = (value, type, tableMeta) => {
            let data = type == 'bankName' ? this.state.bankNameList.options : this.state.typeOfCreditList.options
            let index = 0
d.arizona's avatar
d.arizona committed
1493 1494 1495
            if (type == 'bankName' && dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] != null && dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] != "") {
                indexNyasar = true
            }
d.arizona's avatar
d.arizona committed
1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
            if (value == null) {
                index = -1
            } else {
                index = data.findIndex((val) => String(val.value) == String(value.value))
            }
            if (index == -1) {
                dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = null
                return null
            } else {
                dataTable2[tableMeta.rowIndex][tableMeta.columnIndex] = value
                return value
            }
        }

        const handleTableRatio = (value, tableMeta, column, reportName) => {
            let dataTableRatio = this.state.dataTableRatio
            let indexId = dataTableRatio.findIndex((val) => String(val[5]).toLocaleLowerCase() == String(reportName).toLocaleLowerCase())
            let valuez = 0
            if (indexId != -1) {
                valuez = dataTableRatio[indexId][Number(this.props.month.month_id) + 7]
                // console.log(valuez)
                if (String(valuez).includes('infinity')) {
                    valuez = 0
Deni Rinaldi's avatar
Deni Rinaldi committed
1519 1520
                }
            }
d.arizona's avatar
d.arizona committed
1521 1522 1523 1524 1525 1526
            dataTable2[tableMeta.rowIndex][column] = valuez
            return valuez
        }
        
        const handleFormulaHardcode = (value, tableMeta, column) => {
            let valuez = 0
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538
            if (tableMeta.rowData[0] == 8) {
                dataTable2.map((item,index) => {
                    if (item[6].value.includes(String(tableMeta.rowData[6].value).substr(6,tableMeta.rowData[6].length)) && item[0] != 8) {
                        valuez += Number(item[column])
                    }
                })
            } else if (tableMeta.rowData[0] == 9) {
                dataTable2.map((item,index) => {
                    if (item[0] == 8) {
                        valuez += Number(item[column])
                    }
                })
d.arizona's avatar
d.arizona committed
1539 1540 1541
                if (column == 22) {
                    totalLoan = valuez
                }
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551
            } else {
                if (column == 21) {
                    valuez = Number(tableMeta.rowData[14]) + Number(tableMeta.rowData[16]) + Number(tableMeta.rowData[19])
                } else if (column == 22) {
                    valuez = Number(tableMeta.rowData[15]) + Number(tableMeta.rowData[17]) + Number(tableMeta.rowData[20])
                } else if (column == 23) {
                    valuez = Number(tableMeta.rowData[12]) - Number(tableMeta.rowData[21])
                } else if (column == 24) {
                    valuez = Number(tableMeta.rowData[13]) - Number(tableMeta.rowData[22])
                }
d.arizona's avatar
d.arizona committed
1552 1553 1554 1555 1556 1557 1558 1559
            }
            dataTable2[tableMeta.rowIndex][column] = valuez
            return valuez
        }

        const handleTambah = (data, rowIndex) => {
            // // console.log(dataTable2)
            let newData = []
1560
            let indexxx = 0
d.arizona's avatar
d.arizona committed
1561
            dataTable2.map((item, index) => {
1562 1563 1564 1565 1566 1567
                indexxx = index
                if (item[6] == "Grand Total") {
                    item[46] = 999999
                } else {
                    item[46] = indexxx
                }
d.arizona's avatar
d.arizona committed
1568 1569
                newData.push(item)
                if (index == rowIndex) {
1570
                    indexxx = index + 1
d.arizona's avatar
d.arizona committed
1571 1572 1573 1574 1575 1576 1577 1578 1579 1580
                    newData.push([
                        3, 
                        "", 
                        "", 
                        "", 
                        "", 
                        this.props.company.company_name, 
                        item[6], 
                        null, 
                        "", 
d.arizona's avatar
d.arizona committed
1581
                        null, 
d.arizona's avatar
d.arizona committed
1582 1583
                        "0.00", 
                        "",  
d.arizona's avatar
d.arizona committed
1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
                        "", 
                        "0", 
                        "", 
                        "0", 
                        "", 
                        "0", 
                        "", 
                        "", 
                        "0", 
                        "0", 
                        "0", 
                        "0", 
                        "0", 
                        "", 
                        "0", 
                        "", 
                        "0", 
                        "", 
                        "0", 
                        "", 
                        "0", 
                        "", 
                        "", 
                        "", 
                        "", 
                        "", 
                        "", 
                        "", 
                        "", 
                        "", 
                        "", 
                        "", 
                        "", 
d.arizona's avatar
d.arizona committed
1617
                        "",
d.arizona's avatar
d.arizona committed
1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
                        indexxx],
                    )

                }
            })
            dataTable2 = newData.sort((a,b) => a[46] - b[46])
            this.setState({ dataTable: dataTable2 }, () => {
                setTimeout(() => {
                    this.setState({ loading: false })
                    console.log(dataTable2)
                }, 500)
            })
        }

        const handleDelete = (index) => {
d.arizona's avatar
d.arizona committed
1633
            let dataDelete = this.state.dataDelete
d.arizona's avatar
d.arizona committed
1634 1635 1636 1637 1638 1639
            let berapaInput = 0
            dataTable2.map((items,indexs) => {
                if (items[0] == 3) {
                    berapaInput += 1
                }
            })
d.arizona's avatar
d.arizona committed
1640 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

            dataDelete.push(dataTable2[index][1])

            let prevData = dataTable2[index-1] == undefined? null : dataTable2[index-1][6]
            let currentData = dataTable2[index][6]
            let nextData = dataTable2[index+1] == undefined? null : dataTable2[index+1][6]

            if (nextData == null) {
                dataTable2.splice(index,1)
            } else if (nextData.value.includes('Total')) {
                if (prevData !== null && currentData == null) {
                    dataTable2.splice(index,1)
                } else if (prevData !== null && prevData.value == currentData.value) {
                    dataTable2.splice(index,1)
                } else if (dataTable2.length > 3) {
                    if (prevData == null) {
                        if (nextData.value.includes('Grand')) {
                            dataTable2.splice(index,1)
                        } else {
                            dataTable2.splice(index,2)
                        }
                    } else {
                        dataTable2.splice(index,2)
                    }
                } else if (dataTable2.length == 3) {
                    if (prevData == null) {
                        if (nextData.value.includes('Grand')) {
                            dataTable2.splice(index,1)
                        } else {
                            dataTable2.splice(index,3)
                            dataTable2.push(
d.arizona's avatar
d.arizona committed
1671
                                [3, "", "", "", "", this.props.company.company_name, null, null, "", null, "0.00", "",  "", "0", "", "0", "", "0", "", "", "0", "0", "0", "0", "0", "", "0", "", "0", "", "0", "", "0", "", "", "", "", "", "", "", "", "", "", "", "", "", 0 ],
d.arizona's avatar
d.arizona committed
1672 1673 1674 1675 1676 1677
                                [9, "", "", "", "", "", {value: "Grand Total"}, null, "", "", "", "0",  "", "0", "", "0", "", "0", "", "", "0", "0", "0", "0", "0", "", "0", "", "0", "", "0", "", "0", "", "", "", "", "", "", "", "", "", "", "", "", "notes", 999999 ],
                            )
                        }
                    } else {
                        dataTable2.splice(index,1)
                    }
d.arizona's avatar
d.arizona committed
1678 1679
                }
            } else {
d.arizona's avatar
d.arizona committed
1680
                dataTable2.splice(index,1)
d.arizona's avatar
d.arizona committed
1681 1682
            }
            
d.arizona's avatar
d.arizona committed
1683
            this.setState({ dataTable: dataTable2, dataDelete }, () => {
d.arizona's avatar
d.arizona committed
1684
                setTimeout(() => {
d.arizona's avatar
d.arizona committed
1685
                    console.log(this.state.dataDelete)
d.arizona's avatar
d.arizona committed
1686 1687
                    this.setState({ loading: false })
                }, 100)
d.arizona's avatar
d.arizona committed
1688
            })
Deni Rinaldi's avatar
Deni Rinaldi committed
1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715
        }

        let columns = [
            {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    filter: false,
d.arizona's avatar
d.arizona committed
1716
                    display: this.state.get_for == 'view'? false : true,
Deni Rinaldi's avatar
Deni Rinaldi committed
1717
                    customHeadRender: (columnMeta) => (
d.arizona's avatar
d.arizona committed
1718
                        <TableCell key={columnMeta.index} style={{ ...style, top: 0, zIndex: 99, backgroundColor: '#dbdbdb' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
1719 1720 1721
                            <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'left' }}>{columnMeta.name}</Typography>
                        </TableCell>
                    ),
d.arizona's avatar
d.arizona committed
1722
                    setCellProps: () => ({ style2 }),
Deni Rinaldi's avatar
Deni Rinaldi committed
1723 1724 1725 1726 1727
                    customBodyRender: (val, tableMeta) => {
                        return (
                            // handleAction(tableMeta.rowData[2]) && 
                            <div style={{ display: 'flex' }}>
                                {/* {tableMeta.rowData[6] === "Active" ? */}
d.arizona's avatar
d.arizona committed
1728
                                {handleAction(tableMeta.rowData[0], tableMeta, 'add') && <span>
Deni Rinaldi's avatar
Deni Rinaldi committed
1729 1730 1731 1732 1733 1734 1735 1736 1737
                                    <LightTooltip title={'Add'} arrow>
                                        <button
                                            style={{
                                                backgroundColor: 'transparent',
                                                cursor: 'pointer',
                                                borderColor: 'transparent',
                                            }}
                                            // onClick={() => // // console.log(tableMeta.rowData[1])}
                                            onClick={() => {
d.arizona's avatar
d.arizona committed
1738 1739
                                                this.setState({ loading: true })
                                                handleTambah(tableMeta.rowData[1], tableMeta.rowIndex)
Deni Rinaldi's avatar
Deni Rinaldi committed
1740 1741 1742 1743 1744
                                            }}
                                        >
                                            <img src={Images.add} />
                                        </button>
                                    </LightTooltip>
d.arizona's avatar
d.arizona committed
1745 1746
                                </span>}
                                {handleAction(tableMeta.rowData[0], tableMeta, 'delete') && <span>
Deni Rinaldi's avatar
Deni Rinaldi committed
1747 1748 1749 1750 1751 1752 1753 1754 1755
                                    <LightTooltip title={'Delete'} arrow>
                                        <button
                                            style={{
                                                backgroundColor: 'transparent',
                                                cursor: 'pointer',
                                                borderColor: 'transparent',
                                                marginLeft: 5
                                            }}
                                            onClick={() => {
d.arizona's avatar
d.arizona committed
1756 1757
                                                this.setState({ loading: true })
                                                handleDelete(tableMeta.rowIndex)
Deni Rinaldi's avatar
Deni Rinaldi committed
1758 1759
                                            }}
                                        >
d.arizona's avatar
d.arizona committed
1760
                                            <img src={Images.delete} style={{width: 37, height: 37}}/>
Deni Rinaldi's avatar
Deni Rinaldi committed
1761 1762
                                        </button>
                                    </LightTooltip>
d.arizona's avatar
d.arizona committed
1763
                                </span>}
Deni Rinaldi's avatar
Deni Rinaldi committed
1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
                            </div >
                        );
                    }
                }
            }, {
                name: "Borrower (Company) Name",
                options: {
                    customHeadRender: (columnMeta) => (
                        <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96, borderRight: '1px #fff solid' }}>
                            <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                        </TableCell>
                    ),
                    setCellProps: () => ({ style2 }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        return (
d.arizona's avatar
d.arizona committed
1779
                            <div style={{ textAlign: 'center', width: 90 }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798
                                {tableMeta.rowData[0] === 4 ?
                                    null :
                                    val
                                }
                            </div>
                        )
                    }
                }
            }, {
                name: "Bank Name",
                options: {
                    customHeadRender: (columnMeta) => (
                        <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96, borderRight: '1px #fff solid' }}>
                            <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                        </TableCell>
                    ),
                    setCellProps: () => ({ style2 }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        return (
d.arizona's avatar
d.arizona committed
1799
                            <div style={{ width: 150 }}>
d.arizona's avatar
d.arizona committed
1800
                            {tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9 || tableMeta.rowData[0] === 4 ?
d.arizona's avatar
d.arizona committed
1801 1802
                                <Typography style={{ color: 'black', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{val.value}</Typography>
                                :
d.arizona's avatar
d.arizona committed
1803 1804 1805 1806 1807 1808
                                <Autocomplete
                                    {...this.state.bankNameList}
                                    id="bankNameList"
                                    onChange={(event, newInputValue) => handleChange(newInputValue, tableMeta, tableMeta.columnIndex)}
                                    debug
                                    disableClearable
d.arizona's avatar
d.arizona committed
1809
                                    disabled={this.state.get_for == 'view'}
d.arizona's avatar
d.arizona committed
1810 1811 1812 1813 1814
                                    // disabled={!handleAction(tableMeta.rowData[2], tableMeta.rowData[0])}
                                    value={handleValueDropDown(val, 'bankName', tableMeta)}
                                    style={{ padding: 0, margin: 0}}
                                    renderInput={(params) =>
                                        <div ref={params.InputProps.ref} style={{ padding: 0, margin: 0 }}>
d.arizona's avatar
d.arizona committed
1815
                                            <textarea style={{ borderColor: 'white', width: 150, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? "black" : "#5198ea", backgroundColor: tableMeta.rowData[6] == null && this.state.get_for == 'edit'? '#ffac99' : 'white' }} type="text" {...params.inputProps} />
d.arizona's avatar
d.arizona committed
1816 1817 1818 1819 1820
                                        </div>
                                    }
                                />
                            }
                        </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835
                        )
                    }
                }
            }, {
                name: "Type Of Credit",
                options: {
                    customHeadRender: (columnMeta) => (
                        <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96, borderRight: '1px #fff solid' }}>
                            <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                        </TableCell>
                    ),
                    setCellProps: () => ({ style2 }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        return (
                            <div style={{ textAlign: 'right', width: 90 }}>
d.arizona's avatar
d.arizona committed
1836
                                {tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9 || tableMeta.rowData[0] === 4 ?
Deni Rinaldi's avatar
Deni Rinaldi committed
1837
                                    null :
d.arizona's avatar
d.arizona committed
1838 1839 1840 1841 1842 1843 1844
                                    <Autocomplete
                                    {...this.state.typeOfCreditList}
                                    id="typeOfCreditList"
                                    onChange={(event, newInputValue) => handleChange(newInputValue, tableMeta, tableMeta.columnIndex)}
                                    debug
                                    value={handleValueDropDown(val, 'typeOfCreditList', tableMeta)}
                                    disableClearable
d.arizona's avatar
d.arizona committed
1845
                                    disabled={this.state.get_for == 'view'}
d.arizona's avatar
d.arizona committed
1846 1847 1848 1849
                                    // disabled={!handleAction(tableMeta.rowData[2], tableMeta.rowData[0])}
                                    style={{ padding: 0, margin: 0 }}
                                    renderInput={(params) =>
                                        <div ref={params.InputProps.ref} style={{ padding: 0, margin: 0 }}>
d.arizona's avatar
d.arizona committed
1850
                                            <textarea style={{  borderColor: 'white', width: 96, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? "black" : "#5198ea", backgroundColor: tableMeta.rowData[7] == null  && this.state.get_for == 'edit'? '#ffac99' : 'white' }} type="text" {...params.inputProps} />
d.arizona's avatar
d.arizona committed
1851 1852 1853 1854
                                        </div>
                                    }
                                    />
                                } 
Deni Rinaldi's avatar
Deni Rinaldi committed
1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869
                            </div>
                        )
                    }
                }
            }, {
                name: "Remarks",
                options: {
                    customHeadRender: (columnMeta) => (
                        <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96, borderRight: '1px #fff solid' }}>
                            <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                        </TableCell>
                    ),
                    setCellProps: () => ({ style2 }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        return (
d.arizona's avatar
d.arizona committed
1870
                            <div style={{ textAlign: 'left', width: 90 }}>
1871 1872
                                { tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                 null :
d.arizona's avatar
d.arizona committed
1873
                                <div style={{ padding: 0, margin: 0 }}>
d.arizona's avatar
d.arizona committed
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
                                    <textarea disabled={this.state.get_for == 'view'} style={{  borderColor: 'white', width: 96, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? "black" : "#5198ea", backgroundColor: tableMeta.rowData[8] == '' && this.state.get_for == 'edit'? '#ffac99' : 'white' }} type="text" defaultValue={tableMeta.rowData[8]} 
                                    onBlur={(event) => handleChange(event.target.value, tableMeta, tableMeta.columnIndex)} />
                                </div>
                                // <Input
                                //     disableUnderline={true}
                                //     style={{ fontSize: 12, textAlign: 'center', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                //     type="text"
                                //     disabled={tableMeta.rowData[0] == 8 || tableMeta.rowData[0] == 9 || this.state.get_for == 'view'? true : false}
                                //     defaultValue={tableMeta.rowData[8]}
                                //     // disabled={false}
                                //     multiline={true}
                                //     inputProps={{
                                //         style: {
                                //             color: this.state.get_for == 'view'? "black" : "#5198ea",
                                //             textAlign: 'center',
                                //             backgroundColor: 'white'
                                //         }
                                //     }}
                                // />
d.arizona's avatar
d.arizona committed
1893
                                
d.arizona's avatar
d.arizona committed
1894
                                //  <ThemeProvider theme={theme}>
d.arizona's avatar
d.arizona committed
1895
                                     
d.arizona's avatar
d.arizona committed
1896 1897
                                //     <Input
                                //         disableUnderline={true}
d.arizona's avatar
d.arizona committed
1898
                                //         style={{color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'center', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent', marginBottom: -105 }}
d.arizona's avatar
d.arizona committed
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912
                                //         type="text"
                                //         placeholder=""
                                //         disabled={tableMeta.rowData[0] == 8 || tableMeta.rowData[0] == 9? true : false}
                                //         defaultValue={tableMeta.rowData[8]}
                                //         multiline
                                //         rowsMax={3}
                                //         onBlur={(event) => {
                                //             // // // console.log(event.target.value)
                                //             // updateValue(event.target.value)
                                //             handleChange(event.target.value, tableMeta, tableMeta.columnIndex)
                                //             // // // console.log(dataTable2)
                                //         }}
                                //     />
                                // </ThemeProvider>
1913 1914
                                }
                               
Deni Rinaldi's avatar
Deni Rinaldi committed
1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930
                            </div>
                        )
                    }
                }
            }, {
                name: "Loan Maturity Date",
                options: {
                    customHeadRender: (columnMeta) => (
                        <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96, borderRight: '1px #fff solid' }}>
                            <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                        </TableCell>
                    ),
                    setCellProps: () => ({ style2 }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        return (
                            <div style={{ textAlign: 'right', width: 90 }}>
d.arizona's avatar
d.arizona committed
1931
                                {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] == 8 || tableMeta.rowData[0] == 9?
Deni Rinaldi's avatar
Deni Rinaldi committed
1932
                                    null :
d.arizona's avatar
d.arizona committed
1933 1934 1935 1936 1937 1938
                                    <DatePicker
                                        margin="normal"
                                        id="loanMatureDate"
                                        // label="Valid To"
                                        format="dd-MM-yyyy"
                                        value={val}
d.arizona's avatar
d.arizona committed
1939
                                        disabled={this.state.get_for == 'view'}
d.arizona's avatar
d.arizona committed
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950
                                        onChange={(e) => handleChange(e, tableMeta, tableMeta.columnIndex, 'date')}
                                        // minDate={this.state.startDate}
                                        KeyboardButtonProps={{
                                            'aria-label': 'change date',
                                        }}
                                        inputProps={{
                                            style: {
                                                marginTop: -10,
                                                textAlign: 'center',
                                                fontSize: 11,
                                                fontFamily: 'Nunito Sans, sans-serif',
d.arizona's avatar
d.arizona committed
1951
                                                color: this.state.get_for == 'view'? "black" : '#5198ea',
d.arizona's avatar
d.arizona committed
1952
                                                backgroundColor: (tableMeta.rowData[9] == null || tableMeta.rowData[9] == '') && this.state.get_for == 'edit'? '#ffac99' : 'white'
d.arizona's avatar
d.arizona committed
1953 1954 1955 1956 1957
                                            }
                                        }}
                                        InputLabelProps={{
                                            style: {
                                                fontSize: 11,
d.arizona's avatar
d.arizona committed
1958
                                                color: '#5198ea',
d.arizona's avatar
d.arizona committed
1959 1960 1961 1962 1963 1964
                                                fontFamily: 'Nunito Sans, sans-serif',
                                            }
                                        }}

                                        style={{ padding: 0, margin: 0, width: '100%' }}
                                    />
Deni Rinaldi's avatar
Deni Rinaldi committed
1965 1966 1967 1968 1969 1970
                                }
                            </div>
                        )
                    }
                }
            }, {
d.arizona's avatar
d.arizona committed
1971
                name: "Interest (%)",
Deni Rinaldi's avatar
Deni Rinaldi committed
1972 1973 1974 1975 1976 1977 1978
                options: {
                    customHeadRender: (columnMeta) => (
                        <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96, borderRight: '1px #fff solid' }}>
                            <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                        </TableCell>
                    ),
                    setCellProps: () => ({ style2 }),
d.arizona's avatar
d.arizona committed
1979
                    customBodyRender: (value, tableMeta, updateValue) => {
Deni Rinaldi's avatar
Deni Rinaldi committed
1980
                        return (
d.arizona's avatar
d.arizona committed
1981
                            <div style={{ display: 'flex' }}>
d.arizona's avatar
d.arizona committed
1982
                                {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] == 8 || tableMeta.rowData[0] == 9?
Deni Rinaldi's avatar
Deni Rinaldi committed
1983
                                    null :
d.arizona's avatar
d.arizona committed
1984
                                    <FormControlLabel
d.arizona's avatar
d.arizona committed
1985
                                        style={{ margin: 0}}
d.arizona's avatar
d.arizona committed
1986 1987 1988 1989
                                        value={value}
                                        control={
                                            <NumberFormat
                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
1990
                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: (tableMeta.rowData[10] == '0.00' || tableMeta.rowData[10] == '') && this.state.get_for == 'edit'? '#ffac99' : 'transparent' }}
d.arizona's avatar
d.arizona committed
1991 1992 1993
                                                type="text"
                                                placeholder=""
                                                value={Number(value).toFixed(2)}
d.arizona's avatar
d.arizona committed
1994
                                                disabled={this.state.get_for == 'view'}
d.arizona's avatar
d.arizona committed
1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
                                                // 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)}
                                                decimalScale={2}
                                                onBlur={(event) => {
                                                    // updateValue(event.target.value)
                                                    handleChange(event.target.value, tableMeta, tableMeta.columnIndex)
                                                    // // // // console.log(tableMeta.rowData[0])
                                                }}
                                            />
                                        }
                                    />
                                }
Deni Rinaldi's avatar
Deni Rinaldi committed
2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020
                            </div>
                        )
                    }
                }
            }, {
                name: "Currency",
                options: {
                    customHeadRender: (columnMeta) => (
                        <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96, borderRight: '1px #fff solid' }}>
                            <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                        </TableCell>
                    ),
                    setCellProps: () => ({ style2 }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        return (
d.arizona's avatar
d.arizona committed
2021
                            <div style={{ display: 'flex'}}>
d.arizona's avatar
d.arizona committed
2022
                                {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] == 8 || tableMeta.rowData[0] == 9?
Deni Rinaldi's avatar
Deni Rinaldi committed
2023
                                    null :
d.arizona's avatar
d.arizona committed
2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043
                                    <div style={{ padding: 0, margin: 0 }}>
                                        <textarea disabled={this.state.get_for == 'view'} style={{  borderColor: 'white', width: 96, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? "black" : "#5198ea", backgroundColor: tableMeta.rowData[8] == '' && this.state.get_for == 'edit'? '#ffac99' : 'white' }} type="text" defaultValue={tableMeta.rowData[11]} 
                                        onBlur={(event) => handleChange(event.target.value, tableMeta, tableMeta.columnIndex)} />
                                    </div>
                                    // <ThemeProvider theme={this.state.get_for == 'view'? theme3 : theme2}>
                                    //     <Input
                                    //         disableUnderline={true}
                                    //         style={{ width: 96, color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'center', borderColor: 'transparent', margin: 0, backgroundColor: 'transparent', backgroundColor: tableMeta.rowData[11] == '' && this.state.get_for == 'edit'? '#ffac99' : 'white' }}
                                    //         type="text"
                                    //         placeholder=""
                                    //         disabled={this.state.get_for == 'view'}
                                    //         defaultValue={tableMeta.rowData[11]}
                                    //         onBlur={(event) => {
                                    //             // // // console.log(event.target.value)
                                    //             // updateValue(event.target.value)
                                    //             handleChange(event.target.value, tableMeta, tableMeta.columnIndex)
                                    //             // // // console.log(dataTable2)
                                    //         }}
                                    //     />
                                    // </ThemeProvider>
Deni Rinaldi's avatar
Deni Rinaldi committed
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058
                                }
                            </div>
                        )
                    }
                }
            }, {
                name: `Loan Plafond`,
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >
                            {/* <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
                                  <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                              </TableCell> */}
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5 }}>{columnMeta.name}</div>
                            <div className="grid grid-2x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
r.kurnia's avatar
r.kurnia committed
2059
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, borderRight: "1px #fff solid", backgroundColor: '#07a7d0' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2060 2061
                                    <span>{"Amount Original (Currency)"}</span>
                                </div>
r.kurnia's avatar
r.kurnia committed
2062
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, backgroundColor: '#07a7d0' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074
                                    <span>{"Amount (IDR Equivalent)"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
r.kurnia's avatar
r.kurnia committed
2075
                        // console.log(tableMeta);
Deni Rinaldi's avatar
Deni Rinaldi committed
2076 2077
                        return (
                            <div>
r.kurnia's avatar
r.kurnia committed
2078
                                <div className="grid grid-2x content-center">
Deni Rinaldi's avatar
Deni Rinaldi committed
2079 2080 2081 2082
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2083 2084 2085 2086 2087 2088 2089 2090
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2091
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2092 2093 2094 2095 2096 2097 2098 2099 2100
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[12], tableMeta, 12)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2101 2102 2103 2104 2105 2106 2107
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2108
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2109 2110
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
2111
                                                                disabled={this.state.get_for == 'view'}
d.arizona's avatar
d.arizona committed
2112
                                                                value={Number(tableMeta.rowData[12]).toFixed(1) == 0.0 ? "0.0" : Number(tableMeta.rowData[12]).toFixed(1)}
d.arizona's avatar
d.arizona committed
2113 2114 2115 2116
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 12)
                                                                }}
                                                                
faisalhamdi's avatar
faisalhamdi committed
2117 2118 2119 2120
                                                            />
                                                        }
                                                    />
                                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2121 2122 2123 2124 2125 2126 2127
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2128 2129 2130 2131 2132 2133 2134 2135
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2136
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2137 2138 2139 2140 2141 2142 2143 2144 2145
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[13], tableMeta, 13)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2146 2147 2148
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
d.arizona's avatar
d.arizona committed
2149
                                                        // value={val}
faisalhamdi's avatar
faisalhamdi committed
2150 2151 2152
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2153
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2154 2155
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
2156
                                                                disabled={this.state.get_for == 'view'}
Deni Rinaldi's avatar
Deni Rinaldi committed
2157
                                                                value={Number(tableMeta.rowData[13]).toFixed(1)}
d.arizona's avatar
d.arizona committed
2158 2159 2160 2161
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 13)
                                                                }}
                                                                
faisalhamdi's avatar
faisalhamdi committed
2162 2163 2164 2165
                                                            />
                                                        }
                                                    />
                                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            }, {
                name: `Outstanding Loan (KI)`,
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >
                            {/* <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
                                  <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                              </TableCell> */}
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5 }}>{columnMeta.name}</div>
                            <div className="grid grid-2x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
r.kurnia's avatar
r.kurnia committed
2184
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, borderRight: "1px #fff solid", backgroundColor: '#07a7d0' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2185 2186
                                    <span>{"Amount Original (Currency)"}</span>
                                </div>
r.kurnia's avatar
r.kurnia committed
2187
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, backgroundColor: '#07a7d0' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201
                                    <span>{"Amount (IDR Equivalent)"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
Deni Rinaldi's avatar
Deni Rinaldi committed
2202
                            <div>
r.kurnia's avatar
r.kurnia committed
2203
                                <div className="grid grid-2x content-center">
Deni Rinaldi's avatar
Deni Rinaldi committed
2204 2205 2206 2207
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2208 2209 2210 2211 2212 2213 2214 2215
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2216
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2217 2218 2219 2220 2221 2222 2223 2224 2225
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[14], tableMeta, 14)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2226 2227 2228
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
d.arizona's avatar
d.arizona committed
2229
                                                        // value={val}
faisalhamdi's avatar
faisalhamdi committed
2230 2231 2232
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2233
                                                                style={{ color: this.state.get_for == 'view'? "black" : (tableMeta.rowData[7] == null? "black" : tableMeta.rowData[7].value == 'Investment Loan'? "#5198ea" : "black"), fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2234 2235
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
2236
                                                                disabled={this.state.get_for == 'view'? true : tableMeta.rowData[7] == null? true : tableMeta.rowData[7].value == 'Investment Loan'? false : true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2237
                                                                value={Number(tableMeta.rowData[14]).toFixed(1)}
d.arizona's avatar
d.arizona committed
2238 2239 2240
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 14)
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
2241 2242 2243 2244
                                                            />
                                                        }
                                                    />
                                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2245 2246 2247 2248 2249 2250 2251
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2252 2253 2254 2255 2256 2257 2258 2259
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2260
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2261 2262 2263 2264 2265 2266 2267 2268 2269
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[15], tableMeta, 15)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2270 2271 2272 2273 2274 2275 2276
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2277
                                                                style={{ color: this.state.get_for == 'view'? "black" : (tableMeta.rowData[7] == null? "black" : tableMeta.rowData[7].value == 'Investment Loan'? "#5198ea" : "black"), fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2278 2279
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
2280
                                                                disabled={this.state.get_for == 'view'? true : tableMeta.rowData[7] == null? true : tableMeta.rowData[7].value == 'Investment Loan'? false : true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2281
                                                                value={Number(tableMeta.rowData[15]).toFixed(1)}
d.arizona's avatar
d.arizona committed
2282 2283 2284
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 15)
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
2285 2286 2287 2288
                                                            />
                                                        }
                                                    />
                                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            }, {
                name: `Outstanding Loan (KMK)`,
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >
                            {/* <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
                                  <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                              </TableCell> */}
faisalhamdi's avatar
faisalhamdi committed
2305
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2306
                            <div className="grid grid-2x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
r.kurnia's avatar
r.kurnia committed
2307
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, borderRight: "1px #fff solid", backgroundColor: '#07a7d0' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2308 2309
                                    <span>{"Amount Original (Currency)"}</span>
                                </div>
r.kurnia's avatar
r.kurnia committed
2310
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, backgroundColor: '#07a7d0' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325
                                    <span>{"Amount (IDR Equivalent)"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
r.kurnia's avatar
r.kurnia committed
2326
                                <div className="grid grid-2x content-center">
Deni Rinaldi's avatar
Deni Rinaldi committed
2327 2328 2329 2330
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2331 2332 2333 2334 2335 2336 2337 2338
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2339
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2340 2341 2342 2343 2344 2345 2346 2347 2348
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[16], tableMeta, 16)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2349 2350 2351 2352 2353 2354 2355
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2356
                                                                style={{ color: this.state.get_for == 'view'? "black" : (tableMeta.rowData[7] == null? "black" : tableMeta.rowData[7].value == 'Revolving Loan (KMK)'? "#5198ea" : "black"), fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2357 2358
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
2359
                                                                disabled={this.state.get_for == 'view'? true : tableMeta.rowData[7] == null? true : tableMeta.rowData[7].value == 'Revolving Loan (KMK)'? false : true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2360
                                                                value={Number(tableMeta.rowData[16]).toFixed(1)}
d.arizona's avatar
d.arizona committed
2361 2362 2363
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 16)
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
2364 2365 2366 2367
                                                            />
                                                        }
                                                    />
                                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2368 2369 2370 2371 2372 2373 2374
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2375 2376 2377 2378 2379 2380 2381 2382
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2383
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2384 2385 2386 2387 2388 2389 2390 2391 2392
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[17], tableMeta, 17)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2393 2394 2395 2396 2397 2398 2399
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2400
                                                                style={{ color: this.state.get_for == 'view'? "black" : (tableMeta.rowData[7] == null? "black" : tableMeta.rowData[7].value == 'Revolving Loan (KMK)'? "#5198ea" : "black"), fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2401 2402
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
2403
                                                                disabled={this.state.get_for == 'view'? true : tableMeta.rowData[7] == null? true : tableMeta.rowData[7].value == 'Revolving Loan (KMK)'? false : true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2404
                                                                value={Number(tableMeta.rowData[17]).toFixed(1)}
d.arizona's avatar
d.arizona committed
2405 2406 2407
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 17)
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
2408 2409 2410 2411
                                                            />
                                                        }
                                                    />
                                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            }, {
                name: `Outstanding Loan (Others)`,
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >
                            {/* <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#1c71b8', width: 96 }}>
                                  <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                              </TableCell> */}
faisalhamdi's avatar
faisalhamdi committed
2428
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
r.kurnia's avatar
r.kurnia committed
2429 2430
                            <div className="grid grid-3x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky", backgroundColor: '#07a7d0' }}>
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6 }}>
faisalhamdi's avatar
faisalhamdi committed
2431 2432
                                    <span>{"Type"}</span>
                                </div>
r.kurnia's avatar
r.kurnia committed
2433
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, borderLeft: "1px #fff solid", borderRight: "1px #fff solid" }}>
faisalhamdi's avatar
faisalhamdi committed
2434 2435
                                    <span>{"Amount Original (Currency)"}</span>
                                </div>
r.kurnia's avatar
r.kurnia committed
2436
                                <div className="column-3" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, width: 120 }}>
faisalhamdi's avatar
faisalhamdi committed
2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451
                                    <span>{"Amount (IDR Equivalent)"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
d.arizona's avatar
d.arizona committed
2452
                                <div className="grid grid-3x content-center" style={{alignItems: 'center'}}>
faisalhamdi's avatar
faisalhamdi committed
2453 2454 2455 2456
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2457
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
d.arizona's avatar
d.arizona committed
2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474
                                                null
                                                    // <div style={{ flex: 1 }}>
                                                    //     <FormControlLabel
                                                    //         style={{ margin: 0 }}
                                                    //         value={val}
                                                    //         control={
                                                    //             <NumberFormat
                                                    //                 thousandSeparator={true}
                                                    //                 style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                    //                 type="text"
                                                    //                 placeholder=""
                                                    //                 disabled={true}
                                                    //                 value={tableMeta.rowData[18]}
                                                    //             />
                                                    //         }
                                                    //     />
                                                    // </div>
2475
                                                :
d.arizona's avatar
d.arizona committed
2476
                                                <div style={{ padding: 0, margin: 0 }}>
2477
                                                    <textarea disabled={this.state.get_for == 'view'? true : tableMeta.rowData[7] == null? true : tableMeta.rowData[7].value == 'Others'? false : true} style={{  borderColor: 'white', width: 96, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? 'black' : tableMeta.rowData[7] == null? 'black' : tableMeta.rowData[7].value == 'Others'? '#5198ea' : 'black' , backgroundColor: this.state.get_for == 'view'? 'white' : tableMeta.rowData[7] == null? 'white' : (tableMeta.rowData[18] == '' && tableMeta.rowData[7].value == 'Others' ? '#ffac99' : 'white') }} type="text" defaultValue={tableMeta.rowData[18]} 
d.arizona's avatar
d.arizona committed
2478
                                                    onBlur={(event) => handleChange(event.target.value, tableMeta, 18)} />
faisalhamdi's avatar
faisalhamdi committed
2479 2480 2481 2482 2483 2484 2485 2486
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2487 2488 2489 2490 2491 2492 2493 2494
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2495
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2496 2497 2498
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
d.arizona's avatar
d.arizona committed
2499
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[19], tableMeta, 19)).toFixed(1)}
2500 2501 2502 2503 2504
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2505 2506 2507 2508 2509 2510 2511
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2512
                                                                style={{ color: this.state.get_for == 'view'? "black" : (tableMeta.rowData[7] == null? "black" : tableMeta.rowData[7].value == 'Others'? "#5198ea" : "black"), fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2513 2514
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
2515
                                                                disabled={this.state.get_for == 'view'? true : tableMeta.rowData[7] == null? true : tableMeta.rowData[7].value == 'Others'? false : true}
d.arizona's avatar
d.arizona committed
2516
                                                                value={Number(tableMeta.rowData[19]).toFixed(1)}
d.arizona's avatar
d.arizona committed
2517
                                                                onBlur={(event) => {
d.arizona's avatar
d.arizona committed
2518
                                                                    handleChange(event.target.value, tableMeta, 19)
d.arizona's avatar
d.arizona committed
2519
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-3">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
d.arizona's avatar
d.arizona committed
2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[20], tableMeta, 20)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2549 2550 2551 2552 2553 2554 2555
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2556
                                                                style={{ color: this.state.get_for == 'view'? "black" : (tableMeta.rowData[7] == null? "black" : tableMeta.rowData[7].value == 'Others'? "#5198ea" : "black"), fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
2557 2558
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
2559
                                                                disabled={this.state.get_for == 'view'? true : tableMeta.rowData[7] == null? true : tableMeta.rowData[7].value == 'Others'? false : true}
Deni Rinaldi's avatar
Deni Rinaldi committed
2560
                                                                value={Number(tableMeta.rowData[20]).toFixed(1)}
d.arizona's avatar
d.arizona committed
2561 2562 2563
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 20)
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            },  {
                name: `Total Outstanding Loan`,
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
                            <div className="grid grid-2x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
r.kurnia's avatar
r.kurnia committed
2583
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, borderRight: "1px #fff solid", backgroundColor: '#07a7d0' }}>
faisalhamdi's avatar
faisalhamdi committed
2584 2585
                                    <span>{"Amount Original (Currency)"}</span>
                                </div>
r.kurnia's avatar
r.kurnia committed
2586
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, backgroundColor: '#07a7d0' }}>
faisalhamdi's avatar
faisalhamdi committed
2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601
                                    <span>{"Amount (IDR Equivalent)"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
r.kurnia's avatar
r.kurnia committed
2602
                                <div className="grid grid-2x content-center">
faisalhamdi's avatar
faisalhamdi committed
2603 2604 2605 2606
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2607 2608 2609 2610 2611 2612 2613 2614
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2615
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2616 2617 2618 2619 2620 2621 2622 2623 2624
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[21], tableMeta, 21)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={true}
d.arizona's avatar
d.arizona committed
2636
                                                                value={(Number(handleFormulaHardcode(tableMeta.rowData[21], tableMeta, 21)).toFixed(1))}
faisalhamdi's avatar
faisalhamdi committed
2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2648 2649 2650 2651 2652 2653 2654 2655
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2656
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2657 2658 2659 2660 2661 2662 2663 2664 2665
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[22], tableMeta, 22)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={true}
d.arizona's avatar
d.arizona committed
2677
                                                                value={(Number(handleFormulaHardcode(tableMeta.rowData[22], tableMeta, 22)).toFixed(1))}
faisalhamdi's avatar
faisalhamdi committed
2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            },  {
                name: `Remaining Plafond`,
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2696
                            <div className="grid grid-2x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
r.kurnia's avatar
r.kurnia committed
2697
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, borderRight: "1px #fff solid", backgroundColor: '#07a7d0' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2698 2699
                                    <span>{"Amount Original (Currency)"}</span>
                                </div>
r.kurnia's avatar
r.kurnia committed
2700
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', padding: 5, paddingBottom: dataTable2.length == 0 ? 5 : 6, backgroundColor: '#07a7d0' }}>
Deni Rinaldi's avatar
Deni Rinaldi committed
2701 2702
                                    <span>{"Amount (IDR Equivalent)"}</span>
                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2703
                            </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
r.kurnia's avatar
r.kurnia committed
2716
                                <div className="grid grid-2x content-center">
Deni Rinaldi's avatar
Deni Rinaldi committed
2717 2718 2719 2720
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2721 2722 2723 2724 2725 2726 2727 2728
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2729
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2730 2731 2732 2733 2734 2735 2736 2737 2738
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[23], tableMeta, 23)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={true}
d.arizona's avatar
d.arizona committed
2750
                                                                value={(Number(handleFormulaHardcode(tableMeta.rowData[23], tableMeta, 23)).toFixed(1))}
faisalhamdi's avatar
faisalhamdi committed
2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
                                            {tableMeta.rowData[0] === 4 ?
                                                null :
2762 2763 2764 2765 2766 2767 2768 2769
                                                tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                                    <div style={{ flex: 1 }}>
                                                        <FormControlLabel
                                                            style={{ margin: 0 }}
                                                            value={val}
                                                            control={
                                                                <NumberFormat
                                                                    thousandSeparator={true}
d.arizona's avatar
d.arizona committed
2770
                                                                    style={{ color: "black", fontSize: 12, textAlign: 'right', fontWeight: 'bold', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
2771 2772 2773 2774 2775 2776 2777 2778 2779
                                                                    type="text"
                                                                    placeholder=""
                                                                    disabled={true}
                                                                    value={Number(handleFormulaHardcode(tableMeta.rowData[24], tableMeta, 24)).toFixed(1)}
                                                                />
                                                            }
                                                        />
                                                    </div>
                                                :
faisalhamdi's avatar
faisalhamdi committed
2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={true}
d.arizona's avatar
d.arizona committed
2791
                                                                value={(Number(handleFormulaHardcode(tableMeta.rowData[24], tableMeta, 24)).toFixed(1))}
faisalhamdi's avatar
faisalhamdi committed
2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
r.kurnia's avatar
r.kurnia committed
2804
            },  {
d.arizona's avatar
d.arizona committed
2805
                name: `Current Ratio`,
faisalhamdi's avatar
faisalhamdi committed
2806
                options: {
d.arizona's avatar
d.arizona committed
2807 2808 2809 2810
                    customHeadRender: (columnMeta, tableMeta) => {
                        // console.log(columnMeta)
                        // console.log(tableMeta)
                        return (                      
d.arizona's avatar
d.arizona committed
2811
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
faisalhamdi's avatar
faisalhamdi committed
2812 2813
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
                            <div className="grid grid-2x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
d.arizona's avatar
d.arizona committed
2814
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", height: 43, display: 'grid', alignItems: 'center', backgroundColor: '#07a7d0', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 14 : 6 }}>
faisalhamdi's avatar
faisalhamdi committed
2815 2816
                                    <span>{"Financial Covenant"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
2817
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 14 : 6 }}>
faisalhamdi's avatar
faisalhamdi committed
2818 2819 2820 2821
                                    <span>{"Current Testing"}</span>
                                </div>
                            </div>
                        </th>
d.arizona's avatar
d.arizona committed
2822 2823
                        )
                    },
faisalhamdi's avatar
faisalhamdi committed
2824 2825 2826 2827 2828 2829 2830 2831 2832 2833
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
r.kurnia's avatar
r.kurnia committed
2834
                                <div className="grid grid-2x content-center">
faisalhamdi's avatar
faisalhamdi committed
2835 2836
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
2837
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
2838 2839
                                                null :
                                                <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={this.state.get_for == 'view'}
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[25]).toFixed(2)}
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 25)
                                                                }}
                                                            />
                                                        }
                                                    />
faisalhamdi's avatar
faisalhamdi committed
2859 2860 2861 2862 2863 2864
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
2865
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877
                                                null :
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={true}
d.arizona's avatar
d.arizona committed
2878
                                                                value={Number(handleTableRatio(tableMeta.rowData[26], tableMeta, 26, "Current Ratio")).toFixed(2)}
faisalhamdi's avatar
faisalhamdi committed
2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            },  {
d.arizona's avatar
d.arizona committed
2892
                name: `DER`,
faisalhamdi's avatar
faisalhamdi committed
2893 2894 2895 2896 2897
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
                            <div className="grid grid-2x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
d.arizona's avatar
d.arizona committed
2898
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", height: 43, display: 'grid', alignItems: 'center', backgroundColor: '#07a7d0', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 14 : 6 }}>
faisalhamdi's avatar
faisalhamdi committed
2899 2900
                                    <span>{"Financial Covenant"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
2901
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 14 : 6 }}>
faisalhamdi's avatar
faisalhamdi committed
2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916
                                    <span>{"Current Testing"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
r.kurnia's avatar
r.kurnia committed
2917
                                <div className="grid grid-2x content-center">
faisalhamdi's avatar
faisalhamdi committed
2918 2919
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
2920
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
2921 2922
                                                null :
                                                <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={this.state.get_for == 'view'}
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[27]).toFixed(2)}
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 27)
                                                                }}
                                                            />
                                                        }
                                                    />
faisalhamdi's avatar
faisalhamdi committed
2942
                                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2943 2944 2945 2946 2947
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
2948
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
Deni Rinaldi's avatar
Deni Rinaldi committed
2949
                                                null :
faisalhamdi's avatar
faisalhamdi committed
2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={true}
d.arizona's avatar
d.arizona committed
2961
                                                                value={Number(handleTableRatio(tableMeta.rowData[28], tableMeta, 28, "Debt to Equity Ratio")).toFixed(2)}
faisalhamdi's avatar
faisalhamdi committed
2962 2963 2964 2965
                                                            />
                                                        }
                                                    />
                                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
2966 2967 2968 2969 2970 2971 2972 2973
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
faisalhamdi's avatar
faisalhamdi committed
2974
            },  {
d.arizona's avatar
d.arizona committed
2975
                name: `Debt to EBITDA`,
faisalhamdi's avatar
faisalhamdi committed
2976 2977 2978 2979 2980
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
                            <div className="grid grid-2x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
d.arizona's avatar
d.arizona committed
2981
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", height: 43, display: 'grid', alignItems: 'center', backgroundColor: '#07a7d0', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 14 : 6 }}>
faisalhamdi's avatar
faisalhamdi committed
2982 2983
                                    <span>{"Financial Covenant"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
2984
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 14 : 6 }}>
faisalhamdi's avatar
faisalhamdi committed
2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999
                                    <span>{"Current Testing"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
r.kurnia's avatar
r.kurnia committed
3000
                                <div className="grid grid-2x content-center">
faisalhamdi's avatar
faisalhamdi committed
3001 3002
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3003
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3004 3005
                                                null :
                                                <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={this.state.get_for == 'view'}
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[29]).toFixed(2)}
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 29)
                                                                }}
                                                            />
                                                        }
                                                    />
faisalhamdi's avatar
faisalhamdi committed
3025 3026 3027 3028 3029 3030
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3031
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043
                                                null :
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={true}
d.arizona's avatar
d.arizona committed
3044
                                                                value={Number(handleTableRatio(tableMeta.rowData[30], tableMeta, 30, "Debt to EBITDA - YTD")).toFixed(2)}
faisalhamdi's avatar
faisalhamdi committed
3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            },  {
d.arizona's avatar
d.arizona committed
3058
                name: `EBITDA to Interest (ISCR)`,
faisalhamdi's avatar
faisalhamdi committed
3059 3060 3061 3062
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
d.arizona's avatar
d.arizona committed
3063
                            <div className="grid grid-2x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
d.arizona's avatar
d.arizona committed
3064
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", height: 43, display: 'grid', alignItems: 'center', backgroundColor: '#07a7d0', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 14 : 6 }}>
faisalhamdi's avatar
faisalhamdi committed
3065 3066
                                    <span>{"Financial Covenant"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
3067
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 14 : 6 }}>
faisalhamdi's avatar
faisalhamdi committed
3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082
                                    <span>{"Current Testing"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
d.arizona's avatar
d.arizona committed
3083
                                <div className="grid grid-2x content-center">
faisalhamdi's avatar
faisalhamdi committed
3084 3085
                                    <div className="col-1">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3086
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3087 3088
                                                null :
                                                <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={this.state.get_for == 'view'}
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[31]).toFixed(2)}
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 31)
                                                                }}
                                                            />
                                                        }
                                                    />
faisalhamdi's avatar
faisalhamdi committed
3108 3109 3110 3111 3112 3113
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3114
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126
                                                null :
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={true}
d.arizona's avatar
d.arizona committed
3127
                                                                value={Number(handleTableRatio(tableMeta.rowData[32], tableMeta, 32, "EBITDA to Interest - YTD")).toFixed(2)}
faisalhamdi's avatar
faisalhamdi committed
3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            },  {
d.arizona's avatar
d.arizona committed
3141
                name: `Other Ratio 1`,
faisalhamdi's avatar
faisalhamdi committed
3142 3143 3144 3145
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
r.kurnia's avatar
r.kurnia committed
3146
                            <div className="grid grid-3x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
d.arizona's avatar
d.arizona committed
3147
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3148 3149
                                    <span>{"Ratio Name"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
3150
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3151 3152
                                    <span>{"Financial Covenant"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
3153
                                <div className="column-3" style={{ placeSelf: 'center', textAlign: 'center', backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168
                                    <span>{"Current Testing"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
d.arizona's avatar
d.arizona committed
3169
                                <div className="grid grid-3x content-center" style={{alignItems: 'center'}}>
faisalhamdi's avatar
faisalhamdi committed
3170
                                    <div className="col-1">
d.arizona's avatar
d.arizona committed
3171
                                        <div style={{ textAlign: 'left', width: 90 }}>
3172
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3173
                                                null :
d.arizona's avatar
d.arizona committed
3174
                                                // <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195
                                                <div style={{ padding: 0, margin: 0 }}>
                                                    <textarea disabled={this.state.get_for == 'view'} style={{  borderColor: 'white', width: 96, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? "black" : "#5198ea", backgroundColor: 'transparent' }} type="text" defaultValue={tableMeta.rowData[33]} 
                                                    onBlur={(event) => handleChange(event.target.value, tableMeta, 33)} />
                                                </div>
                                                    // <ThemeProvider theme={this.state.get_for == 'view'? theme3 : theme}>
                                                    //     <Input
                                                    //         disableUnderline={true}
                                                    //         style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'left', borderColor: 'transparent', margin: 0, backgroundColor: 'transparent' }}
                                                    //         type="text"
                                                    //         placeholder=""
                                                    //         disabled={this.state.get_for == 'view'}
                                                    //         defaultValue={tableMeta.rowData[33]}
                                                    //         multiline={true}
                                                    //         onBlur={(event) => {
                                                    //             // // // console.log(event.target.value)
                                                    //             // updateValue(event.target.value)
                                                    //             handleChange(event.target.value, tableMeta, 33)
                                                    //             // // // console.log(dataTable2)
                                                    //         }}
                                                    //     />
                                                    // </ThemeProvider>
d.arizona's avatar
d.arizona committed
3196
                                                // </div>
faisalhamdi's avatar
faisalhamdi committed
3197 3198 3199 3200 3201
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3202
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3203 3204
                                                null :
                                                <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={this.state.get_for == 'view'}
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[34]).toFixed(2)}
                                                                onBlur={(event) => {
d.arizona's avatar
d.arizona committed
3219
                                                                    handleChange(event.target.value, tableMeta, 34)
d.arizona's avatar
d.arizona committed
3220 3221 3222 3223
                                                                }}
                                                            />
                                                        }
                                                    />
faisalhamdi's avatar
faisalhamdi committed
3224 3225 3226 3227 3228 3229
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-3">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3230
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3231 3232 3233 3234 3235 3236 3237 3238
                                                null :
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
3239
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
3240 3241
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
3242
                                                                disabled={this.state.get_for == 'view'}
d.arizona's avatar
d.arizona committed
3243 3244 3245
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[35]).toFixed(2)}
d.arizona's avatar
d.arizona committed
3246 3247 3248
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 35)
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            },  {
                name: `Other Ratio 2`,
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
r.kurnia's avatar
r.kurnia committed
3267
                            <div className="grid grid-3x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
d.arizona's avatar
d.arizona committed
3268
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3269 3270
                                    <span>{"Ratio Name"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
3271
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3272 3273
                                    <span>{"Financial Covenant"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
3274
                                <div className="column-3" style={{ placeSelf: 'center', textAlign: 'center', backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289
                                    <span>{"Current Testing"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
d.arizona's avatar
d.arizona committed
3290
                                <div className="grid grid-3x content-center" style={{alignItems: 'center'}}>
faisalhamdi's avatar
faisalhamdi committed
3291
                                    <div className="col-1">
d.arizona's avatar
d.arizona committed
3292
                                        <div style={{ textAlign: 'left', width: 90 }}>
3293
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3294
                                                null :
d.arizona's avatar
d.arizona committed
3295 3296 3297 3298
                                                <div style={{ padding: 0, margin: 0 }}>
                                                    <textarea disabled={this.state.get_for == 'view'} style={{  borderColor: 'white', width: 96, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? "black" : "#5198ea", backgroundColor: 'transparent' }} type="text" defaultValue={tableMeta.rowData[36]} 
                                                    onBlur={(event) => handleChange(event.target.value, tableMeta, 36)} />
                                                </div>
d.arizona's avatar
d.arizona committed
3299
                                                // <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316
                                                    // <ThemeProvider theme={this.state.get_for == 'view'? theme3 : theme}>
                                                    //     <Input
                                                    //         disableUnderline={true}
                                                    //         style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'left', borderColor: 'transparent', margin: 0, backgroundColor: 'transparent' }}
                                                    //         type="text"
                                                    //         placeholder=""
                                                    //         disabled={this.state.get_for == 'view'}
                                                    //         defaultValue={tableMeta.rowData[36]}
                                                    //         multiline={true}
                                                    //         onBlur={(event) => {
                                                    //             // // // console.log(event.target.value)
                                                    //             // updateValue(event.target.value)
                                                    //             handleChange(event.target.value, tableMeta, 36)
                                                    //             // // // console.log(dataTable2)
                                                    //         }}
                                                    //     />
                                                    // </ThemeProvider>
d.arizona's avatar
d.arizona committed
3317
                                                // </div>
faisalhamdi's avatar
faisalhamdi committed
3318 3319 3320 3321 3322
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3323
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3324 3325
                                                null :
                                                <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={this.state.get_for == 'view'}
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[37]).toFixed(2)}
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 37)
                                                                }}
                                                            />
                                                        }
                                                    />
faisalhamdi's avatar
faisalhamdi committed
3345 3346 3347 3348 3349 3350
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-3">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3351
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3352 3353 3354 3355 3356 3357 3358 3359
                                                null :
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
3360
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
3361 3362
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
3363
                                                                disabled={this.state.get_for == 'view'}
d.arizona's avatar
d.arizona committed
3364 3365 3366
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[38]).toFixed(2)}
d.arizona's avatar
d.arizona committed
3367
                                                                onBlur={(event) => {
d.arizona's avatar
d.arizona committed
3368
                                                                    handleChange(event.target.value, tableMeta, 38)
d.arizona's avatar
d.arizona committed
3369
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            },  {
                name: `Other Ratio 3`,
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
r.kurnia's avatar
r.kurnia committed
3388
                            <div className="grid grid-3x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
d.arizona's avatar
d.arizona committed
3389
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3390 3391
                                    <span>{"Ratio Name"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
3392
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3393 3394
                                    <span>{"Financial Covenant"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
3395
                                <div className="column-3" style={{ placeSelf: 'center', textAlign: 'center', backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410
                                    <span>{"Current Testing"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
d.arizona's avatar
d.arizona committed
3411
                                <div className="grid grid-3x content-center" style={{alignItems: 'center'}}>
faisalhamdi's avatar
faisalhamdi committed
3412
                                    <div className="col-1">
d.arizona's avatar
d.arizona committed
3413
                                        <div style={{ textAlign: 'left', width: 90 }}>
3414
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3415
                                                null :
d.arizona's avatar
d.arizona committed
3416 3417 3418 3419
                                                <div style={{ padding: 0, margin: 0 }}>
                                                    <textarea disabled={this.state.get_for == 'view'} style={{  borderColor: 'white', width: 96, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? "black" : "#5198ea", backgroundColor: 'transparent' }} type="text" defaultValue={tableMeta.rowData[39]} 
                                                    onBlur={(event) => handleChange(event.target.value, tableMeta, 39)} />
                                                </div>
d.arizona's avatar
d.arizona committed
3420
                                                // <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437
                                                    // <ThemeProvider theme={this.state.get_for == 'view'? theme3 : theme}>
                                                    //     <Input
                                                    //         disableUnderline={true}
                                                    //         style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'left', borderColor: 'transparent', margin: 0, backgroundColor: 'transparent' }}
                                                    //         type="text"
                                                    //         placeholder=""
                                                    //         disabled={this.state.get_for == 'view'}
                                                    //         multiline={true}
                                                    //         defaultValue={tableMeta.rowData[39]}
                                                    //         onBlur={(event) => {
                                                    //             // // // console.log(event.target.value)
                                                    //             // updateValue(event.target.value)
                                                    //             handleChange(event.target.value, tableMeta, 39)
                                                    //             // // // console.log(dataTable2)
                                                    //         }}
                                                    //     />
                                                    // </ThemeProvider>
d.arizona's avatar
d.arizona committed
3438
                                                // </div>
faisalhamdi's avatar
faisalhamdi committed
3439 3440 3441 3442 3443
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3444
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3445 3446
                                                null :
                                                <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={this.state.get_for == 'view'}
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[40]).toFixed(2)}
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 40)
                                                                }}
                                                            />
                                                        }
                                                    />
faisalhamdi's avatar
faisalhamdi committed
3466 3467 3468 3469 3470 3471
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-3">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3472
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3473 3474 3475 3476 3477 3478 3479 3480
                                                null :
                                                <div style={{ flex: 1 }}>
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
3481
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
3482 3483
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
3484
                                                                disabled={this.state.get_for == 'view'}
d.arizona's avatar
d.arizona committed
3485 3486 3487
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[41]).toFixed(2)}
d.arizona's avatar
d.arizona committed
3488
                                                                onBlur={(event) => {
d.arizona's avatar
d.arizona committed
3489
                                                                    handleChange(event.target.value, tableMeta, 41)
d.arizona's avatar
d.arizona committed
3490
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508
                                                            />
                                                        }
                                                    />
                                                </div>
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            },  {
                name: `Other Ratio 4`,
                options: {
                    customHeadRender: (columnMeta) => (
                        <th style={{ ...style2, color: '#fff', backgroundColor: '#1c71b8', fontSize: 13, fontWeight: 1, width: 150, borderRight: "1px solid rgb(255, 255, 255)", padding: 0 }} >                           
                            <div style={{ borderBottom: "1px #fff solid", backgroundColor: '#1c71b8', justifyContent: 'center', display: 'flex', alignItems: 'center', height: 43, fontSize: 12, fontWeight: 'bold', padding: 5, textAlign: 'center' }}>{columnMeta.name}</div>
r.kurnia's avatar
r.kurnia committed
3509
                            <div className="grid grid-3x" style={{ ...style2, color: '#fff', fontSize: 12, fontWeight: 'bold', position: "sticky" }}>
d.arizona's avatar
d.arizona committed
3510
                                <div className="column-1" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3511 3512
                                    <span>{"Ratio Name"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
3513
                                <div className="column-2" style={{ placeSelf: 'center', textAlign: 'center', borderRight: "1px #fff solid", backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3514 3515
                                    <span>{"Financial Covenant"}</span>
                                </div>
d.arizona's avatar
d.arizona committed
3516
                                <div className="column-3" style={{ placeSelf: 'center', textAlign: 'center', backgroundColor: '#07a7d0', height: 43, display: 'grid', alignItems: 'center', padding: dataTable2.length == 0 ? 13 : 5, paddingBottom: dataTable2.length == 0 ? 48 : 5 }}>
faisalhamdi's avatar
faisalhamdi committed
3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531
                                    <span>{"Current Testing"}</span>
                                </div>
                            </div>
                        </th>
                    ),
                    setCellProps: () => ({
                        style: {
                            paddingLeft: 0,
                            paddingRight: 0
                        }
                    }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        // console.log(tableMeta);
                        return (
                            <div>
d.arizona's avatar
d.arizona committed
3532
                                <div className="grid grid-3x content-center" style={{alignItems: 'center'}}>
faisalhamdi's avatar
faisalhamdi committed
3533
                                    <div className="col-1">
d.arizona's avatar
d.arizona committed
3534
                                        <div style={{ textAlign: 'left', width: 90 }}>
3535
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3536
                                                null :
d.arizona's avatar
d.arizona committed
3537 3538 3539 3540
                                                <div style={{ padding: 0, margin: 0 }}>
                                                    <textarea disabled={this.state.get_for == 'view'} style={{  borderColor: 'white', width: 96, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? "black" : "#5198ea", backgroundColor: 'transparent' }} type="text" defaultValue={tableMeta.rowData[42]} 
                                                    onBlur={(event) => handleChange(event.target.value, tableMeta, 42)} />
                                                </div>
d.arizona's avatar
d.arizona committed
3541
                                                // <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558
                                                    // <ThemeProvider theme={this.state.get_for == 'view'? theme3 : theme}>
                                                    //     <Input
                                                    //         disableUnderline={true}
                                                    //         style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'left', borderColor: 'transparent', margin: 0, backgroundColor: 'transparent' }}
                                                    //         type="text"
                                                    //         placeholder=""
                                                    //         disabled={this.state.get_for == 'view'}
                                                    //         multiline={true}
                                                    //         defaultValue={tableMeta.rowData[42]}
                                                    //         onBlur={(event) => {
                                                    //             // // // console.log(event.target.value)
                                                    //             // updateValue(event.target.value)
                                                    //             handleChange(event.target.value, tableMeta, 42)
                                                    //             // // // console.log(dataTable2)
                                                    //         }}
                                                    //     />
                                                    // </ThemeProvider>
d.arizona's avatar
d.arizona committed
3559
                                                // </div>
faisalhamdi's avatar
faisalhamdi committed
3560 3561 3562 3563 3564
                                            }
                                        </div>
                                    </div>
                                    <div className="col-2">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3565
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3566 3567
                                                null :
                                                <div style={{ flex: 1 }}>
d.arizona's avatar
d.arizona committed
3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
                                                                type="text"
                                                                placeholder=""
                                                                disabled={this.state.get_for == 'view'}
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[43]).toFixed(2)}
                                                                onBlur={(event) => {
                                                                    handleChange(event.target.value, tableMeta, 43)
                                                                }}
                                                            />
                                                        }
                                                    />
faisalhamdi's avatar
faisalhamdi committed
3587 3588 3589 3590 3591 3592
                                                </div>
                                            }
                                        </div>
                                    </div>
                                    <div className="col-3">
                                        <div style={{ textAlign: 'right', width: 90 }}>
3593
                                            {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
faisalhamdi's avatar
faisalhamdi committed
3594
                                                null :
d.arizona's avatar
d.arizona committed
3595
                                                // <div style={{ flex: 1 }}>
faisalhamdi's avatar
faisalhamdi committed
3596 3597 3598 3599 3600 3601
                                                    <FormControlLabel
                                                        style={{ margin: 0 }}
                                                        value={val}
                                                        control={
                                                            <NumberFormat
                                                                thousandSeparator={true}
d.arizona's avatar
d.arizona committed
3602
                                                                style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }}
faisalhamdi's avatar
faisalhamdi committed
3603 3604
                                                                type="text"
                                                                placeholder=""
d.arizona's avatar
d.arizona committed
3605
                                                                disabled={this.state.get_for == 'view'}
d.arizona's avatar
d.arizona committed
3606 3607 3608
                                                                fixedDecimalScale={2}
                                                                decimalScale={2}
                                                                value={Number(tableMeta.rowData[44]).toFixed(2)}
d.arizona's avatar
d.arizona committed
3609
                                                                onBlur={(event) => {
d.arizona's avatar
d.arizona committed
3610
                                                                    handleChange(event.target.value, tableMeta, 44)
d.arizona's avatar
d.arizona committed
3611
                                                                }}
faisalhamdi's avatar
faisalhamdi committed
3612 3613 3614
                                                            />
                                                        }
                                                    />
d.arizona's avatar
d.arizona committed
3615
                                                // </div>
faisalhamdi's avatar
faisalhamdi committed
3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627
                                            }
                                        </div>
                                    </div>
                                </div>
                            </div>
                        )
                    }
                }
            }, {
                name: "Notes",
                options: {
                    customHeadRender: (columnMeta) => (
d.arizona's avatar
d.arizona committed
3628
                        <TableCell style={{ ...style2, top: 0, zIndex: 99, backgroundColor: '#37b5e6', width: 96, height: 42, borderRight: '1px #fff solid' }}>
faisalhamdi's avatar
faisalhamdi committed
3629 3630 3631 3632 3633 3634
                            <Typography style={{ color: 'white', fontSize: 12, fontWeight: 'bold', textAlign: 'center' }}>{columnMeta.name}</Typography>
                        </TableCell>
                    ),
                    setCellProps: () => ({ style2 }),
                    customBodyRender: (val, tableMeta, updateValue) => {
                        return (
d.arizona's avatar
d.arizona committed
3635
                            <div style={{ textAlign: 'left', width: 90 }}>
3636 3637
                                {tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 8 || tableMeta.rowData[0] === 9?
                                    null :
d.arizona's avatar
d.arizona committed
3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660
                                    <div style={{ padding: 0, margin: 0 }}>
                                        <textarea disabled={this.state.get_for == 'view'} style={{  borderColor: 'white', width: 96, textAlign: 'center', justifyContent:'center', padding: 0, margin: 0, color: this.state.get_for == 'view'? "black" : "#5198ea", backgroundColor: 'transparent' }} type="text" defaultValue={tableMeta.rowData[45]} 
                                        onBlur={(event) => handleChange(event.target.value, tableMeta, 45)} />
                                    </div>
                                    // <FormControlLabel
                                    //     style={{ margin: 0 }}
                                    //     control={
                                    //         <ThemeProvider theme={theme}>
                                    //             <Input
                                    //                 disableUnderline={true}
                                    //                 style={{ color: this.state.get_for == 'view'? "black" : "#5198ea", fontSize: 12, textAlign: 'left', borderColor: 'transparent', margin: 0, width: 75, backgroundColor: 'transparent' }}
                                    //                 type="text"
                                    //                 placeholder=""
                                    //                 multiline={true}
                                    //                 defaultValue={tableMeta.rowData[45]}
                                    //                 disabled={this.state.get_for == 'view'}
                                    //                 onBlur={(event) => {
                                    //                     handleChange(event.target.value, tableMeta, 45)
                                    //                 }}
                                    //             />
                                    //         </ThemeProvider>
                                    //     }
                                    // />
3661
                                }
faisalhamdi's avatar
faisalhamdi committed
3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765
                            </div>
                        )
                    }
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
            }, {
                name: "",
                options: {
                    display: false
                }
d.arizona's avatar
d.arizona committed
3766 3767 3768 3769 3770 3771
            }, {
                name: "",
                options: {
                    display: false
                }
            },
Deni Rinaldi's avatar
Deni Rinaldi committed
3772 3773
        ]

d.arizona's avatar
d.arizona committed
3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784
        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>
        );

d.arizona's avatar
d.arizona committed
3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795
        const handleClose = (event, reason) => {
            if (reason === 'clickaway') {
              return;
            }
        
            this.setState({
                snekbar: false,
                snekbarMsg: ''
            })
        };

Deni Rinaldi's avatar
Deni Rinaldi committed
3796 3797 3798 3799 3800 3801
        return (
            <div>
                <div className={"main-color"} style={{ height: 78, flex: 1, display: 'flex', alignItems: 'center', paddingLeft: 20 }}>
                    <Typography style={{ fontSize: '16px', color: 'white' }}>Monthly Report</Typography>
                </div>
                <div style={{ flex: 1, padding: 20, width: '100%' }}>
d.arizona's avatar
d.arizona committed
3802
                {this.state.visibleLOCFMR ? 
Deni Rinaldi's avatar
Deni Rinaldi committed
3803
                    <Paper style={{ paddingTop: 10, paddingBottom: 20 }}>
d.arizona's avatar
d.arizona committed
3804
                        <Snackbar open={this.state.snekbar} autoHideDuration={3000} onClose={handleClose}>
d.arizona's avatar
d.arizona committed
3805 3806 3807 3808
                            <Alert onClose={handleClose} severity="error">
                                {this.state.snekbarMsg}
                            </Alert>
                        </Snackbar>
Deni Rinaldi's avatar
Deni Rinaldi committed
3809 3810
                        <div style={{ borderBottom: 'solid 1px #c4c4c4' }} >
                            <Typography style={{ fontSize: '12px', color: '#4b4b4b', margin: 10 }}>Monthly Report - List Of Credit Facilities</Typography>
Deni Rinaldi's avatar
Deni Rinaldi committed
3811
                        </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
3812 3813 3814 3815
                        <div style={{ padding: 20 }}>
                            <div style={{ display: 'flex', justifyContent: 'space-between' }}>
                                <div>
                                    <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>{this.props.company.company_name}</Typography>
d.arizona's avatar
d.arizona committed
3816
                                    <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Period : {String(this.props.month.month_value).toLocaleUpperCase()} {this.props.periode} (rev.{this.props.revision})</Typography>
Deni Rinaldi's avatar
Deni Rinaldi committed
3817 3818
                                    <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>in IDR mn</Typography>
                                </div>
d.arizona's avatar
d.arizona committed
3819 3820
                                <div style={{ width: '50%' }}>
                                    <div style={{ justifyContent: 'flex-end', display: 'flex', flexFlow: 'wrap' }}>
d.arizona's avatar
d.arizona committed
3821
                                        {(this.state.get_for == 'edit' && 
d.arizona's avatar
d.arizona committed
3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837
                                            <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>
d.arizona's avatar
d.arizona committed
3838
                                        )}
d.arizona's avatar
d.arizona committed
3839
                                        {(this.state.get_for == 'edit' && 
d.arizona's avatar
d.arizona committed
3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857
                                            <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>
d.arizona's avatar
d.arizona committed
3858
                                        )} 
d.arizona's avatar
d.arizona committed
3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881
                                        <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>
                                    {/* } */}
                                </div>
Deni Rinaldi's avatar
Deni Rinaldi committed
3882
                            </div>
d.arizona's avatar
d.arizona committed
3883
                            
Deni Rinaldi's avatar
Deni Rinaldi committed
3884
                            <div style={{ marginTop: 20, width: this.props.width - (this.props.open === true ? 400 : 150) }}>
d.arizona's avatar
d.arizona committed
3885
                                {this.state.loading && loadingComponent}
d.arizona's avatar
d.arizona committed
3886
                                {!this.state.loading && <MuiThemeProvider theme={getMuiTheme()}>
d.arizona's avatar
d.arizona committed
3887 3888 3889 3890 3891
                                    <MUIDataTable
                                        data={dataTable2}
                                        columns={columns}
                                        options={options}
                                    />
d.arizona's avatar
d.arizona committed
3892
                                </MuiThemeProvider>}
d.arizona's avatar
d.arizona committed
3893 3894
                            </div>

d.arizona's avatar
d.arizona committed
3895
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15, marginTop: 5}}>
d.arizona's avatar
d.arizona committed
3896
                                <div>
faisalhamdi's avatar
faisalhamdi committed
3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910
                                    <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>
                                                    )
                                                }) :
                                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 10, marginRight: 5 }}>-</Typography>

                                            }
                                        </div>
                                    </div>
d.arizona's avatar
d.arizona committed
3911
                                </div>
d.arizona's avatar
d.arizona committed
3912 3913
                                <div style={{display: 'flex', flexDirection: 'row'}}>
                                    <div style={{padding: 5}}>
d.arizona's avatar
d.arizona committed
3914
                                        <Typography style={{ fontSize: '12px', color: '#4b4b4b' }}>Total Outstanding Loan</Typography>
d.arizona's avatar
d.arizona committed
3915
                                    </div>
d.arizona's avatar
d.arizona committed
3916
                                    <div style={{border: '1px solid black', padding: 5, minWidth: 200, display: 'flex', justifyContent: 'flex-end'}}>
d.arizona's avatar
d.arizona committed
3917
                                        <Typography style={{ fontSize: '14px', color: '#4b4b4b' }}><NumberFormat value={this.state.perBS} displayType={'text'} thousandSeparator={true} prefix={''}/></Typography>
d.arizona's avatar
d.arizona committed
3918 3919 3920
                                    </div>
                                </div>
                            </div>
d.arizona's avatar
d.arizona committed
3921
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
d.arizona's avatar
d.arizona committed
3922
                                <div>
d.arizona's avatar
d.arizona committed
3923
                                    <Typography style={{ fontSize: '12px', color: '#4b4b4b', marginTop: 10 }}>Notes : {this.state.notes}</Typography>
d.arizona's avatar
d.arizona committed
3924
                                </div>
d.arizona's avatar
d.arizona committed
3925 3926
                                <div style={{display: 'flex', flexDirection: 'row'}}>
                                    <div style={{padding: 5}}>
d.arizona's avatar
d.arizona committed
3927
                                        <Typography style={{ fontSize: '12px', color: '#4b4b4b' }}>Diff</Typography>
d.arizona's avatar
d.arizona committed
3928
                                    </div>
d.arizona's avatar
d.arizona committed
3929
                                    <div style={{borderStyle: 'solid', borderWidth: '0px 1px 1px 1px', padding: 5, minWidth: 200, display: 'flex', justifyContent: 'flex-end'}}>
d.arizona's avatar
d.arizona committed
3930
                                        <Typography style={{ fontSize: '14px', color: Number(this.state.diff) > 0? 'red' :'#4b4b4b' }}><NumberFormat value={this.state.diff} displayType={'text'} thousandSeparator={true} prefix={''}/></Typography>
d.arizona's avatar
d.arizona committed
3931 3932 3933
                                    </div>
                                </div>
                            </div>
d.arizona's avatar
d.arizona committed
3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952
                            <div style={{ display: 'flex', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 5, fontWeight: 'bold', textDecorationLine: 'underline'}}>Keterangan:</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 0 }}>1. Current ratio = Current Assets / Current Liabilities</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 0 }}>2. DER = Interest Bearing Debt / Total Equity (dimana Interest Bearing Debt = Short term loan + Current maturities of long term debt + Long term loan + Due to affiliated companies + Due to shareholder)</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 0 }}>3. Debt to EBITDA = Interest Bearing Debt / EBITDA (dimana Interest Bearing Debt = Short term loan + Current maturities of long term debt + Long term loan + Due to affiliated companies + Due to shareholder</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginLeft: 10 }}>& EBITDA = Income from operations 2 (EBIT 2) + depreciation)</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 0 }}>4. EBITDA to Interest (ISCR) = EBITDA / Interest Expenses (dimana EBITDA = Income from operations 2 (EBIT 2) + depreciation)</Typography>
                            </div>
                            
d.arizona's avatar
d.arizona committed
3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972
                            {/* <div style={{ display: 'flex', justifyContent: 'flex-end', maxWidth: '100%', paddingLeft: 15, paddingRight: 15, marginTop: 5}}>
                                <div style={{display: 'flex', flexDirection: 'row'}}>
                                    <div style={{padding: 5}}>
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Total Outstanding Loan</Typography>
                                    </div>
                                    <div style={{border: '1px solid black', padding: 5, minWidth: 200, display: 'flex', justifyContent: 'flex-end'}}>
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>{formatSeparator(this.state.totalOutStand)}</Typography>
                                    </div>
                                </div>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'flex-end', maxWidth: '100%', paddingLeft: 15, paddingRight: 15}}>
                                <div style={{display: 'flex', flexDirection: 'row'}}>
                                    <div style={{padding: 5}}>
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Diff</Typography>
                                    </div>
                                    <div style={{borderStyle: 'solid', borderWidth: '0px 1px 1px 1px', padding: 5, minWidth: 200, display: 'flex', justifyContent: 'flex-end'}}>
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>{formatSeparator(this.state.diff)}</Typography>
                                    </div>
                                </div>
                            </div> */}
d.arizona's avatar
d.arizona committed
3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989
                        </div>
                        <div className="grid grid-2x" style={{ marginTop: 20 }}>
                            <div className="col-1">
                                <button
                                    type="button"
                                    onClick={() => this.setState({ loading: true }, () => {
                                        setTimeout(() => {
                                            this.props.onClickClose()
                                        }, 100);
                                    })}
                                    style={{
                                        backgroundColor: 'transparent',
                                        cursor: 'pointer',
                                        borderColor: 'transparent',
                                        outline: 'none'
                                    }}
                                >
d.arizona's avatar
d.arizona committed
3990
                                    <div style={{ backgroundColor: '#019ce5', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center', marginLeft: 10}}>
d.arizona's avatar
d.arizona committed
3991 3992 3993 3994
                                        <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Back</Typography>
                                    </div>
                                </button>
                            </div>
d.arizona's avatar
d.arizona committed
3995 3996 3997
                        {/* (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') ? */}

                            {this.props.isApprover === true ? null :
d.arizona's avatar
d.arizona committed
3998
                            <div className="col-2" style={{ display: 'flex', justifyContent: 'flex-end', maxWidth: '100%' }}>
d.arizona's avatar
d.arizona committed
3999
                                {this.state.get_for == 'view' && this.state.viewOnly && <button
d.arizona's avatar
d.arizona committed
4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019
                                    className="button"
                                    type="button"
                                    style={{
                                        backgroundColor: 'transparent',
                                        cursor: 'pointer',
                                        borderColor: 'transparent',
                                        outline: 'none',
                                        marginRight: 20
                                    }}
                                    onClick={() => {
                                        this.setState({loading: true}, () => {
                                            this.handleGetFor('edit')
                                        })
                                    }}
                                >
                                    <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' }}>Edit</Typography>
                                    </div>
                                </button>}
                                {this.state.get_for == 'edit' && <button
d.arizona's avatar
d.arizona committed
4020 4021 4022 4023 4024 4025 4026 4027 4028
                                    className="button"
                                    type="button"
                                    style={{
                                        backgroundColor: 'transparent',
                                        cursor: 'pointer',
                                        borderColor: 'transparent',
                                        outline: 'none',
                                        marginRight: 20
                                    }}
d.arizona's avatar
d.arizona committed
4029
                                    onClick={() => this.setState({totalOutStand: totalLoan, saveTambahan: false}, () => {
d.arizona's avatar
d.arizona committed
4030 4031
                                        this.handleCalculate()
                                    })}
d.arizona's avatar
d.arizona committed
4032 4033 4034 4035
                                >
                                    <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>
d.arizona's avatar
d.arizona committed
4036 4037
                                </button>}
                                {this.state.get_for == 'edit' && <button
d.arizona's avatar
d.arizona committed
4038 4039 4040
                                    className="button"
                                    type="button"
                                    onClick={() => 
d.arizona's avatar
d.arizona committed
4041
                                        this.state.saveDraft === true || this.state.saveTambahan?
d.arizona's avatar
d.arizona committed
4042
                                        this.setState({snekbar: true, snekbarMsg: 'Data Incomplete'})
d.arizona's avatar
d.arizona committed
4043
                                        :
4044 4045
                                            this.state.handleDoubleClick == 1 ? null :
                                                this.setState({ handleDoubleClick: 1, loading: true }, () => {
d.arizona's avatar
d.arizona committed
4046 4047 4048 4049 4050 4051 4052
                                                    setTimeout(() => {
                                                        this.backToMonthlyReport('draft')
                                                    }, 100);
                                                })
                                    }
                                    style={{
                                        backgroundColor: 'transparent',
d.arizona's avatar
d.arizona committed
4053
                                        cursor: 'pointer',
d.arizona's avatar
d.arizona committed
4054 4055 4056 4057 4058 4059
                                        borderColor: 'transparent',
                                        outline: 'none',
                                        marginRight: 20
                                    }}
                                >
                                    <div style={{ backgroundColor: '#354960', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center' }}>
d.arizona's avatar
d.arizona committed
4060
                                        <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Save as Draft</Typography>
d.arizona's avatar
d.arizona committed
4061
                                    </div>
d.arizona's avatar
d.arizona committed
4062 4063
                                </button>}
                                {this.state.get_for == 'edit' && <button
d.arizona's avatar
d.arizona committed
4064 4065 4066
                                    type="button"
                                    // disabled={this.state.buttonError}
                                    onClick={() => 
d.arizona's avatar
d.arizona committed
4067
                                        this.state.saveComp || this.state.saveTambahan?
d.arizona's avatar
d.arizona committed
4068
                                            this.setState({snekbar: true, snekbarMsg: 'Data Incomplete / Diff must be 0'})
d.arizona's avatar
d.arizona committed
4069
                                            :
4070 4071
                                            this.state.handleDoubleClick == 1 ? null :
                                                this.setState({ handleDoubleClick: 1, loading: true }, () => {
d.arizona's avatar
d.arizona committed
4072 4073 4074 4075 4076 4077 4078
                                                    setTimeout(() => {
                                                        this.backToMonthlyReport('submitted')
                                                    }, 100);
                                                })
                                    }
                                    style={{
                                        backgroundColor: 'transparent',
d.arizona's avatar
d.arizona committed
4079
                                        cursor: 'pointer',
d.arizona's avatar
d.arizona committed
4080 4081 4082 4083 4084
                                        borderColor: 'transparent',
                                        outline: 'none'
                                    }}
                                >
                                    <div style={{ backgroundColor: '#354960', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center', marginRight: 20 }}>
d.arizona's avatar
d.arizona committed
4085
                                        <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Save & Complete</Typography>
d.arizona's avatar
d.arizona committed
4086
                                    </div>
d.arizona's avatar
d.arizona committed
4087 4088
                                </button>}
                            </div>}
d.arizona's avatar
d.arizona committed
4089
                            {/* : null } */}
Deni Rinaldi's avatar
Deni Rinaldi committed
4090 4091
                        </div>
                    </Paper>
d.arizona's avatar
d.arizona committed
4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104
                    :
                    <Paper style={{ paddingTop: 10, paddingBottom: 20 }}>
                        <Snackbar open={this.state.snekbar} autoHideDuration={6000} onClose={handleClose}>
                            <Alert onClose={handleClose} severity="error">
                                {this.state.snekbarMsg}
                            </Alert>
                        </Snackbar>
                        <div style={{ borderBottom: 'solid 1px #c4c4c4' }} >
                            <Typography style={{ fontSize: '12px', color: '#4b4b4b', margin: 10 }}>Monthly Report - List Of Credit Facilities</Typography>
                        </div>
                        <div style={{ padding: 20 }}>
                            <div>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>{this.props.company.company_name}</Typography>
d.arizona's avatar
d.arizona committed
4105
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Period : {String(this.props.month.month_value).toLocaleUpperCase()} {this.props.periode} (rev.{this.props.revision})</Typography>
d.arizona's avatar
d.arizona committed
4106 4107 4108 4109 4110
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>in IDR mn</Typography>
                            </div>
                            
                            <div style={{ marginTop: 20, width: this.props.width - (this.props.open === true ? 400 : 150) }}>
                                {this.state.loading && loadingComponent}
d.arizona's avatar
d.arizona committed
4111
                                {this.state.dataLoaded && !this.state.loading && <MuiThemeProvider theme={getMuiTheme()}>
d.arizona's avatar
d.arizona committed
4112 4113 4114 4115 4116
                                    <MUIDataTable
                                        data={dataTable2}
                                        columns={columns}
                                        options={options}
                                    />
d.arizona's avatar
d.arizona committed
4117
                                </MuiThemeProvider>}
d.arizona's avatar
d.arizona committed
4118 4119
                            </div>

d.arizona's avatar
d.arizona committed
4120
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15, marginTop: 5}}>
d.arizona's avatar
d.arizona committed
4121
                                <div>
faisalhamdi's avatar
faisalhamdi committed
4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135
                                    <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>
                                                    )
                                                }) :
                                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 10, marginRight: 5 }}>-</Typography>

                                            }
                                        </div>
                                    </div>
d.arizona's avatar
d.arizona committed
4136 4137 4138
                                </div>
                                <div style={{display: 'flex', flexDirection: 'row'}}>
                                    <div style={{padding: 5}}>
d.arizona's avatar
d.arizona committed
4139
                                        <Typography style={{ fontSize: '12px', color: '#4b4b4b' }}>Total Outstanding Loan</Typography>
d.arizona's avatar
d.arizona committed
4140 4141
                                    </div>
                                    <div style={{border: '1px solid black', padding: 5, minWidth: 200, display: 'flex', justifyContent: 'flex-end'}}>
d.arizona's avatar
d.arizona committed
4142
                                        <Typography style={{ fontSize: '14px', color: '#4b4b4b' }}><NumberFormat value={this.state.perBS} displayType={'text'} thousandSeparator={true} prefix={''}/></Typography>
d.arizona's avatar
d.arizona committed
4143 4144 4145
                                    </div>
                                </div>
                            </div>
d.arizona's avatar
d.arizona committed
4146
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
d.arizona's avatar
d.arizona committed
4147
                                <div>
d.arizona's avatar
d.arizona committed
4148
                                    <Typography style={{ fontSize: '12px', color: '#4b4b4b', marginTop: 10 }}>Notes : {this.state.notes}</Typography>
d.arizona's avatar
d.arizona committed
4149 4150 4151
                                </div>
                                <div style={{display: 'flex', flexDirection: 'row'}}>
                                    <div style={{padding: 5}}>
d.arizona's avatar
d.arizona committed
4152
                                        <Typography style={{ fontSize: '12px', color: '#4b4b4b' }}>Diff</Typography>
d.arizona's avatar
d.arizona committed
4153
                                    </div>
d.arizona's avatar
d.arizona committed
4154
                                    <div style={{borderStyle: 'solid', borderWidth: '0px 1px 1px 1px', padding: 5, minWidth: 200, display: 'flex', justifyContent: 'flex-end'}}>
d.arizona's avatar
d.arizona committed
4155
                                        <Typography style={{ fontSize: '14px', color: Number(this.state.diff) > 0? 'red' :'#4b4b4b' }}><NumberFormat value={this.state.diff} displayType={'text'} thousandSeparator={true} prefix={''}/></Typography>
d.arizona's avatar
d.arizona committed
4156 4157 4158
                                    </div>
                                </div>
                            </div>
d.arizona's avatar
d.arizona committed
4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177
                            
                            <div style={{ display: 'flex', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 5, fontWeight: 'bold', textDecorationLine: 'underline'}}>Keterangan:</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 0 }}>1. Current ratio = Current Assets / Current Liabilities</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 0 }}>2. DER = Interest Bearing Debt / Total Equity (dimana Interest Bearing Debt = Short term loan + Current maturities of long term debt + Long term loan + Due to affiliated companies + Due to shareholder)</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 0 }}>3. Debt to EBITDA = Interest Bearing Debt / EBITDA (dimana Interest Bearing Debt = Short term loan + Current maturities of long term debt + Long term loan + Due to affiliated companies + Due to shareholder</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginLeft: 10 }}>& EBITDA = Income from operations 2 (EBIT 2) + depreciation)</Typography>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'space-between', maxWidth: '100%', paddingLeft: 5, paddingRight: 15}}>
                                <Typography style={{ fontSize: '11px', color: '#4b4b4b', marginTop: 0 }}>4. EBITDA to Interest (ISCR) = EBITDA / Interest Expenses (dimana EBITDA = Income from operations 2 (EBIT 2) + depreciation)</Typography>
                            </div>
d.arizona's avatar
d.arizona committed
4178 4179

                            {/* <div style={{ display: 'flex', justifyContent: 'flex-end', maxWidth: '100%', paddingLeft: 15, paddingRight: 15, marginTop: 5}}>
d.arizona's avatar
d.arizona committed
4180 4181 4182 4183
                                <div style={{display: 'flex', flexDirection: 'row'}}>
                                    <div style={{padding: 5}}>
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Total Outstanding Loan</Typography>
                                    </div>
d.arizona's avatar
d.arizona committed
4184
                                    <div style={{border: '1px solid black', padding: 5, minWidth: 200, display: 'flex', justifyContent: 'flex-end'}}>
d.arizona's avatar
d.arizona committed
4185
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>{formatSeparator(this.state.totalOutStand)}</Typography>
d.arizona's avatar
d.arizona committed
4186 4187 4188 4189 4190 4191 4192 4193
                                    </div>
                                </div>
                            </div>
                            <div style={{ display: 'flex', justifyContent: 'flex-end', maxWidth: '100%', paddingLeft: 15, paddingRight: 15}}>
                                <div style={{display: 'flex', flexDirection: 'row'}}>
                                    <div style={{padding: 5}}>
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>Diff</Typography>
                                    </div>
d.arizona's avatar
d.arizona committed
4194
                                    <div style={{borderStyle: 'solid', borderWidth: '0px 1px 1px 1px', padding: 5, minWidth: 200, display: 'flex', justifyContent: 'flex-end'}}>
d.arizona's avatar
d.arizona committed
4195
                                        <Typography style={{ fontSize: '11px', color: '#4b4b4b' }}>{(formatSeparator(this.state.diff))}</Typography>
d.arizona's avatar
d.arizona committed
4196 4197
                                    </div>
                                </div>
d.arizona's avatar
d.arizona committed
4198
                            </div> */}
d.arizona's avatar
d.arizona committed
4199 4200 4201 4202 4203 4204 4205 4206 4207
                        </div>
                        <div className="grid grid-2x" style={{ marginTop: 20 }}>
                            <div className="col-1">
                                <button
                                    type="button"
                                    onClick={() => {
                                        this.getBankData()
                                        this.getTypeOfCredit()
                                        this.getSubmission()
d.arizona's avatar
d.arizona committed
4208
                                        }
d.arizona's avatar
d.arizona committed
4209 4210 4211 4212 4213 4214 4215 4216
                                    }
                                    style={{
                                        backgroundColor: 'transparent',
                                        cursor: 'pointer',
                                        borderColor: 'transparent',
                                        outline: 'none'
                                    }}
                                >
d.arizona's avatar
d.arizona committed
4217
                                    <div style={{ backgroundColor: '#019ce5', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center', marginLeft: 10 }}>
d.arizona's avatar
d.arizona committed
4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234
                                        <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Back</Typography>
                                    </div>
                                </button>
                            </div>
                            {/* {this.props.isApprover === true || this.state.dataTable.length == 0 ? null :
                                (this.props.lastStatus === 'SUBMIT' || this.props.lastStatus === 'REVISION') && this.props.prevRevision === false && (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') ? */}
                            <div 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
                                    }}
d.arizona's avatar
d.arizona committed
4235
                                    onClick={() => this.setState({totalOutStand: totalLoan, saveTambahan: false}, () => {
d.arizona's avatar
d.arizona committed
4236 4237
                                        this.handleCalculate()
                                    })}
d.arizona's avatar
d.arizona committed
4238 4239 4240 4241 4242 4243 4244 4245 4246
                                >
                                    <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"
                                    onClick={() => 
d.arizona's avatar
d.arizona committed
4247
                                        this.state.saveDraft === true || this.state.saveTambahan?
d.arizona's avatar
d.arizona committed
4248
                                            this.setState({snekbar: true, snekbarMsg: 'Data Incomplete'})
d.arizona's avatar
d.arizona committed
4249
                                            :
4250 4251
                                            this.state.handleDoubleClick == 1 ? null :
                                                this.setState({ handleDoubleClick: 1, loading: true }, () => {
d.arizona's avatar
d.arizona committed
4252
                                                    setTimeout(() => {
d.arizona's avatar
d.arizona committed
4253
                                                        this.uploadLOCF('draft')
d.arizona's avatar
d.arizona committed
4254 4255 4256 4257 4258
                                                    }, 100);
                                                })
                                    }
                                    style={{
                                        backgroundColor: 'transparent',
d.arizona's avatar
d.arizona committed
4259
                                        cursor: 'pointer',
d.arizona's avatar
d.arizona committed
4260 4261 4262 4263 4264 4265
                                        borderColor: 'transparent',
                                        outline: 'none',
                                        marginRight: 20
                                    }}
                                >
                                    <div style={{ backgroundColor: '#354960', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center' }}>
d.arizona's avatar
d.arizona committed
4266
                                        <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Save as Draft</Typography>
d.arizona's avatar
d.arizona committed
4267 4268 4269 4270 4271 4272
                                    </div>
                                </button>
                                <button
                                    type="button"
                                    // disabled={this.state.buttonError}
                                    onClick={() => 
d.arizona's avatar
d.arizona committed
4273
                                        this.state.saveComp || this.state.saveTambahan?
d.arizona's avatar
d.arizona committed
4274
                                            this.setState({snekbar: true, snekbarMsg: 'Data Incomplete / Diff must be 0'})
d.arizona's avatar
d.arizona committed
4275
                                            :
4276 4277
                                            this.state.handleDoubleClick == 1 ? null :
                                                this.setState({ handleDoubleClick: 1, loading: true }, () => {
d.arizona's avatar
d.arizona committed
4278
                                                    setTimeout(() => {
d.arizona's avatar
d.arizona committed
4279
                                                        this.uploadLOCF('submitted')
d.arizona's avatar
d.arizona committed
4280 4281 4282 4283 4284
                                                    }, 100);
                                                })
                                    }
                                    style={{
                                        backgroundColor: 'transparent',
d.arizona's avatar
d.arizona committed
4285
                                        cursor: 'pointer',
d.arizona's avatar
d.arizona committed
4286 4287 4288 4289 4290
                                        borderColor: 'transparent',
                                        outline: 'none'
                                    }}
                                >
                                    <div style={{ backgroundColor: '#354960', width: 105, height: 25, borderRadius: 3, justifyContent: 'center', display: 'flex', alignItems: 'center', marginRight: 20 }}>
d.arizona's avatar
d.arizona committed
4291
                                        <Typography style={{ fontSize: '11px', color: '#fff', textAlign: 'center' }}>Save & Complete</Typography>
d.arizona's avatar
d.arizona committed
4292 4293
                                    </div>
                                </button>
d.arizona's avatar
d.arizona committed
4294
                            </div>
d.arizona's avatar
d.arizona committed
4295
                            {/* : null } */}
d.arizona's avatar
d.arizona committed
4296 4297
                        </div>
                    </Paper>}
Deni Rinaldi's avatar
Deni Rinaldi committed
4298
                </div>
d.arizona's avatar
d.arizona committed
4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328

                {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>
                                    </div>
                                </div>
                                <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>
                                </div>
                            </div>
                            <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={() => {
d.arizona's avatar
d.arizona committed
4329
                                    String(this.state.judulColumn).includes("TEMPLATE") && String(this.state.judulColumn).includes("UPLOAD") && String(this.state.judul).includes("LIST") && String(this.state.judul).includes("CREDIT") && String(this.state.judul).includes("MONTHLY") && String(this.state.judul).includes("REPORT") ?
d.arizona's avatar
d.arizona committed
4330
                                        this.checkUpload() :
d.arizona's avatar
d.arizona committed
4331
                                        this.setState({snekbar: true, snekbarMsg: 'Invalid Template', tipeAlert: 'warning'})
d.arizona's avatar
d.arizona committed
4332 4333 4334 4335 4336
                                }}
                            />
                        </div>
                    </div>
                )}
Deni Rinaldi's avatar
Deni Rinaldi committed
4337 4338 4339 4340 4341
            </div>
        )
    }

}