import { createMuiTheme, FormControlLabel, Input, Snackbar, MuiThemeProvider, Paper, TableCell, Tooltip, Typography, withStyles } from '@material-ui/core' import MUIDataTable from 'mui-datatables'; import React, { Component } from 'react' import ReactTooltip from 'react-tooltip'; import Images from '../../assets/Images'; import api from '../../api'; import NumberFormat from 'react-number-format'; import { type } from 'ramda'; import { PropagateLoader } from 'react-spinners'; import UploadFile from "../../library/Upload"; import { ExcelRenderer } from 'react-excel-renderer'; import Constant from '../../library/Constant'; import * as R from 'ramda'; import { Alert } from '@material-ui/lab'; 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, zIndex: 101, background: "white", }; const style2 = { position: "sticky", background: "white", zIndex: 100, top: 0 }; export default class BalanceSheetMR extends Component { constructor(props) { super(props) this.state = { dataTable: [], loading: true, visibleBSMR: true, valueThreshold: 0, minValue: 0, maxValue: 0, updateBy: [], notes: "", judulColumn: null, get_for: "view", viewOnly: true, kansas: 0, defaultCurrencyUpload: this.props.defaultCurrency, visibleAlertSave: false } this.fileHandler = this.fileHandler.bind(this); } componentDidMount() { this.getSettingControl() this.getLatestUpdate() this.handleViewOnly() } handleViewOnly() { let checkApprover = false let checkLastStatus = false let checkStatus = false let checkPrevRev = false if (this.props.isApprover) { checkApprover = true } else { checkApprover = false } if (this.props.lastStatus == 'SUBMIT' || this.props.lastStatus == 'REVISION') { checkLastStatus = true } else { checkLastStatus = false } if (this.props.prevRevision) { checkPrevRev = true } else { checkPrevRev = false } if (this.props.status === 'revision' || this.props.status === 'not-yet' || this.props.status === 'draft' || this.props.status === 'submitted') { checkStatus = true } else { checkStatus = false } this.setState({ viewOnly: !checkApprover && checkLastStatus && checkStatus && checkPrevRev }) // this.setState({viewOnly: true}) } 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 } api.create().getLastestUpdateMR(payload).then(response => { console.log(response); if (response.data) { if (response.data.status === "success") { this.setState({ updateBy: response.data.data.detail === null ? [] : response.data.data.detail, notes: response.data.data.notes_update === null ? "" : response.data.data.notes_update }) } else { this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning', loading: false }, () => { if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) { setTimeout(() => { localStorage.removeItem(Constant.TOKEN) window.location.reload(); }, 1000); } }) } } else { this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error', loading: false }) } }) } getSettingControl() { let body = { group: 'THRESHOLD_VARIANCE', company_id: this.props.company.company_id, type: 'BALANCE_SHEET' } api.create().getAllSettingByType(body).then(response => { console.log(response); if (response.data) { if (response.data.status === 'success') { this.setState({ minValue: response.data.data[0] ? Number(response.data.data[0].min_value) : -5, maxValue: response.data.data[0] ? Number(response.data.data[0].max_value) : 5, }, () => { this.getItemHierarki() }) } else { this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning', loading: false }, () => { if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) { setTimeout(() => { localStorage.removeItem(Constant.TOKEN) window.location.reload(); }, 1000); } }) } } else { this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error', loading: false }) } }) } getItemHierarki() { 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, "currency_id": this.props.defaultCurrency.id, "get_for": this.state.get_for } api.create().getHierarkiMontlyReportBS(payload).then(response => { console.log(payload); console.log(response); let dataTable = [] let err = false if (response.data) { let res = response.data.data const handlePushChild = (item) => { let indexIDzz = dataTable.findIndex((val) => val[1] === item.id) if (item.type_report_id === 3) { // if (item.balance_sheet.mtd_vs_previous_month == "" && Number(item.balance_sheet.percent_act_vs_previous_month) < this.state.minValue || Number(item.balance_sheet.percent_act_vs_previous_month) > this.state.maxValue) { // err = true // } if (item.balance_sheet.mtd_vs_mb == "" && Number(item.balance_sheet.percent_act_vs_mb).toFixed(1) < this.state.minValue || Number(item.balance_sheet.percent_act_vs_mb).toFixed(1) > this.state.maxValue) { err = true } // if (item.balance_sheet.mtd_vs_rb == "" && Number(item.balance_sheet.percent_act_vs_rb) < this.state.minValue || Number(item.balance_sheet.percent_act_vs_rb) > this.state.maxValue) { // err = true // } } if (indexIDzz === -1) { dataTable.push([ item.type_report_id, item.id, item.parent, item.formula, item.level, item.description, item.balance_sheet.rolling_outlook === null ? "0" : item.balance_sheet.rolling_outlook === "" ? "0" : item.balance_sheet.rolling_outlook, item.balance_sheet.master_budget === "" ? "0" : item.balance_sheet.master_budget, item.balance_sheet.rolling_budget === "" ? "0" : item.balance_sheet.rolling_budget, item.balance_sheet.actual === "" ? "0" : item.balance_sheet.actual, item.balance_sheet.actual_previous_month === null ? "0.0" : item.balance_sheet.actual_previous_month === "" ? "0.0" : item.balance_sheet.actual_previous_month, item.balance_sheet.amount_act_vs_previous_month === "" ? "0" : item.balance_sheet.amount_act_vs_previous_month, item.balance_sheet.percent_act_vs_previous_month === "" ? "0" : item.balance_sheet.percent_act_vs_previous_month, item.balance_sheet.amount_act_vs_mb === "" ? "0" : item.balance_sheet.amount_act_vs_mb, item.balance_sheet.percent_act_vs_mb === "" ? "0" : item.balance_sheet.percent_act_vs_mb, item.balance_sheet.amount_act_vs_rb === "" ? "0" : item.balance_sheet.amount_act_vs_rb, item.balance_sheet.percent_act_vs_rb === "" ? "0" : item.balance_sheet.percent_act_vs_rb, item.balance_sheet.mtd_vs_previous_month === null ? "" : item.balance_sheet.mtd_vs_previous_month, item.balance_sheet.mtd_vs_mb === null ? "" : item.balance_sheet.mtd_vs_mb, item.balance_sheet.mtd_vs_rb === null ? "" : item.balance_sheet.mtd_vs_rb, item.balance_sheet.actual_formula, 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) }) } } } res.map((item, index) => { if (item.type_report_id === 3) { // if (item.balance_sheet.mtd_vs_previous_month == "" && Number(item.balance_sheet.percent_act_vs_previous_month) < this.state.minValue || Number(item.balance_sheet.percent_act_vs_previous_month) > this.state.maxValue) { // err = true // } if (item.balance_sheet.mtd_vs_mb == "" && Number(item.balance_sheet.percent_act_vs_mb).toFixed(1) < this.state.minValue || Number(item.balance_sheet.percent_act_vs_mb).toFixed(1) > this.state.maxValue) { err = true } // if (item.balance_sheet.mtd_vs_rb == "" && Number(item.balance_sheet.percent_act_vs_rb) < this.state.minValue || Number(item.balance_sheet.percent_act_vs_rb) > this.state.maxValue) { // err = true // } } dataTable.push([ item.type_report_id, item.id, item.parent, item.formula, item.level, item.description, item.balance_sheet.rolling_outlook === null ? "0" : item.balance_sheet.rolling_outlook === "" ? "0" : item.balance_sheet.rolling_outlook, item.balance_sheet.master_budget === "" ? "0" : item.balance_sheet.master_budget, item.balance_sheet.rolling_budget === "" ? "0" : item.balance_sheet.rolling_budget, item.balance_sheet.actual === "" ? "0" : item.balance_sheet.actual, item.balance_sheet.actual_previous_month === null ? "0.0" : item.balance_sheet.actual_previous_month === "" ? "0.0" : item.balance_sheet.actual_previous_month, item.balance_sheet.amount_act_vs_previous_month === "" ? "0" : item.balance_sheet.amount_act_vs_previous_month, item.balance_sheet.percent_act_vs_previous_month === "" ? "0" : item.balance_sheet.percent_act_vs_previous_month, item.balance_sheet.amount_act_vs_mb === "" ? "0" : item.balance_sheet.amount_act_vs_mb, item.balance_sheet.percent_act_vs_mb === "" ? "0" : item.balance_sheet.percent_act_vs_mb, item.balance_sheet.amount_act_vs_rb === "" ? "0" : item.balance_sheet.amount_act_vs_rb, item.balance_sheet.percent_act_vs_rb === "" ? "0" : item.balance_sheet.percent_act_vs_rb, item.balance_sheet.mtd_vs_previous_month === null ? "" : item.balance_sheet.mtd_vs_previous_month, item.balance_sheet.mtd_vs_mb === null ? "" : item.balance_sheet.mtd_vs_mb, item.balance_sheet.mtd_vs_rb === null ? "" : item.balance_sheet.mtd_vs_rb, item.balance_sheet.actual_formula, 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) }) } } }) if (err === true) { this.setState({ bebas: true }) } this.setState({ dataTable, loading: false, buttonError: true, saveDraft: true }) } console.log(dataTable); }) } downloadTemplate = async () => { let res = await fetch( `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/balance_sheet/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}&¤cy_id=${this.props.defaultCurrency.id}` ) res = await res.blob() // console.log(res) if (res.size > 0) { let url = window.URL.createObjectURL(res); let a = document.createElement('a'); a.href = url; a.download = 'Template Monthly Report Balance Sheet.xlsx'; a.click(); } } async downloadAllData() { let url = `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/balance_sheet/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}` console.log(url); let res = await fetch( `${process.env.REACT_APP_URL_MAIN_BE}/public/transaction/balance_sheet/monthly_report/export_monthly_report?monthly_report_id=${this.props.monthlyReportId === null ? "" : 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}` ) 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 Balance Sheet.xlsx'; a.click(); } } handleGetFor(type) { this.setState({ get_for: type }, () => { this.getSettingControl() this.getLatestUpdate() }) } 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(resp.rows[2]); let payload = [] let reg = /^[-+]?(?:[0-9]+,)*[0-9]+(?:\.[0-9]+)?$/; isi.map((i, index) => { if (i.length > 0) { payload.push({ orders: i[0] === undefined ? "" : String(i[0]).trim(), item_report_id: i[1] === undefined ? "" : String(i[1]).trim(), item_report: i[2] === undefined ? "" : String(i[2]).trim(), actual: i[3] === undefined ? "0" : reg.test(String(i[3])) === false ? "0" : String(i[3]).trim(), mtd_vs_previous_month: i[4] === undefined ? "" : String(i[4]).trim(), mtd_vs_mb: i[5] === undefined ? "" : String(i[5]).trim(), mtd_vs_rb: i[6] === undefined ? "" : String(i[6]).trim(), }) } }) let body = { company_id: this.props.company.company_id, periode: this.props.periode, report_id: this.props.report_id, balance_sheet: payload, months: this.props.month.month_id, status: 'submitted' } console.log(body) this.setState({ payload: body, judul: resp.rows[1][0], judulColumn: resp.rows[0][0] }) } }); } checkUpload() { let payload = { ...this.state.payload, currency_id: this.state.defaultCurrencyUpload?.id } api.create().checkUploadMonthlyReportBS(payload).then(response => { // console.log(JSON.stringify(this.state.payload)); console.log(response) if (response.data) { if (response.data.status === 'success') { this.setState({ visibleUpload: false, visibleBSMR: false, loading: true }) let err = false let dataTable = response.data.data.map((item, index) => { if (item.type_report_id === 3) { if (item.mtd_vs_mb == "" && Number(item.percent_act_vs_mb).toFixed(1) < this.state.minValue || Number(item.percent_act_vs_mb).toFixed(1) > this.state.maxValue) { err = true } } return [ item.type_report_id, item.item_report_id, item.parent, item.formula, item.level, item.item_report, item.rolling_outlook === null ? "" : item.rolling_outlook === "" ? "" : item.rolling_outlook, item.master_budget === "" ? "" : item.master_budget, item.rolling_budget === "" ? "" : item.rolling_budget, item.actual === "" ? "" : item.actual, item.actual_previous_month === null ? "0.0" : item.actual_previous_month === "" ? "0.0" : item.actual_previous_month, item.amount_act_vs_previous_month === "" ? "0.0" : item.amount_act_vs_previous_month, item.percent_act_vs_previous_month === "" ? "0.0" : item.percent_act_vs_previous_month, item.amount_act_vs_mb === "" ? "0.0" : item.amount_act_vs_mb, item.percent_act_vs_mb === "" ? "0.0" : item.percent_act_vs_mb, item.amount_act_vs_rb === "" ? "0.0" : item.amount_act_vs_rb, item.percent_act_vs_rb === "" ? "0.0" : item.percent_act_vs_rb, // 0, // 0, // 0, // 0, // 0, // 0, item.mtd_vs_previous_month === null ? "" : item.mtd_vs_previous_month === undefined ? "" : item.mtd_vs_previous_month, item.mtd_vs_mb === null ? "" : item.mtd_vs_mb === undefined ? "" : item.mtd_vs_mb, item.mtd_vs_rb === null ? "" : item.mtd_vs_rb === undefined ? "" : item.mtd_vs_rb, item.actual_formula, item.order, item.condition_it_should_be, item.condition_if_wrong, item.error ] }) console.log(dataTable) this.setState({ dataTable, dataLoaded: true, loading: false, buttonError: true, isUpload: true }, () => { this.state.dataTable.map(item => { if (item[24].length > 0) { // console.log('masuk') this.setState({ buttonError: true, errorPreview: true }) } }) // console.log(this.state.buttonError) }) } else { this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning', loading: false }, () => { if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) { setTimeout(() => { localStorage.removeItem(Constant.TOKEN) window.location.reload(); }, 1000); } }) } } }) } uploadBalanceSheet(type) { let data = [] this.setState({ loading: true }) this.state.dataTable.map(i => { data.push({ item_report_id: i[1], item_report: String(i[5]), rolling_outlook: i[0] === 5 || i[0] === 6 ? String(Number(i[6]).toFixed(1)) : i[0] === 3 && i[6] === "" ? "0.0" : String(Number(i[6]).toFixed(1)), master_budget: i[0] === 5 || i[0] === 6 ? String(Number(i[7]).toFixed(1)) : i[0] === 3 && i[7] === "" ? "0.0" : String(Number(i[7]).toFixed(1)), rolling_budget: i[0] === 5 || i[0] === 6 ? String(Number(i[8]).toFixed(1)) : i[0] === 3 && i[8] === "" ? "0.0" : String(Number(i[8]).toFixed(1)), actual: i[0] === 5 || i[0] === 6 ? String(Number(i[9]).toFixed(1)) : i[0] === 3 && i[9] === "" ? "0.0" : String(Number(i[9]).toFixed(1)), actual_previous_month: i[0] === 5 || i[0] === 6 ? String(Number(i[10]).toFixed(1)) : i[0] === 3 && i[10] === "" ? "0.0" : String(Number(i[10]).toFixed(1)), amount_act_vs_previous_month: i[0] === 5 || i[0] === 6 ? String(Number(i[11]).toFixed(1)) : i[0] === 3 && i[11] === "" ? "0.0" : String(Number(i[11]).toFixed(1)), percent_act_vs_previous_month: i[0] === 5 || i[0] === 6 ? String(Number(i[12]).toFixed(1)) : i[0] === 3 && i[12] === "" ? "0.0" : String(Number(i[12]).toFixed(1)), amount_act_vs_mb: i[0] === 5 || i[0] === 6 ? String(Number(i[13]).toFixed(1)) : i[0] === 3 && i[13] === "" ? "0.0" : String(Number(i[13]).toFixed(1)), percent_act_vs_mb: i[0] === 5 || i[0] === 6 ? String(Number(i[14]).toFixed(1)) : i[0] === 3 && i[14] === "" ? "0.0" : String(Number(i[14]).toFixed(1)), amount_act_vs_rb: i[0] === 5 || i[0] === 6 ? String(Number(i[15]).toFixed(1)) : i[0] === 3 && i[15] === "" ? "0.0" : String(Number(i[15]).toFixed(1)), percent_act_vs_rb: i[0] === 5 || i[0] === 6 ? String(Number(i[16]).toFixed(1)) : i[0] === 3 && i[16] === "" ? "0.0" : String(Number(i[16]).toFixed(1)), mtd_vs_previous_month: String(i[17]), mtd_vs_mb: String(i[18]), mtd_vs_rb: String(i[19]) }) }) 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, "currency_id": this.props.defaultCurrency.id, "status": type, "months": this.props.month.month_id, "balance_sheet": data } console.log(body); console.log(JSON.stringify(body)); console.log(body) api.create('UPLOAD').uploadMonthlyReportBS(body).then(response => { console.log(response); if (response.data) { if (response.data.status === "success") { // this.props.onClickClose() if (type == 'submitted') { this.props.saveToMonthlyReport('BS') // let bodyRatioBs = { // "report": 'ratio', // "monthlyReportId": this.props.monthlyReportId, // "periode": this.props.periode, // "companyId": this.props.company.company_id, // "months": this.props.month.month_id // } // api.create().triggerRatioFromLOCF(bodyRatioBs).then((res) => { // console.log(res) // this.setState({ loading: false }) // }) } else { this.props.saveToMonthlyReport() } this.setState({ loading: false, handleDoubleClick: 0 }) // this.props.getReport() } else { this.setState({ visibleAlertSave: true, alert: true, messageAlert: response.data.message, tipeAlert: 'warning', loading: false, handleDoubleClick: 0 }, () => { if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) { setTimeout(() => { localStorage.removeItem(Constant.TOKEN) window.location.reload(); }, 1000); } }) } } else { this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error', loading: false, handleDoubleClick: 0 }) } }) } backToMonthlyReport(type) { this.setState({ loading: true }) let data = [] this.state.dataTable.map(i => { data.push({ "item_report_id": i[1], "rolling_outlook": String(Number(i[6]).toFixed(1)), "master_budget": String(Number(i[7]).toFixed(1)), "rolling_budget": String(Number(i[8]).toFixed(1)), "actual": String(Number(i[9]).toFixed(1)), "actual_previous_month": String(Number(i[10]).toFixed(1)), "amount_act_vs_previous_month": String(Number(i[11]).toFixed(1)), "percent_act_vs_previous_month": String(Number(i[12]).toFixed(1)), "amount_act_vs_mb": String(Number(i[13]).toFixed(1)), "percent_act_vs_mb": i[14], "amount_act_vs_rb": String(Number(i[15]).toFixed(1)), "percent_act_vs_rb": i[16], "mtd_vs_previous_month": i[17], "mtd_vs_mb": i[18], "mtd_vs_rb": i[19] }) }) let payload = { "monthly_report_id": this.props.monthlyReportId, "company_id": this.props.company.company_id, "periode": this.props.periode, "report_id": this.props.report_id, "currency_id": this.props.defaultCurrency.id, "status": type, "months": this.props.month.month_id, "balance_sheet": data } api.create('UPLOAD').createMonthlyReportBS(payload).then(response => { console.log(payload); console.log(response); console.log(JSON.stringify(payload)) if (response.data) { if (response.data.status === "success") { if (type == 'submitted') { this.props.saveToMonthlyReport('BS') // let bodyRatioBs = { // "report": 'ratio', // "monthlyReportId": this.props.monthlyReportId, // "periode": this.props.periode, // "companyId": this.props.company.company_id, // "months": this.props.month.month_id // } // api.create().triggerRatioFromLOCF(bodyRatioBs).then((res) => { // console.log(res) // this.setState({ loading: false }) // }) } else { this.props.saveToMonthlyReport() } } else { this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning', loading: false, handleDoubleClick: 0 }, () => { document.body.style.overflow = 'unset'; if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) { setTimeout(() => { localStorage.removeItem(Constant.TOKEN) window.location.reload(); }, 1000); } this.props.saveToMonthlyReport() }) } } else { this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning', loading: false, handleDoubleClick: 0 }) } }) } handleValidate() { let data = [] let err = false let errorContrl = false let editAble = this.state.editAble let dataTable = this.state.dataTable let kansas = this.state.kansas console.log(dataTable[dataTable.length - 1]) dataTable.map((i, index) => { if (i[0] === 3) { // console.log(i); // if ( i[17] === "" && (Number(i[12]) < this.state.minValue || Number(i[12]) > this.state.maxValue)) { // console.log('msk 1'); // // console.log(i); // err = true // } else if (i[18] === "" && (Number(i[14]).toFixed(1) < this.state.minValue || Number(i[14]).toFixed(1) > this.state.maxValue)) { console.log('msk 2'); err = true } } if (String(i[5]) == "Control (should be nil)") { if (Number(i[9]).toFixed(1) < this.state.minValue || Number(i[9]).toFixed(1) > this.state.maxValue) { errorContrl = true editAble = true } } data.push({ "item_report_id": i[1], "rolling_outlook": i[6], "master_budget": i[7], "rolling_budget": i[8], "actual": i[9], "actual_previous_month": i[10], "amount_act_vs_previous_month": i[11], "percent_act_vs_previous_month": i[12], "amount_act_vs_mb": i[13], "percent_act_vs_mb": i[14], "amount_act_vs_rb": i[15], "percent_act_vs_rb": i[16], "mtd_vs_previous_month": i[17], "mtd_vs_mb": i[18], "mtd_vs_rb": i[19] }) }) // console.log(JSON.stringify(data)); // data.map(i => { // if (i.mtd_vs_previous_month === "" && (Number(i.percent_act_vs_previous_month) < this.state.minValue || Number(i.percent_act_vs_previous_month) > this.state.maxValue)) { // console.log('msk 1'); // console.log(i); // err = true // } else if (i.mtd_vs_mb === "" && (Number(i.percent_act_vs_mb) < this.state.minValue || Number(i.percent_act_vs_mb) > this.state.maxValue)) { // console.log('msk 2'); // err = true // } else if (i.mtd_vs_rb === "" && (Number(i.percent_act_vs_rb) < this.state.minValue || Number(i.percent_act_vs_rb) > this.state.maxValue)) { // console.log('msk 3'); // err = true // } // }) // if (err === true) { // console.log('error'); // this.setState({ loading: false, buttonError: true, saveDraft: false }) // } else { // console.log('g error'); // this.setState({ loading: false, buttonError: false, saveDraft: false }) // } // console.log(JSON.stringify(data)) let payload = { "monthly_report_id": this.props.monthlyReportId, "company_id": this.props.company.company_id, "periode": this.props.periode, "report_id": this.props.report_id, "currency_id": this.props.defaultCurrency.id, "status": "submitted", "months": this.props.month.month_id, "balance_sheet": data } // console.log(JSON.stringify(payload)); // console.log(this.state.dataTable) api.create().validateSubmitReportBS(payload).then((response) => { console.log(response.data.data.result) console.log(err); console.log(errorContrl); if (response.data) { if (response.data.status === "success") { if (response.data.data.result && err === false && errorContrl === false) { this.setState({ loading: false, buttonError: false, editable: false, saveDraft: false }) if (kansas == 0) { this.setState({ kansas: 1, loading: true }, () => { this.handleValidate() }) } else { this.setState({ kansas: 0 }) } } else { this.setState({ loading: false, buttonError: true, editable: true, saveDraft: false }) if (kansas == 0) { this.setState({ kansas: 1, loading: true }, () => { this.handleValidate() }) } else { this.setState({ kansas: 0 }) } } } else { this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning', loading: false }, () => { if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) { setTimeout(() => { localStorage.removeItem(Constant.TOKEN) window.location.reload(); }, 1000); } }) } } else { this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error', loading: false }) } }) } closeAlert() { this.setState({ alert: false }) } render() { let dataTable2 = this.state.dataTable const handleText = (value, tableMeta, type) => { dataTable2[tableMeta.rowIndex][type] = value // console.log(dataTable2[tableMeta.rowIndex]); } const handleChange = (value, tableMeta, type) => { let val = String(value).split(",").join("") if (type === "actual") { dataTable2[tableMeta.rowIndex][9] = Number(val).toFixed(1) console.log(dataTable2); } else { let indexParent = dataTable2.findIndex((val) => val[1] === dataTable2[tableMeta.rowIndex][2]) if (indexParent > 0) { // console.log(indexParent) dataTable2[tableMeta.rowIndex][9] = Number(val).toFixed(1) let jagain = Number(dataTable2[indexParent][9]).toFixed(1) dataTable2[indexParent][9] = jagain === undefined ? (0 + Number(val)).toFixed(1) : Number(Number(jagain) + Number(val)).toFixed(1) // if (tableMeta.rowData[5] === 'Cash & Bank Balance') { // console.log(value); // console.log(a); // console.log(jagain); // console.log(dataTable2[indexParent]); // } } else { dataTable2[tableMeta.rowIndex][9] = Number(val).toFixed(1) } } console.log(dataTable2); } const handleValue = (data, type) => { let total = 0 dataTable2.map((item, index) => { // if (item[2] !== null) { if (data.rowData[1] === item[2]) { // console.log(item[data.columnIndex + type]) let itemVal = item[data.columnIndex + type].value !== undefined ? Number(item[data.columnIndex + type].value) : Number(item[data.columnIndex + type]) total = item[data.columnIndex + type] === undefined ? Number(total) + 0 : Number(total) + itemVal } // } }) let indexParent = dataTable2.findIndex((val) => val[1] === dataTable2[data.rowIndex][2]) dataTable2[data.rowIndex][data.columnIndex + type] = Number(total).toFixed(1) // console.log(indexParent); return total } const handleVariance = (tableMeta, dex, type) => { let total = 0 if (dex === 1) { total = Number(tableMeta.rowData[9]) - Number(tableMeta.rowData[10]) dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = Number(total).toFixed(1) } else if (dex === 2) { total = Number(tableMeta.rowData[9]) - Number(tableMeta.rowData[7]) dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = Number(total).toFixed(1) } else if (dex === 3) { total = Number(tableMeta.rowData[9]) - Number(tableMeta.rowData[8]) dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = Number(total).toFixed(1) } return total } const handleVariancePercent = (tableMeta, dex, type) => { let total = 0 // if (tableMeta.rowData[5] === "Cash and cash equivalent") { // console.log(dataTable2); // console.log(tableMeta); // } if (dex === 1) { let selisih = Number(dataTable2[tableMeta.rowIndex][11]) let prevMonth = Number(String(dataTable2[tableMeta.rowIndex][10]).includes('-') ? Number(dataTable2[tableMeta.rowIndex][10]) * -1 : dataTable2[tableMeta.rowIndex][10]) total = R.equals(selisih / prevMonth, 0) || R.equals(selisih / prevMonth, NaN) || R.equals(selisih / prevMonth, Infinity) || R.equals(selisih / prevMonth, -Infinity) ? 0 : (selisih / prevMonth) * 100 // dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = String(selisih).includes('-') ? Number(total * -1).toFixed(1) : Number(total).toFixed(1) // total = String(selisih).includes('-') && Number(tableMeta.rowData[9]) < Number(tableMeta.rowData[10])? Number(total * -1).toFixed(1) : Number(total).toFixed(1) dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = total // total = R.equals(Number((Number(dataTable2[tableMeta.rowIndex][11]) / Number(dataTable2[tableMeta.rowIndex][10])) * 100), NaN) ? '0' : R.equals(Number((Number(dataTable2[tableMeta.rowIndex][11]) / Number(dataTable2[tableMeta.rowIndex][10])) * 100), Infinity) ? '0' : Number((Number(dataTable2[tableMeta.rowIndex][11]) / Number(dataTable2[tableMeta.rowIndex][10])) * 100 == "-Infinity" ? '0' : (Number(dataTable2[tableMeta.rowIndex][11]) / Number(dataTable2[tableMeta.rowIndex][10])) * 100) // dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = Number(total).toFixed(1) // if (tableMeta.rowData[5] === "Cash and cash equivalent") { // console.log(total); // console.log(Number(dataTable2[tableMeta.rowIndex][11]) / Number(dataTable2[tableMeta.rowIndex][10])); // console.log(dataTable2[tableMeta.rowIndex]); // } } else if (dex === 2) { let selisih = Number(dataTable2[tableMeta.rowIndex][13]) let prevMonth = Number(String(dataTable2[tableMeta.rowIndex][7]).includes('-') ? Number(dataTable2[tableMeta.rowIndex][7]) * -1 : dataTable2[tableMeta.rowIndex][7]) total = R.equals(selisih / prevMonth, 0) || R.equals(selisih / prevMonth, NaN) || R.equals(selisih / prevMonth, Infinity) || R.equals(selisih / prevMonth, -Infinity) ? 0 : (selisih / prevMonth) * 100 // dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = String(selisih).includes('-') ? Number(total * -1).toFixed(1) : Number(total).toFixed(1) // total = String(selisih).includes('-') && Number(tableMeta.rowData[9]) < Number(tableMeta.rowData[7]) ? Number(total * -1).toFixed(1) : Number(total).toFixed(1) dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = total // total = R.equals(Number((Number(dataTable2[tableMeta.rowIndex][13]) / Number(dataTable2[tableMeta.rowIndex][7])) * 100), NaN) ? '0' : R.equals(Number((Number(dataTable2[tableMeta.rowIndex][13]) / Number(dataTable2[tableMeta.rowIndex][7])) * 100), Infinity) ? '0' : Number((Number(dataTable2[tableMeta.rowIndex][13]) / Number(dataTable2[tableMeta.rowIndex][7])) * 100 == "-Infinity" ? '0' : (Number(dataTable2[tableMeta.rowIndex][13]) / Number(dataTable2[tableMeta.rowIndex][7])) * 100) // dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = Number(total).toFixed(1) } else if (dex === 3) { let selisih = Number(dataTable2[tableMeta.rowIndex][15]) let prevMonth = Number(String(dataTable2[tableMeta.rowIndex][8]).includes('-') ? Number(dataTable2[tableMeta.rowIndex][8]) * -1 : dataTable2[tableMeta.rowIndex][8]) total = R.equals(selisih / prevMonth, 0) || R.equals(selisih / prevMonth, NaN) || R.equals(selisih / prevMonth, Infinity) || R.equals(selisih / prevMonth, -Infinity) ? 0 : (selisih / prevMonth) * 100 // dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = String(selisih).includes('-') ? Number(total * -1).toFixed(1) : Number(total).toFixed(1) // total = String(selisih).includes('-') && Number(tableMeta.rowData[9]) < Number(tableMeta.rowData[8])? Number(total * -1).toFixed(1) : Number(total).toFixed(1) dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = total // total = R.equals((Number(dataTable2[tableMeta.rowIndex][15]) / Number(dataTable2[tableMeta.rowIndex][8])), NaN) ? '0' : R.equals((Number(dataTable2[tableMeta.rowIndex][15]) / Number(dataTable2[tableMeta.rowIndex][8])), Infinity) ? "0" : Number(dataTable2[tableMeta.rowIndex][15]) / Number(dataTable2[tableMeta.rowIndex][8]) // total = R.equals(Number((Number(dataTable2[tableMeta.rowIndex][15]) / Number(dataTable2[tableMeta.rowIndex][8])) * 100), NaN) ? '0' : R.equals(Number((Number(dataTable2[tableMeta.rowIndex][15]) / Number(dataTable2[tableMeta.rowIndex][8])) * 100), Infinity) ? '0' : Number((Number(dataTable2[tableMeta.rowIndex][15]) / Number(dataTable2[tableMeta.rowIndex][8])) * 100 == "-Infinity" ? '0' : (Number(dataTable2[tableMeta.rowIndex][15]) / Number(dataTable2[tableMeta.rowIndex][8])) * 100) // dataTable2[tableMeta.rowIndex][tableMeta.columnIndex + type] = Number(total).toFixed(1) // console.log(total); } return total } const handleValueFormula = (tableMeta, colIdx) => { // loading = true let splitFormula = String(tableMeta.rowData[3]).split(/([()@])/) let baru = [] let anjay = [] splitFormula.map((item, index) => { let items = String(item).substr(Number(String(item).length) - 1, 1) let subForm = String(item).substr(0, Number(String(item).length) - 1) let re = /^[a-zA-Z0-9_]+$/; if (item !== "") { if (items == ']') { baru.push(String(item)) } else if (!re.test(items)) { baru.push(subForm) baru.push(items) } else { baru.push(String(item)) } } }) baru.map((item, index) => { if (item == '-' || item == '+' || item == '/' || item == '*' || item == '(' || item == ')') { anjay.push(item) } else { if (String(item).includes('#')) { if (String(item).includes('[M-1]')) { let tst = String(item).replace('[M-1]', '') // let indexID = dataTable2.findIndex((val) => val[21] == tst) let data = tableMeta.rowData[20] == null ? [] : tableMeta.rowData[20] let indexID = data.findIndex((val) => val.item_formula == String(`${item}`)) if (indexID !== -1) { let valuezz = data[indexID].value anjay.push(valuezz == "" ? 0 : valuezz) } } else { let data = tableMeta.rowData[20] == null ? [] : tableMeta.rowData[20] let indexID = data.findIndex((val) => val.item_formula == String(`@${item}`)) if (indexID !== -1) { // console.log(tableMeta) let valuezz = data[indexID].value anjay.push(valuezz == "" ? 0 : valuezz) } } } else { if (String(item).includes('[M-1]')) { let tst = String(item).replace('[M-1]', '') let indexID = dataTable2.findIndex((val) => val[21] == tst) if (indexID !== -1) { let valuezz = dataTable2[indexID][10] if (item == dataTable2[tableMeta.rowIndex][21]) { anjay.push(0) } else { anjay.push(valuezz == "" ? 0 : valuezz) } } } else { let indexID = dataTable2.findIndex((val) => val[21] == item) if (indexID !== -1) { let valuezz = dataTable2[indexID][colIdx] if (item == dataTable2[tableMeta.rowIndex][21]) { anjay.push(0) } else { anjay.push(valuezz == "" ? 0 : valuezz) } } else { if (item === '(-1)') { anjay.push(-1) } } } } } }) let anjay2 = [] let kurung = false let item1 = [] anjay.map((item, index) => { if (item == "(") { kurung = true } else if (item == ")") { kurung = false anjay2.push(item1) item1 = [] } else { if (kurung) { item1.push(item) } else { anjay2.push(item) } } }) let total = 0 let opt = "" let totalPrio = 0 let optPrio = "" let prio = false let optPrev = "" anjay2.map((item, index) => { if (Array.isArray(item)) { prio = true optPrev = opt item.map((items, indexs) => { if (items == "+") { optPrio = "tambah" } else if (items == "-") { optPrio = "kurang" } else if (items == "*") { optPrio = "kali" } else if (items == "/") { optPrio = "bagi" } else { if (optPrio == "tambah") { totalPrio = Number(totalPrio) + Number(items) } else if (optPrio == "kurang") { totalPrio = Number(totalPrio) - Number(items) } else if (optPrio == "kali") { totalPrio = Number(totalPrio) * Number(items) } else if (optPrio == "bagi") { totalPrio = Number(totalPrio) / Number(items) == NaN ? 0 : Number(totalPrio) / Number(items) } else { totalPrio += Number(items) } } }) if (index == anjay2.length - 1) { if (opt == "tambah") { total = Number(total) + Number(totalPrio) } else if (opt == "kurang") { total = Number(total) - Number(totalPrio) } else if (opt == "kali") { total = Number(total) * Number(totalPrio) } else if (opt == "bagi") { total = Number(total) / Number(totalPrio) == NaN ? 0 : Number(total) / Number(totalPrio) } else { total += Number(totalPrio) } } } else { if (item == "+") { opt = "tambah" if (prio) { if (optPrev == "tambah") { total = Number(total) + Number(totalPrio) } else if (optPrev == "kurang") { total = Number(total) - Number(totalPrio) } else if (optPrev == "kali") { total = Number(total) * Number(totalPrio) } else if (optPrev == "bagi") { total = Number(total) / Number(totalPrio) == NaN ? 0 : Number(total) / Number(totalPrio) } else { total += Number(totalPrio) } prio = false totalPrio = 0 optPrio = "" } } else if (item == "-") { opt = "kurang" if (prio) { if (optPrev == "tambah") { total = Number(total) + Number(totalPrio) } else if (optPrev == "kurang") { total = Number(total) - Number(totalPrio) } else if (optPrev == "kali") { total = Number(total) * Number(totalPrio) } else if (optPrev == "bagi") { total = Number(total) / Number(totalPrio) == NaN ? 0 : Number(total) / Number(totalPrio) } else { total += Number(totalPrio) } prio = false totalPrio = 0 optPrio = "" } } else if (item == "*") { opt = "kali" if (prio) { if (optPrev == "tambah") { total = Number(total) + Number(totalPrio) } else if (optPrev == "kurang") { total = Number(total) - Number(totalPrio) } else if (optPrev == "kali") { total = Number(total) * Number(totalPrio) } else if (optPrev == "bagi") { total = Number(total) / Number(totalPrio) == NaN ? 0 : Number(total) / Number(totalPrio) } else { total += Number(totalPrio) } prio = false totalPrio = 0 optPrio = "" } } else if (item == "/") { opt = "bagi" if (prio) { if (optPrev == "tambah") { total = Number(total) + Number(totalPrio) } else if (optPrev == "kurang") { total = Number(total) - Number(totalPrio) } else if (optPrev == "kali") { total = Number(total) * Number(totalPrio) } else if (optPrev == "bagi") { total = Number(total) / Number(totalPrio) == NaN ? 0 : Number(total) / Number(totalPrio) } else { total += Number(totalPrio) } prio = false totalPrio = 0 optPrio = "" } } else { if (opt == "tambah") { total = Number(total) + Number(item) } else if (opt == "kurang") { total = Number(total) - Number(item) } else if (opt == "kali") { total = Number(total) * Number(item) } else if (opt == "bagi") { total = Number(total) / Number(item) == NaN ? 0 : Number(total) / Number(item) } else { total += Number(item) } } } }) total = R.equals(total, NaN) ? "0.0" : total // // // total = R.equals(total, NaN) ? "0.0" : total // // // console.log(dataTable2[tableMeta.rowIndex][22]) // // // console.log(tableMeta.rowData[5]) // // if (tableMeta.rowData[5] == "1.5 Other non-current assets") { // // if (forecast !== undefined) { // // if (String(tableMeta.rowData[5]) == "Depreciation & amortisation") { // console.log(splitFormula) // console.log(baru) // console.log(anjay) // console.log(anjay2) // console.log(total) // // console.log(dataTable2[tableMeta.rowIndex]) // // } // // } // if (dataTable2[tableMeta.rowIndex][colIdx].value == undefined) { dataTable2[tableMeta.rowIndex][colIdx] = total // } else { // dataTable2[tableMeta.rowIndex][column].value = total // } // loading = false return total } let columns = [ { name: "", options: { display: false } }, { name: "", options: { display: false } }, { name: "", options: { display: false } }, { name: "", options: { display: false } }, { name: "", options: { display: false } }, { name: "Account", options: { customHeadRender: (columnMeta) => ( {columnMeta.name} ), setCellProps: () => ({ style }), customBodyRender: (val, tableMeta) => { return (
{tableMeta.rowData[0] === null ? tableMeta.rowData[4] == 0 ? {String(val).toUpperCase()} :
{tableMeta.rowData[0] === 4 ? "" : val}
: tableMeta.rowData[4] == 0 ? {String(tableMeta.rowData[0] === 4 ? "" : val).toUpperCase()} :
{tableMeta.rowData[0] === 4 ? "" : val}
}
) } } }, { name: `Rolling Outlook (FY${this.props.periode})`, options: { customHeadRender: (columnMeta) => ( {columnMeta.name} ), setCellProps: () => ({ style: { paddingRight: 0 } }), customBodyRender: (val, tableMeta, updateValue) => { return (
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : this.state.get_for == 'view' ? :
} />
}
) } } }, { name: `Month To Date (MTD)`, options: { customHeadRender: (columnMeta) => ( {/* {columnMeta.name} */}
{columnMeta.name}
{"Master Budget (MB)"}
{"Rolling Budget (RB)"}
{"Actual"}
), setCellProps: () => ({ style: { paddingLeft: 0, paddingRight: 0 } }), customBodyRender: (val, tableMeta, updateValue) => { // console.log(tableMeta); return (
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : // this.state.get_for == 'view'? // : // tableMeta.rowData[0] === 2 ? // // // : // tableMeta.rowData[0] === 5 || tableMeta.rowData[0] === 6 ? //
// // } // /> //
: // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 7)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 7)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // : //
// // } // /> //
}
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : // this.state.get_for == 'view'? // : // tableMeta.rowData[0] === 2 ? // // // : // tableMeta.rowData[0] === 5 || tableMeta.rowData[0] === 6 ? //
// // } // /> //
: // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 8)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 8)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // : //
// // } // /> //
}
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 ? null : this.state.get_for == 'view' ? : tableMeta.rowData[0] === 3 ?
{ handleChange(event.target.value, tableMeta) }} /> } />
: tableMeta.rowData[0] === 5 || tableMeta.rowData[0] === 6 ?
{ handleChange(event.target.value, tableMeta) }} /> } />
: tableMeta.rowData[0] === 2 ? : tableMeta.rowData[0] === 7 ? (Number(handleValueFormula(tableMeta, 9)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 9)).toFixed(1) <= Number(this.state.maxValue)) ? : :
} />
}
) } } }, { name: "Actual Previous Month", options: { customHeadRender: (columnMeta) => ( {columnMeta.name} ), setCellProps: () => ({ style: { paddingRight: 0 } }), customBodyRender: (val, tableMeta, updateValue) => { return (
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : this.state.get_for == 'view' ? : tableMeta.rowData[0] === 2 ? : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 10)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 10)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // :
} />
}
) } } }, { name: `Variance`, options: { customHeadRender: (columnMeta) => (
{columnMeta.name}
{"Act vs Previous Month"}
{"Amount"}
{"%"}
{"Act vs MB"}
{"Amount"}
{"%"}
{"Act vs RB"}
{"Amount"}
{"%"}
), setCellProps: () => ({ style: { paddingLeft: 0, paddingRight: 10 } }), customBodyRender: (val, tableMeta, updateValue) => { // console.log(tableMeta); return (
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : this.state.get_for == 'view' ? : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 11)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 11)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // :
} />
}
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : this.state.get_for == 'view' ? // : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 12)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 12)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // :
this.state.maxValue ? 'red' : 'black', fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }} type="text" placeholder="" suffix={'%'} disabled={true} value={Number(handleVariancePercent(tableMeta, 1, 3)).toFixed(1)} /> } />
}
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : this.state.get_for == 'view' ? // : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 13)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 13)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // :
} />
}
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : this.state.get_for == 'view' ? : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 14)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 14)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // :
this.state.maxValue ? 'red' : 'black', fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }} type="text" placeholder="" disabled={true} suffix={'%'} value={Number(handleVariancePercent(tableMeta, 2, 5)).toFixed(1)} /> } />
}
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : this.state.get_for == 'view' ? : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 15)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 15)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // :
} />
}
{tableMeta.rowData[0] === 4 || tableMeta.rowData[0] === 1 || tableMeta.rowData[0] === 7 ? null : this.state.get_for == 'view' ? : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 16)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 16)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // :
this.state.maxValue ? 'red' : 'black', fontSize: 12, textAlign: 'right', borderColor: 'transparent', margin: 0, width: 96, backgroundColor: 'transparent' }} type="text" placeholder="" disabled={true} suffix={'%'} value={Number(handleVariancePercent(tableMeta, 3, 7)).toFixed(1)} /> } />
}
) } } }, { name: `MTD Explanation`, options: { customHeadRender: (columnMeta) => ( {/* {columnMeta.name} */}
{columnMeta.name}
{"vs Prev Month"}
{"vs MB"}
{"vs RB"}
), setCellProps: () => ({ style: { paddingLeft: 0, paddingRight: 0 } }), customBodyRender: (val, tableMeta, updateValue) => { return (
{tableMeta.rowData[0] !== 3 ? null : (this.state.get_for == 'view' ? this.state.maxValue ? false : true} disabled={true} multiline={true} defaultValue={tableMeta.rowData[17]} inputProps={{ style: { color: 'black', textAlign: 'left' } }} /> : this.state.maxValue) ? // // { // handleText(event.target.value, tableMeta, 17) // }} // /> // // : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 17)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 17)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // : this.state.maxValue ? false : true} disabled={this.props.isApprover ? true : (this.state.get_for == 'view' ? true : false)} multiline={true} defaultValue={tableMeta.rowData[17]} inputProps={{ style: { color: Number(tableMeta.rowData[12]).toFixed(1) < this.state.minValue || Number(tableMeta.rowData[12]).toFixed(1) > this.state.maxValue ? "#5198ea" : '#5198ea', textAlign: 'left' } }} onBlur={(event) => { handleText(event.target.value, tableMeta, 17) }} /> } />)}
{tableMeta.rowData[0] !== 3 ? null : (this.state.get_for == 'view' ? this.state.maxValue ? false : true} disabled={true} multiline={true} defaultValue={tableMeta.rowData[18]} inputProps={{ style: { color: 'black', textAlign: 'left' } }} /> : this.state.maxValue) ? { handleText(event.target.value, tableMeta, 18) }} /> : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 18)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 18)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // : this.state.maxValue ? false : true} disabled={this.props.isApprover ? true : (this.state.get_for == 'view' ? true : false)} defaultValue={tableMeta.rowData[18]} inputProps={{ style: { color: Number(tableMeta.rowData[14]).toFixed(1) < this.state.minValue || Number(tableMeta.rowData[14]).toFixed(1) > this.state.maxValue ? "#5198ea" : '#5198ea', textAlign: 'left' } }} onBlur={(event) => { handleText(event.target.value, tableMeta, 18) }} /> } />)}
{tableMeta.rowData[0] !== 3 ? null : (this.state.get_for == 'view' ? this.state.maxValue ? false : true} disabled={true} multiline={true} defaultValue={tableMeta.rowData[19]} inputProps={{ style: { color: 'black', textAlign: 'left' } }} /> : this.state.maxValue) ? // // { // handleText(event.target.value, tableMeta, 19) // }} // /> // // : // tableMeta.rowData[0] === 7 ? // (Number(handleValueFormula(tableMeta, 19)).toFixed(1) >= Number(this.state.minValue) && Number(handleValueFormula(tableMeta, 19)).toFixed(1) <= Number(this.state.maxValue)) ? // : // // // // : this.state.maxValue ? false : true} disabled={this.props.isApprover ? true : (this.state.get_for == 'view' ? true : false)} defaultValue={tableMeta.rowData[19]} inputProps={{ style: { color: Number(tableMeta.rowData[16]).toFixed(1) < this.state.minValue || Number(tableMeta.rowData[16]).toFixed(1) > this.state.maxValue ? "#5198ea" : '#5198ea', textAlign: 'left' } }} onBlur={(event) => { handleText(event.target.value, tableMeta, 19) }} /> } />)}
) } } }, { 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 } } ] const loadingComponent = (
); return (
{this.state.loading && loadingComponent}
Monthly Report
this.closeAlert()}> this.closeAlert()} severity={this.state.tipeAlert}> {this.state.messageAlert}
{this.state.visibleBSMR ?
Monthly Report - Balance Sheet
{this.props.company.company_name} Period : {String(this.props.month.month_value).toLocaleUpperCase()} {this.props.periode} (rev.{this.props.revision}) {this.props.defaultCurrency.id === 1 ? in IDR mn : in USD thousand }
{!this.state.loading && ( )}
Last Updated by :
{ this.state.updateBy.length > 0 ? this.state.updateBy.reverse().map((item, index) => { return ( {item.latest_update} ) }) : - }
Notes : {this.state.notes}
Notes:
Rolling Outlook (Full Year) or Rolling Budget (RB)
Period Jan-Mar = MB figures
Period Apr-Jun = OL Q1 figures or MB figures (if OL Q1 not available)
Period Jul-Sep = OL Q2 figures or OL Q1 (if OL Q2 not available) or MB (if OL Q2 and OL Q1 not available)
Period Oct-Dec = OL Q3 figures or OL Q2 (if OL Q3 not available) and consecutive to the MB
{/* {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') ? */}
{this.props.isApprover === true ?
:
{this.state.get_for == 'view' && this.state.viewOnly && } {this.state.get_for == 'edit' && } {this.state.get_for === 'edit' && } {this.state.get_for === 'edit' && }
}
{/* : null } */}
:
Monthly Report - Balance Sheet
{this.props.company.company_name} Period : {String(this.props.month.month_value).toLocaleUpperCase()} {this.props.periode} (rev.{this.props.revision}) {this.props.defaultCurrency.id === 1 ? in IDR mn : in USD thousand }
{this.state.dataLoaded && !this.state.loading && ( )}
}
{this.state.visibleUpload && (
Upload File
{ this.fileHandler(dt) this.setState({ uploadStatus: 'idle', percentage: '0' }) }} onUpload={() => { String(this.state.judulColumn).includes("TEMPLATE") && String(this.state.judulColumn).includes("UPLOAD") && String(this.state.judul).includes("MONTHLY") && String(this.state.judul).includes("REPORT") && String(this.state.judul).includes("BALANCE") && String(this.state.judul).includes("SHEET") ? this.checkUpload() : this.setState({ alert: true, messageAlert: "Invalid Template", tipeAlert: 'warning' }) }} />
Warning: Valid currency for uploading data is {this.props.defaultCurrency.id == 1 ? "IDR" : "USD"}
)} {this.state.visibleAlertSave && (
Rate Currency USD pada periode yang dipilih belum diatur.
Silahkan menghubungi Superadmin
)}
) } }