EditReportItems.js 61.1 KB
Newer Older
EKSAD's avatar
EKSAD committed
1
import React, { Component } from 'react';
2
import { TextField, Typography, withStyles, Snackbar } from '@material-ui/core';
EKSAD's avatar
EKSAD committed
3
import { DatePicker } from '@material-ui/pickers';
EKSAD's avatar
EKSAD committed
4 5
import format from "date-fns/format";
import Autocomplete from '@material-ui/lab/Autocomplete';
6
import MuiAlert from '@material-ui/lab/Alert';
EKSAD's avatar
EKSAD committed
7
import api from '../../../api';
EKSAD's avatar
EKSAD committed
8
import * as R from 'ramda'
EKSAD's avatar
EKSAD committed
9
import { titleCase } from '../../../library/Utils';
d.arizona's avatar
d.arizona committed
10
import Images from '../../../assets/Images';
a.bairuha's avatar
a.bairuha committed
11
import Constant from '../../../library/Constant';
12 13
const Alert = withStyles({
})((props) => <MuiAlert elevation={6} variant="filled" {...props} />);
EKSAD's avatar
EKSAD committed
14

EKSAD's avatar
EKSAD committed
15
export default class EditReportItems extends Component {
EKSAD's avatar
EKSAD committed
16 17 18
    constructor(props) {
        super(props)
        this.state = {
Deni Rinaldi's avatar
Deni Rinaldi committed
19

EKSAD's avatar
EKSAD committed
20 21 22 23 24 25 26 27 28 29
            tempData: null,
            InputType: null,
            company: null,
            parent: null,
            reportType: null,
            startDate: null,
            endDate: null,
            order: null,
            description: '',
            uom: '',
30
            weight: "",
EKSAD's avatar
EKSAD committed
31 32 33 34 35 36 37 38
            formula: '',
            realVal: '',
            condition: null,
            date: new Date(),
            listInputType: null,
            listCompany: null,
            listReportType: null,
            listParent: null,
39 40 41 42
            listKPI: null,
            listMaxAch: null,
            MaxAchValue: null,
            KPIValue: null,
EKSAD's avatar
EKSAD committed
43 44 45 46 47 48
            errorOrder: false,
            errorDesc: false,
            errorFormula: false,
            errorRV: false,
            errorStartDate: false,
            errorEndDate: false,
Deni Rinaldi's avatar
Deni Rinaldi committed
49 50
            errorJenisLaporan: false,
            errorPerusahaan: false,
51
            errorCovertible: false,
Deni Rinaldi's avatar
Deni Rinaldi committed
52 53
            msgErrorJenisLaporan: '',
            msgErrorPerusahaan: '',
EKSAD's avatar
EKSAD committed
54 55 56
            msgErrorOrder: '',
            msgErrorDesc: '',
            msgErrorFormula: '',
Deni Rinaldi's avatar
Deni Rinaldi committed
57 58 59 60
            errorTipeData: false,
            msgErrorTipeData: '',
            errorCondition: false,
            msgErrorCondition: '',
EKSAD's avatar
EKSAD committed
61 62 63
            msgErrorRV: '',
            msgErrorSD: '',
            msgErrorED: '',
64
            msgErrorCovertible: '',
EKSAD's avatar
EKSAD committed
65 66 67
            disabledFormula: true,
            disabledCondt: true,
            disabledValue: true,
68 69 70
            options: ['WARNING', 'STOPPER'],
            alert: false,
            tipeAlert: '',
a.bairuha's avatar
a.bairuha committed
71 72 73
            messageAlert: '',
            kpiType: ['HIG', 'HIB'],
            maxAch: ['50%', '100%', 'Unlimited'],
d.arizona's avatar
d.arizona committed
74
            formulaYtd: ['SUM', 'AVG', 'LAST', 'FORMULA'],
a.bairuha's avatar
a.bairuha committed
75 76
            kpiTypeValue: null,
            maxAchValue: null,
77 78 79 80 81 82 83 84 85 86 87 88
            formulaYTDValue: null,
            convertible: null,
            listConvert: [
                {
                    "id": 0,
                    "value": "No"
                },
                {
                    "id": 1,
                    "value": "Yes"
                }
            ],
EKSAD's avatar
EKSAD committed
89 90 91 92 93

        }
    }

    componentDidMount() {
EKSAD's avatar
EKSAD committed
94
        this.getDetailReportItems();
Deni Rinaldi's avatar
Deni Rinaldi committed
95

EKSAD's avatar
EKSAD committed
96 97
    }

EKSAD's avatar
EKSAD committed
98 99 100 101 102 103 104 105 106 107 108 109
    handleChange(e, type) {
        let data = this.state
        let isDate = type !== '' ? true : false
        if (isDate && type === 'start_date') {
            this.setState({
                ...data, tempData: { ...this.state.tempData, start_date: format(e, 'yyyy-MM-dd'), end_date: null },
                errorOrder: false,
                errorDesc: false,
                errorFormula: false,
                errorRV: false,
                errorStartDate: false,
                errorEndDate: false,
110
                errorCovertible: false,
EKSAD's avatar
EKSAD committed
111 112 113 114 115 116
                msgErrorOrder: '',
                msgErrorDesc: '',
                msgErrorFormula: '',
                msgErrorRV: '',
                msgErrorSD: '',
                msgErrorED: '',
117
                msgErrorCovertible: '',
EKSAD's avatar
EKSAD committed
118 119 120 121 122 123 124 125 126 127
            })
        } else if (isDate && type === 'end_date') {
            this.setState({
                ...data, tempData: { ...this.state.tempData, end_date: format(e, 'yyyy-MM-dd') },
                errorOrder: false,
                errorDesc: false,
                errorFormula: false,
                errorRV: false,
                errorStartDate: false,
                errorEndDate: false,
128
                errorCovertible: false,
EKSAD's avatar
EKSAD committed
129 130 131 132 133 134
                msgErrorOrder: '',
                msgErrorDesc: '',
                msgErrorFormula: '',
                msgErrorRV: '',
                msgErrorSD: '',
                msgErrorED: '',
135
                msgErrorCovertible: '',
EKSAD's avatar
EKSAD committed
136 137 138 139 140 141 142 143 144 145
            })
        } else {
            this.setState({
                ...data, tempData: { ...this.state.tempData, [e.target.name]: e.target.value },
                errorOrder: false,
                errorDesc: false,
                errorFormula: false,
                errorRV: false,
                errorStartDate: false,
                errorEndDate: false,
146
                errorCovertible: false,
EKSAD's avatar
EKSAD committed
147 148 149 150 151 152
                msgErrorOrder: '',
                msgErrorDesc: '',
                msgErrorFormula: '',
                msgErrorRV: '',
                msgErrorSD: '',
                msgErrorED: '',
153
                msgErrorCovertible: '',
EKSAD's avatar
EKSAD committed
154 155 156 157 158 159
            })
        }
    }

    validasi() {
        // alert('coba ya')
160 161 162 163
        if (R.isNil(this.state.reportType)) {
            this.setState({ errorJenisLaporan: true, msgErrorJenisLaporan: 'Report Type Cannot be Empty' })
        } else if (R.isNil(this.state.company)) {
            this.setState({ errorPerusahaan: true, msgErrorPerusahaan: 'Company Name Cannot be Empty' })
Deni Rinaldi's avatar
Deni Rinaldi committed
164
        } else if (R.isEmpty(this.state.tempData.order)) {
EKSAD's avatar
EKSAD committed
165
            this.setState({ errorOrder: true, msgErrorOrder: 'Order Cannot be Empty' })
EKSAD's avatar
EKSAD committed
166
        } else if (R.isEmpty(this.state.tempData.description)) {
EKSAD's avatar
EKSAD committed
167
            this.setState({ errorDesc: true, msgErrorDesc: 'Description Cannot be Empty' })
Deni Rinaldi's avatar
Deni Rinaldi committed
168
        } else if (R.isNil(this.state.InputType)) {
EKSAD's avatar
EKSAD committed
169
            this.setState({ errorTipeData: true, msgErrorTipeData: 'Data Type Cannot be Empty' })
a.bairuha's avatar
a.bairuha committed
170
        } else if ((this.state.InputType.type_item_report_name === 'Formula' && R.isEmpty(this.state.tempData.formula)) || (this.state.InputType.type_item_report_name === 'Validation' && R.isEmpty(this.state.tempData.formula))) {
EKSAD's avatar
EKSAD committed
171
            this.setState({ errorFormula: true, msgErrorFormula: 'Formula Cannot be Empty' })
a.bairuha's avatar
a.bairuha committed
172
        } else if (this.state.InputType.type_item_report_name === 'Validation' && R.isEmpty(this.state.tempData.condition_it_should_be)) {
EKSAD's avatar
EKSAD committed
173
            this.setState({ errorRV: true, msgErrorRV: 'True Value Cannot be Empty' })
a.bairuha's avatar
a.bairuha committed
174
        } else if (this.state.InputType.type_item_report_name === 'Validation' && R.isNil(this.state.tempData.condition_if_wrong)) {
EKSAD's avatar
EKSAD committed
175
            this.setState({ errorCondition: true, msgErrorCondition: 'False Condition Cannot be Empty' })
Deni Rinaldi's avatar
Deni Rinaldi committed
176
        } else if (R.isNil(this.state.tempData.start_date)) {
EKSAD's avatar
EKSAD committed
177
            this.setState({ errorStartDate: true, msgErrorSD: 'Valid From Cannot be Empty' })
EKSAD's avatar
EKSAD committed
178
        } else if (R.isNil(this.state.tempData.end_date)) {
179 180
            this.setState({errorEndDate: true, msgErrorED: 'Valid To Cannot be Empty'})
        } else if (R.isNil(this.state.convertible)) {
181
            this.setState({errorCovertible: true, msgErrorCovertible: 'Convertible Cannot be Empty' })
EKSAD's avatar
EKSAD committed
182
        } else {
EKSAD's avatar
EKSAD committed
183
            this.updateReportItems()
EKSAD's avatar
EKSAD committed
184 185 186 187
        }

    }

EKSAD's avatar
EKSAD committed
188 189 190
    updateReportItems() {
        // alert('test')
        let payload = {
d.arizona's avatar
d.arizona committed
191
            "item_report_id": this.state.tempData.item_report_id,
Deni Rinaldi's avatar
Deni Rinaldi committed
192 193
            "report_id": this.state.reportType == null ? this.state.tempData.report_id : this.state.reportType.report_id,
            "company_id": this.state.company == null ? this.state.tempData.company_id : this.state.company.company_id,
EKSAD's avatar
EKSAD committed
194 195
            "description": this.state.tempData.description,
            "orders": this.state.tempData.order,
Deni Rinaldi's avatar
Deni Rinaldi committed
196
            "parent": this.state.parent == null ? null : this.state.parent.item_report_id,
a.bairuha's avatar
a.bairuha committed
197
            "type_report_id": this.state.InputType == null ? this.state.tempData.type_item_report_id : this.state.InputType.type_item_report_id,
EKSAD's avatar
EKSAD committed
198 199
            "formula": this.state.tempData.formula,
            "uom": this.state.tempData.uom,
Deni Rinaldi's avatar
Deni Rinaldi committed
200
            "weight": this.state.tempData.weight == null ? "" : this.state.tempData.weight,
EKSAD's avatar
EKSAD committed
201 202
            "condition_if_wrong": this.state.tempData.condition_if_wrong,
            "condition_it_should_be": this.state.tempData.condition_it_should_be,
a.bairuha's avatar
a.bairuha committed
203 204 205
            "type_kpi": this.state.tempData.kpi_type,
            "max_ach": this.state.tempData.max_ach,
            "formula_ytd": this.state.tempData.formula_ytd,
EKSAD's avatar
EKSAD committed
206
            "start_date": this.state.tempData.start_date,
207 208
            "end_date": this.state.tempData.end_date,
            "is_can_convert_value": this.state.convertible.id
EKSAD's avatar
EKSAD committed
209
        }
EKSAD's avatar
EKSAD committed
210
        // console.log(payload)
211
        this.props.updateReportItems(payload)
EKSAD's avatar
EKSAD committed
212 213
    }

EKSAD's avatar
EKSAD committed
214
    getDetailReportItems() {
EKSAD's avatar
EKSAD committed
215
        api.create().getDetailReportItems(this.props.data[1]).then((response) => {
216
            console.log(response);
217
            if (response.data) {
a.bairuha's avatar
a.bairuha committed
218 219 220
                if (response.ok) {
                    if (response.data.status === 'success') {
                        let data = response.data.data
221
                        let index = this.state.listConvert.findIndex((val) => val.id === data.is_can_convert_value)
222
                        this.setState({
a.bairuha's avatar
a.bairuha committed
223
                            tempData: response.data.data,
224 225
                            getCompanyID: data.company_id,
                            convertible: index === -1 ? null : this.state.listConvert[index]
226 227 228
                        }, () => this.getInputType(),
                            this.getPerusahaan(),
                            this.getReportType())
229
                        // console.log(this.state.convertible)
a.bairuha's avatar
a.bairuha committed
230 231
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
232
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
a.bairuha's avatar
a.bairuha committed
233 234 235 236 237 238 239
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
                    }
240
                } else {
a.bairuha's avatar
a.bairuha committed
241
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
242
                }
EKSAD's avatar
EKSAD committed
243
            } else {
244
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
EKSAD's avatar
EKSAD committed
245 246 247 248 249 250 251
            }
        })
    }

    getInputType() {
        api.create().getInputType().then((response) => {
            // console.log(response)
252
            if (response.data) {
a.bairuha's avatar
a.bairuha committed
253 254 255 256 257 258 259 260 261 262 263 264 265
                if (response.ok) {
                    if (response.data.status === 'success') {
                        let data = response.data.data
                        let inputData = data.map((item) => {
                            return {
                                type_item_report_id: item.type_item_report_id,
                                type_item_report_name: item.type_item_report_name
                            }
                        })
                        let defaultProps = {
                            options: inputData,
                            getOptionLabel: (option) => titleCase(option.type_item_report_name),
                        };
Deni Rinaldi's avatar
Deni Rinaldi committed
266

a.bairuha's avatar
a.bairuha committed
267 268 269 270
                        let index = inputData.findIndex((val) => val.type_item_report_id === this.state.tempData.type_item_report_id)
                        this.setState({ listInputType: defaultProps, InputType: index === -1 ? null : inputData[index] })
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
271
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
a.bairuha's avatar
a.bairuha committed
272 273 274 275 276 277 278
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
                    }
279
                } else {
a.bairuha's avatar
a.bairuha committed
280
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
281
                }
EKSAD's avatar
EKSAD committed
282
            } else {
283
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
EKSAD's avatar
EKSAD committed
284 285 286 287 288 289
            }
        })
    }

    getPerusahaan() {
        api.create().getPerusahaanActive().then((response) => {
EKSAD's avatar
EKSAD committed
290
            // console.log(response)
291
            if (response.data) {
a.bairuha's avatar
a.bairuha committed
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
                if (response.ok) {
                    if (response.data.status === 'success') {
                        let data = response.data.data
                        let companyData = data.map((item) => {
                            return {
                                company_id: item.company_id,
                                company_name: item.company_name
                            }
                        })
                        companyData.push({
                            company_id: 0,
                            company_name: 'Default'
                        })
                        let index = companyData.sort((a, b) => a.company_id - b.company_id).findIndex((val) => val.company_id == this.state.getCompanyID)
                        let defaultProps = {
                            options: companyData,
                            getOptionLabel: (option) => option.company_name,
                        };
                        // let index = companyData.findIndex((val) => val.company_id === this.state.tempData.company_id)
311 312 313 314 315 316 317
                        this.setState({ listCompany: defaultProps, companyData: response.data.data, company: index === -1 ? null : companyData[index], msgErrorPerusahaan: index === -1 ? 'Company has been Inactive.' : "", errorPerusahaan: index === -1 ? true : false }, () => {
                            this.getParent()
                            this.getKPIType()
                            this.getMaxAch()
                        })
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
318
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
                    }
                } else {
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
                }
            } else {
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
            }
        })
    }

    getKPIType() {
        let body = {
            group: 'CAT',
            company_id: this.state.company.company_id,
            type: 'KPI_TYPE'
        }
        api.create().getAllSettingByType(body).then(response => {
            if (response.data) {
                if (response.ok) {
                    if (response.data.status === 'success') {
                        let data = response.data.data
                        let inputKPI = data.map((item) => {
                            return {
                                value: item.value
                            }
                        })
                        let defaultProps = {
                            options: inputKPI,
                            getOptionLabel: (option) => titleCase(option.value),
                        };
                        let index = inputKPI.findIndex((val) => val.value === this.state.tempData.kpi_type)
356
                        this.setState({ listKPI: defaultProps, inputKPI: response.data.data, KPIValue: index === -1 ? null : inputKPI[index] })
a.bairuha's avatar
a.bairuha committed
357 358
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
359
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
a.bairuha's avatar
a.bairuha committed
360 361 362 363 364 365
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
                        // alert(response.data.message)
                    }
                } else {
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
                }
            } else {
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
            }
        })
    }

    getMaxAch() {
        let body = {
            group: 'CAT',
            company_id: this.state.company.company_id,
            type: 'MAX_ACHIEVEMENT'
        }
        api.create().getAllSettingByType(body).then(response => {
            if (response.data) {
                if (response.ok) {
                    if (response.data.status === 'success') {
                        let data = response.data.data
                        let inputMaxAch = data.map((item) => {
                            return {
                                value: item.value
                            }
                        })
                        let defaultProps = {
                            options: inputMaxAch,
                            getOptionLabel: (option) => titleCase(option.value),
                        };
                        let index = inputMaxAch.findIndex((val) => val.value === this.state.tempData.max_ach)
                        this.setState({ listMaxAch: defaultProps, inputMaxAch: response.data.data, MaxAchValue: index === -1 ? null : inputMaxAch[index] })
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
401
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
402 403 404 405 406 407 408
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
                        // alert(response.data.message)
a.bairuha's avatar
a.bairuha committed
409
                    }
410
                } else {
a.bairuha's avatar
a.bairuha committed
411
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
412
                }
EKSAD's avatar
EKSAD committed
413
            } else {
414
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
EKSAD's avatar
EKSAD committed
415 416 417 418 419 420
            }
        })
    }

    getReportType() {
        api.create().getReportType().then((response) => {
EKSAD's avatar
EKSAD committed
421
            // console.log(response)
422
            if (response.data) {
a.bairuha's avatar
a.bairuha committed
423 424 425 426 427 428 429 430 431 432 433 434 435
                if (response.ok) {
                    if (response.data.status === 'success') {
                        let data = response.data.data
                        let reportTypeData = data.map((item) => {
                            return {
                                report_id: item.report_id,
                                report_name: item.report_name,
                            }
                        })
                        let defaultProps = {
                            options: reportTypeData,
                            getOptionLabel: (option) => titleCase(option.report_name),
                        };
EKSAD's avatar
EKSAD committed
436

a.bairuha's avatar
a.bairuha committed
437 438 439 440
                        let index = reportTypeData.findIndex((val) => val.report_id === this.state.tempData.report_id)
                        this.setState({ listReportType: defaultProps, reportType: index === -1 ? null : reportTypeData[index] }, () => this.getParent())
                    } else {
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
441
                            if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
a.bairuha's avatar
a.bairuha committed
442 443 444 445 446 447 448
                                setTimeout(() => {
                                    localStorage.removeItem(Constant.TOKEN)
                                    window.location.reload();
                                }, 1000);
                            }
                        })
                    }
449
                } else {
a.bairuha's avatar
a.bairuha committed
450
                    this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
451
                }
EKSAD's avatar
EKSAD committed
452
            } else {
453
                this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
EKSAD's avatar
EKSAD committed
454 455 456 457 458
            }
        })
    }

    getParent() {
d.arizona's avatar
d.arizona committed
459
        if (this.state.reportType !== null && this.state.company !== null) {
EKSAD's avatar
EKSAD committed
460
            // console.log(this.state.tempData.item_report_id)
d.arizona's avatar
d.arizona committed
461 462 463
            let payload = {
                "report_id": this.state.reportType.report_id,
                "company_id": this.state.company.company_id
EKSAD's avatar
EKSAD committed
464
            }
d.arizona's avatar
d.arizona committed
465
            api.create().getReportParent(payload).then((response) => {
EKSAD's avatar
EKSAD committed
466
                // console.log(response)
467
                if (response.data) {
a.bairuha's avatar
a.bairuha committed
468 469 470 471 472 473 474 475 476 477 478 479
                    if (response.ok) {
                        if (response.data.status === 'success') {
                            let data = response.data.data
                            let currentIndex = null
                            let parentData = data.map((item, index) => {
                                if (this.state.tempData.item_report_id !== item.item_report_id) {
                                    return {
                                        item_report_id: item.item_report_id,
                                        description: item.description
                                    }
                                } else {
                                    currentIndex = index
EKSAD's avatar
EKSAD committed
480
                                }
a.bairuha's avatar
a.bairuha committed
481 482 483
                            })
                            if (currentIndex !== null) {
                                parentData.splice(currentIndex, 1)
484
                            }
EKSAD's avatar
EKSAD committed
485
                            // console.log(parentData)
a.bairuha's avatar
a.bairuha committed
486 487 488 489 490 491 492 493
                            let defaultProps = {
                                options: parentData,
                                getOptionLabel: (option) => titleCase(option.description),
                            };
                            let index = parentData.findIndex((val) => val.item_report_id === this.state.tempData.parent)
                            this.setState({ listParent: defaultProps, parent: index == -1 ? null : parentData[index] })
                        } else {
                            this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'warning' }, () => {
d.arizona's avatar
d.arizona committed
494
                                if (response.data.message.includes("Someone Logged In") || response.data.message.includes("Token Expired")) {
a.bairuha's avatar
a.bairuha committed
495 496 497 498 499 500
                                    setTimeout(() => {
                                        localStorage.removeItem(Constant.TOKEN)
                                        window.location.reload();
                                    }, 1000);
                                }
                            })
EKSAD's avatar
EKSAD committed
501
                        }
502
                    } else {
a.bairuha's avatar
a.bairuha committed
503
                        this.setState({ alert: true, messageAlert: response.data.message, tipeAlert: 'error' })
504
                    }
d.arizona's avatar
d.arizona committed
505
                } else {
506
                    this.setState({ alert: true, messageAlert: response.problem, tipeAlert: 'error' })
d.arizona's avatar
d.arizona committed
507 508 509
                }
            })
        }
EKSAD's avatar
EKSAD committed
510
    }
Deni Rinaldi's avatar
Deni Rinaldi committed
511 512 513 514 515 516

    clearMessage() {
        this.setState({
            errorFormula: false, msgErrorFormula: '',
            errorTipeData: false, msgErrorTipeData: '',
            errorCondition: false, msgErrorCondition: '',
Deni Rinaldi's avatar
Deni Rinaldi committed
517 518 519
            errorRV: false, msgErrorRV: '',
            errorJenisLaporan: false, msgErrorJenisLaporan: '',
            errorPerusahaan: false, msgErrorPerusahaan: ''
Deni Rinaldi's avatar
Deni Rinaldi committed
520 521 522
        })
    }

523 524 525 526
    closeAlert() {
        this.setState({ alert: false })
    }

EKSAD's avatar
EKSAD committed
527 528 529 530 531
    render() {

        return (
            <div className="test app-popup-show">
                <div className="popup-content background-white border-radius" style={{ borderRadius: 8 }}>
EKSAD's avatar
EKSAD committed
532
                    <div className="popup-panel grid grid-2x main-color" style={{ height: 64, borderTopRightRadius: 8, borderTopLeftRadius: 8 }}>
EKSAD's avatar
EKSAD committed
533 534 535 536 537 538 539 540 541 542 543
                        <div className="col-1" style={{ maxWidth: "inherit", display: 'flex', alignItems: 'center' }}>
                            <div className="popup-title">
                                <span style={{ color: '#fff', fontSize: 16, fontWeight: 'bold' }}>Edit Data</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.props.onClickClose()}
                            >
Deni Rinaldi's avatar
Deni Rinaldi committed
544
                                <img src={Images.close} />
EKSAD's avatar
EKSAD committed
545 546 547
                            </button>
                        </div>
                    </div>
548 549 550 551 552
                    <Snackbar open={this.state.alert} autoHideDuration={6000} onClose={() => this.closeAlert()}>
                        <Alert onClose={() => this.closeAlert()} severity={this.state.tipeAlert}>
                            {this.state.messageAlert}
                        </Alert>
                    </Snackbar>
EKSAD's avatar
EKSAD committed
553

EKSAD's avatar
EKSAD committed
554
                    <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
EKSAD's avatar
EKSAD committed
555
                        <div className="column-1">
a.bairuha's avatar
a.bairuha committed
556
                            <div className="margin-top-10px" style={{ backgroundColor: '#e8e8e8', padding: 10, borderRadius: 5 }}>
EKSAD's avatar
EKSAD committed
557 558
                                <TextField
                                    style={{ width: '100%' }}
EKSAD's avatar
EKSAD committed
559
                                    value={this.state.tempData === null ? '' : this.state.tempData.item_report_id}
EKSAD's avatar
EKSAD committed
560 561 562
                                    id="ID"
                                    label="ID"
                                    disabled
EKSAD's avatar
EKSAD committed
563
                                    onChange={(e) => null}
EKSAD's avatar
EKSAD committed
564 565 566
                                    inputProps={{
                                        style: {
                                            fontSize: 11,
EKSAD's avatar
EKSAD committed
567
                                            fontFamily: 'Nunito Sans, sans-serif'
EKSAD's avatar
EKSAD committed
568 569 570 571 572 573
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
EKSAD's avatar
EKSAD committed
574
                                            color: '#7e8085'
EKSAD's avatar
EKSAD committed
575 576 577 578
                                        }
                                    }}
                                />
                            </div>
EKSAD's avatar
EKSAD committed
579 580
                        </div>
                        <div className="column-2">
Deni Rinaldi's avatar
Deni Rinaldi committed
581
                            <div className="margin-top-10px" style={{ padding: 10 }}>
EKSAD's avatar
EKSAD committed
582 583 584
                                <Autocomplete
                                    {...this.state.listReportType}
                                    id="reportType"
585 586 587
                                    onChange={(event, newInputValue) => this.setState({ reportType: newInputValue }, () =>
                                        newInputValue == null || (newInputValue.report_name !== 'CAT') ? this.setState({ tempData: { ...this.state.tempData, kpi_type: null, max_ach: null, formula_ytd: null } }, () => this.getParent(), this.clearMessage())
                                            : this.getParent(), this.clearMessage()
a.bairuha's avatar
a.bairuha committed
588
                                    )}
EKSAD's avatar
EKSAD committed
589
                                    debug
Deni Rinaldi's avatar
Deni Rinaldi committed
590 591
                                    renderInput={(params) =>
                                        <TextField {...params}
592
                                            label="Report Type"
EKSAD's avatar
EKSAD committed
593 594 595 596 597 598 599
                                            InputLabelProps={{
                                                style: {
                                                    fontSize: 11,
                                                    fontFamily: 'Nunito Sans, sans-serif',
                                                    color: '#7e8085'
                                                }
                                            }}
Deni Rinaldi's avatar
Deni Rinaldi committed
600 601
                                            error={this.state.errorJenisLaporan}
                                            helperText={this.state.msgErrorJenisLaporan}
EKSAD's avatar
EKSAD committed
602 603 604 605 606 607 608 609 610
                                            InputProps={{ ...params.InputProps, style: { fontSize: 11, fontFamily: 'Nunito Sans, sans-serif' } }}
                                        />}
                                    value={this.state.reportType}
                                />
                            </div>
                        </div>
                    </div>
                    <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
                        <div className="column-1">
Deni Rinaldi's avatar
Deni Rinaldi committed
611
                            <div className="margin-top-10px" style={{ padding: 10 }} >
EKSAD's avatar
EKSAD committed
612 613
                                <Autocomplete
                                    {...this.state.listCompany}
EKSAD's avatar
EKSAD committed
614
                                    id="company"
Deni Rinaldi's avatar
Deni Rinaldi committed
615
                                    onChange={(event, newInputValue) => this.setState({ company: newInputValue }, () => this.getParent(), this.clearMessage())}
EKSAD's avatar
EKSAD committed
616
                                    debug
Deni Rinaldi's avatar
Deni Rinaldi committed
617 618
                                    renderInput={(params) =>
                                        <TextField {...params}
EKSAD's avatar
EKSAD committed
619
                                            label="Company Name"
EKSAD's avatar
EKSAD committed
620 621 622 623 624 625 626
                                            InputLabelProps={{
                                                style: {
                                                    fontSize: 11,
                                                    fontFamily: 'Nunito Sans, sans-serif',
                                                    color: '#7e8085'
                                                }
                                            }}
Deni Rinaldi's avatar
Deni Rinaldi committed
627 628
                                            error={this.state.errorPerusahaan}
                                            helperText={this.state.msgErrorPerusahaan}
EKSAD's avatar
EKSAD committed
629
                                            InputProps={{ ...params.InputProps, style: { fontSize: 11, fontFamily: 'Nunito Sans, sans-serif' } }}
EKSAD's avatar
EKSAD committed
630 631 632
                                        />}
                                    value={this.state.company}
                                />
EKSAD's avatar
EKSAD committed
633
                            </div>
EKSAD's avatar
EKSAD committed
634 635 636
                        </div>
                        <div className="column-2">
                            <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
EKSAD's avatar
EKSAD committed
637 638
                                <TextField
                                    style={{ width: '100%' }}
EKSAD's avatar
EKSAD committed
639 640 641
                                    id="order"
                                    label="Order"
                                    name="order"
642
                                    type="number"
EKSAD's avatar
EKSAD committed
643 644 645
                                    value={this.state.tempData === null ? '' : this.state.tempData.order}
                                    error={this.state.errorOrder}
                                    helperText={this.state.msgErrorOrder}
d.arizona's avatar
d.arizona committed
646
                                    onChange={(e) => this.handleChange(e, '')}
EKSAD's avatar
EKSAD committed
647
                                    inputProps={{
648
                                        min: 0,
EKSAD's avatar
EKSAD committed
649 650
                                        style: {
                                            fontSize: 11,
EKSAD's avatar
EKSAD committed
651
                                            fontFamily: 'Nunito Sans, sans-serif'
EKSAD's avatar
EKSAD committed
652 653 654 655 656 657
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
EKSAD's avatar
EKSAD committed
658
                                            color: '#7e8085'
EKSAD's avatar
EKSAD committed
659 660 661 662 663
                                        }
                                    }}
                                >
                                </TextField>
                            </div>
EKSAD's avatar
EKSAD committed
664 665 666 667
                        </div>
                    </div>
                    <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
                        <div className="column-1">
Deni Rinaldi's avatar
Deni Rinaldi committed
668
                            <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
EKSAD's avatar
EKSAD committed
669 670
                                <TextField
                                    style={{ width: '100%' }}
EKSAD's avatar
EKSAD committed
671
                                    id="description"
672
                                    label="Description"
EKSAD's avatar
EKSAD committed
673 674 675
                                    name="description"
                                    error={this.state.errorDesc}
                                    helperText={this.state.msgErrorDesc}
d.arizona's avatar
d.arizona committed
676
                                    onChange={(e) => this.handleChange(e, '')}
EKSAD's avatar
EKSAD committed
677
                                    value={this.state.tempData === null ? '' : this.state.tempData.description}
EKSAD's avatar
EKSAD committed
678 679 680
                                    inputProps={{
                                        style: {
                                            fontSize: 11,
EKSAD's avatar
EKSAD committed
681
                                            fontFamily: 'Nunito Sans, sans-serif'
EKSAD's avatar
EKSAD committed
682 683 684 685 686 687
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
EKSAD's avatar
EKSAD committed
688
                                            color: '#7e8085'
EKSAD's avatar
EKSAD committed
689 690 691 692 693
                                        }
                                    }}
                                >
                                </TextField>
                            </div>
EKSAD's avatar
EKSAD committed
694 695
                        </div>
                        <div className="column-2">
Deni Rinaldi's avatar
Deni Rinaldi committed
696
                            <div className="margin-top-10px" style={{ padding: 10 }} >
EKSAD's avatar
EKSAD committed
697
                                <Autocomplete
EKSAD's avatar
EKSAD committed
698 699
                                    {...this.state.listParent}
                                    id="parentId"
Deni Rinaldi's avatar
Deni Rinaldi committed
700
                                    onChange={(event, newInputValue) => this.setState({ parent: newInputValue })}
EKSAD's avatar
EKSAD committed
701
                                    disabled={this.state.reportType == null || this.state.company == null}
EKSAD's avatar
EKSAD committed
702
                                    debug
Deni Rinaldi's avatar
Deni Rinaldi committed
703 704 705
                                    renderInput={(params) =>
                                        <TextField {...params}
                                            label="Parent ID"
EKSAD's avatar
EKSAD committed
706 707 708 709 710 711 712
                                            InputLabelProps={{
                                                style: {
                                                    fontSize: 11,
                                                    fontFamily: 'Nunito Sans, sans-serif',
                                                    color: '#7e8085'
                                                }
                                            }}
EKSAD's avatar
EKSAD committed
713
                                            InputProps={{ ...params.InputProps, style: { fontSize: 11, fontFamily: 'Nunito Sans, sans-serif' } }}
EKSAD's avatar
EKSAD committed
714
                                        />}
EKSAD's avatar
EKSAD committed
715
                                    value={this.state.parent}
EKSAD's avatar
EKSAD committed
716 717
                                />
                            </div>
EKSAD's avatar
EKSAD committed
718 719 720 721
                        </div>
                    </div>
                    <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
                        <div className="column-1">
Deni Rinaldi's avatar
Deni Rinaldi committed
722
                            <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
EKSAD's avatar
EKSAD committed
723 724
                                <TextField
                                    style={{ width: '100%' }}
EKSAD's avatar
EKSAD committed
725 726 727 728 729
                                    id="uom"
                                    label="UOM"
                                    name="uom"
                                    onChange={(e) => this.handleChange(e, '')}
                                    value={this.state.tempData === null ? '' : this.state.tempData.uom}
EKSAD's avatar
EKSAD committed
730 731 732
                                    inputProps={{
                                        style: {
                                            fontSize: 11,
EKSAD's avatar
EKSAD committed
733
                                            fontFamily: 'Nunito Sans, sans-serif'
EKSAD's avatar
EKSAD committed
734 735 736 737 738 739
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
EKSAD's avatar
EKSAD committed
740
                                            color: '#7e8085'
EKSAD's avatar
EKSAD committed
741 742
                                        }
                                    }}
EKSAD's avatar
EKSAD committed
743 744
                                >
                                </TextField>
EKSAD's avatar
EKSAD committed
745 746 747
                            </div>
                        </div>
                        <div className="column-2">
Deni Rinaldi's avatar
Deni Rinaldi committed
748
                            <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
EKSAD's avatar
EKSAD committed
749 750
                                <TextField
                                    style={{ width: '100%' }}
EKSAD's avatar
EKSAD committed
751 752 753
                                    id="weight"
                                    label="Weight"
                                    name="weight"
EKSAD's avatar
EKSAD committed
754
                                    onChange={(e) => this.handleChange(e, '')}
EKSAD's avatar
EKSAD committed
755
                                    value={this.state.tempData === null ? '' : this.state.tempData.weight}
EKSAD's avatar
EKSAD committed
756 757 758
                                    inputProps={{
                                        style: {
                                            fontSize: 11,
EKSAD's avatar
EKSAD committed
759
                                            fontFamily: 'Nunito Sans, sans-serif'
EKSAD's avatar
EKSAD committed
760 761 762 763 764 765
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
EKSAD's avatar
EKSAD committed
766
                                            color: '#7e8085'
EKSAD's avatar
EKSAD committed
767 768 769 770 771
                                        }
                                    }}
                                >
                                </TextField>
                            </div>
EKSAD's avatar
EKSAD committed
772 773 774 775
                        </div>
                    </div>
                    <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
                        <div className="column-1">
Deni Rinaldi's avatar
Deni Rinaldi committed
776
                            <div className="margin-top-10px" style={{ padding: 10 }}>
EKSAD's avatar
EKSAD committed
777
                                <Autocomplete
EKSAD's avatar
EKSAD committed
778 779
                                    {...this.state.listInputType}
                                    id="inputType"
Deni Rinaldi's avatar
Deni Rinaldi committed
780 781 782 783 784 785
                                    onChange={(event, newInputValue) =>
                                        this.setState({
                                            InputType: newInputValue,
                                            tempData: { ...this.state.tempData, formula: '', condition_it_should_be: '', condition_if_wrong: '' },
                                        },
                                            () => console.log(this.state.InputType), this.clearMessage())}
EKSAD's avatar
EKSAD committed
786
                                    debug
Deni Rinaldi's avatar
Deni Rinaldi committed
787 788
                                    renderInput={(params) =>
                                        <TextField {...params}
789
                                            label="Data Type"
EKSAD's avatar
EKSAD committed
790 791 792 793 794 795 796
                                            InputLabelProps={{
                                                style: {
                                                    fontSize: 11,
                                                    fontFamily: 'Nunito Sans, sans-serif',
                                                    color: '#7e8085'
                                                }
                                            }}
Deni Rinaldi's avatar
Deni Rinaldi committed
797 798
                                            error={this.state.errorTipeData}
                                            helperText={this.state.msgErrorTipeData}
EKSAD's avatar
EKSAD committed
799
                                            InputProps={{ ...params.InputProps, style: { fontSize: 11, fontFamily: 'Nunito Sans, sans-serif' } }}
EKSAD's avatar
EKSAD committed
800
                                        />}
EKSAD's avatar
EKSAD committed
801
                                    value={this.state.InputType}
EKSAD's avatar
EKSAD committed
802
                                />
EKSAD's avatar
EKSAD committed
803
                            </div>
EKSAD's avatar
EKSAD committed
804 805 806
                        </div>
                        <div className="column-2">
                            <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
EKSAD's avatar
EKSAD committed
807 808
                                <TextField
                                    style={{ width: '100%' }}
EKSAD's avatar
EKSAD committed
809 810
                                    id="formula"
                                    label="Formula"
EKSAD's avatar
EKSAD committed
811
                                    disabled={this.state.InputType == null ? true : (this.state.InputType.type_item_report_name === 'Formula' || this.state.InputType.type_item_report_name === 'Validation' || this.state.InputType.type_item_report_name === 'Formula - Summary' ? false : true)}
EKSAD's avatar
EKSAD committed
812 813 814
                                    name="formula"
                                    error={this.state.errorFormula}
                                    helperText={this.state.msgErrorFormula}
d.arizona's avatar
d.arizona committed
815
                                    onChange={(e) => this.handleChange(e, '')}
EKSAD's avatar
EKSAD committed
816
                                    value={this.state.tempData === null ? '' : this.state.tempData.formula}
EKSAD's avatar
EKSAD committed
817 818 819
                                    inputProps={{
                                        style: {
                                            fontSize: 11,
EKSAD's avatar
EKSAD committed
820
                                            fontFamily: 'Nunito Sans, sans-serif'
EKSAD's avatar
EKSAD committed
821 822 823 824 825 826
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
EKSAD's avatar
EKSAD committed
827
                                            color: '#7e8085'
EKSAD's avatar
EKSAD committed
828 829 830 831 832
                                        }
                                    }}
                                >
                                </TextField>
                            </div>
EKSAD's avatar
EKSAD committed
833 834 835 836 837
                        </div>
                    </div>
                    <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
                        <div className="column-1">
                            <div className="margin-top-10px" style={{ padding: 10 }}>
EKSAD's avatar
EKSAD committed
838 839
                                <TextField
                                    style={{ width: '100%' }}
EKSAD's avatar
EKSAD committed
840
                                    id="condition_it_should_be"
841
                                    label="True Value"
EKSAD's avatar
EKSAD committed
842 843
                                    error={this.state.errorRV}
                                    helperText={this.state.msgErrorRV}
a.bairuha's avatar
a.bairuha committed
844
                                    disabled={this.state.InputType == null ? true : (this.state.InputType.type_item_report_name === 'Validation' ? false : true)}
Deni Rinaldi's avatar
Deni Rinaldi committed
845 846
                                    name="condition_it_should_be"
                                    onChange={(e) => this.handleChange(e, '')}
EKSAD's avatar
EKSAD committed
847
                                    value={this.state.tempData === null ? '' : this.state.tempData.condition_it_should_be}
EKSAD's avatar
EKSAD committed
848 849 850
                                    inputProps={{
                                        style: {
                                            fontSize: 11,
EKSAD's avatar
EKSAD committed
851
                                            fontFamily: 'Nunito Sans, sans-serif'
EKSAD's avatar
EKSAD committed
852 853 854 855 856 857
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
EKSAD's avatar
EKSAD committed
858
                                            color: '#7e8085'
EKSAD's avatar
EKSAD committed
859 860
                                        }
                                    }}
EKSAD's avatar
EKSAD committed
861
                                />
EKSAD's avatar
EKSAD committed
862
                            </div>
EKSAD's avatar
EKSAD committed
863 864
                        </div>
                        <div className="column-2">
Deni Rinaldi's avatar
Deni Rinaldi committed
865
                            <div className="margin-top-10px" style={{ padding: 10 }}>
EKSAD's avatar
EKSAD committed
866
                                <Autocomplete
Deni Rinaldi's avatar
Deni Rinaldi committed
867
                                    value={this.state.tempData === null ? "" : this.state.tempData.condition_if_wrong}
EKSAD's avatar
EKSAD committed
868
                                    id="isWrongCondition"
a.bairuha's avatar
a.bairuha committed
869
                                    disabled={this.state.InputType == null ? true : (this.state.InputType.type_item_report_name === 'Validation' ? false : true)}
EKSAD's avatar
EKSAD committed
870
                                    onChange={(event, newValue) => {
Deni Rinaldi's avatar
Deni Rinaldi committed
871
                                        this.setState({ tempData: { ...this.state.tempData, condition_if_wrong: newValue } }, () => this.clearMessage());
EKSAD's avatar
EKSAD committed
872 873
                                    }}
                                    options={this.state.options}
Deni Rinaldi's avatar
Deni Rinaldi committed
874 875
                                    renderInput={(params) =>
                                        <TextField {...params}
876
                                            label="False Condition"
EKSAD's avatar
EKSAD committed
877 878 879 880 881 882 883
                                            InputLabelProps={{
                                                style: {
                                                    fontSize: 11,
                                                    fontFamily: 'Nunito Sans, sans-serif',
                                                    color: '#7e8085'
                                                }
                                            }}
Deni Rinaldi's avatar
Deni Rinaldi committed
884 885
                                            error={this.state.errorCondition}
                                            helperText={this.state.msgErrorCondition}
EKSAD's avatar
EKSAD committed
886
                                            InputProps={{ ...params.InputProps, style: { fontSize: 11, fontFamily: 'Nunito Sans, sans-serif' } }}
EKSAD's avatar
EKSAD committed
887
                                        />}
EKSAD's avatar
EKSAD committed
888 889
                                />
                            </div>
EKSAD's avatar
EKSAD committed
890 891
                        </div>
                    </div>
a.bairuha's avatar
a.bairuha committed
892 893

                    {this.state.reportType !== null && (
894 895 896 897 898 899 900 901 902 903
                        this.state.reportType.report_name === 'CAT' && (
                            <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
                                <div className="column-1">
                                    <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
                                        <Autocomplete
                                            {...this.state.listKPI}
                                            value={this.state.KPIValue}
                                            id="kpiType"
                                            onChange={(event, newValue) => {
                                                this.setState({ tempData: { ...this.state.tempData, kpi_type: newValue.value }, KPIValue: newValue }, () => this.clearMessage());
a.bairuha's avatar
a.bairuha committed
904
                                            }}
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
                                            renderInput={(params) =>
                                                <TextField {...params}
                                                    label="KPI Type"
                                                    InputLabelProps={{
                                                        style: {
                                                            fontSize: 11,
                                                            fontFamily: 'Nunito Sans, sans-serif',
                                                            color: '#7e8085'
                                                        }
                                                    }}
                                                    InputProps={{ ...params.InputProps, style: { fontSize: 11, fontFamily: 'Nunito Sans, sans-serif' } }}
                                                />}
                                        />
                                    </div>
                                </div>
                                <div className="column-2">
                                    <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
                                        <Autocomplete
                                            {...this.state.listMaxAch}
                                            value={this.state.MaxAchValue}
                                            id="maxAch"
                                            onChange={(event, newValue) => {
                                                this.setState({ tempData: { ...this.state.tempData, max_ach: newValue.value }, MaxAchValue: newValue }, () => this.clearMessage());
a.bairuha's avatar
a.bairuha committed
928
                                            }}
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943
                                            renderInput={(params) =>
                                                <TextField {...params}
                                                    label="Max Achievement"
                                                    InputLabelProps={{
                                                        style: {
                                                            fontSize: 11,
                                                            fontFamily: 'Nunito Sans, sans-serif',
                                                            color: '#7e8085'
                                                        }
                                                    }}
                                                    InputProps={{ ...params.InputProps, style: { fontSize: 11, fontFamily: 'Nunito Sans, sans-serif' } }}
                                                />}
                                        />
                                    </div>
                                </div>
a.bairuha's avatar
a.bairuha committed
944
                            </div>
945
                        ))}
a.bairuha's avatar
a.bairuha committed
946 947

                    {this.state.reportType !== null && (
948 949 950 951 952 953 954 955 956
                        this.state.reportType.report_name === 'CAT' && (
                            <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
                                <div className="column-1">
                                    <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
                                        <Autocomplete
                                            value={this.state.tempData === null ? "" : this.state.tempData.formula_ytd}
                                            id="kpiType"
                                            onChange={(event, newValue) => {
                                                this.setState({ tempData: { ...this.state.tempData, formula_ytd: newValue } }, () => this.clearMessage());
a.bairuha's avatar
a.bairuha committed
957
                                            }}
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
                                            options={this.state.formulaYtd}
                                            renderInput={(params) =>
                                                <TextField {...params}
                                                    label="Formula YTD"
                                                    InputLabelProps={{
                                                        style: {
                                                            fontSize: 11,
                                                            fontFamily: 'Nunito Sans, sans-serif',
                                                            color: '#7e8085'
                                                        }
                                                    }}
                                                    InputProps={{ ...params.InputProps, style: { fontSize: 11, fontFamily: 'Nunito Sans, sans-serif' } }}
                                                />}
                                        />
                                    </div>
                                </div>
a.bairuha's avatar
a.bairuha committed
974
                            </div>
975
                        ))}
a.bairuha's avatar
a.bairuha committed
976

EKSAD's avatar
EKSAD committed
977 978
                    <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
                        <div className="column-1">
EKSAD's avatar
EKSAD committed
979
                            <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
EKSAD's avatar
EKSAD committed
980 981 982
                                <DatePicker
                                    margin="normal"
                                    id="startDate"
983
                                    label="Valid From"
EKSAD's avatar
EKSAD committed
984
                                    format="dd-MM-yyyy"
EKSAD's avatar
EKSAD committed
985 986 987 988 989 990 991
                                    value={this.state.tempData === null ? null : this.state.tempData.start_date}
                                    error={this.state.errorStartDate}
                                    helperText={this.state.msgErrorSD}
                                    onChange={(e) => this.handleChange(e, 'start_date')}
                                    KeyboardButtonProps={{
                                        'aria-label': 'change date',
                                    }}
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004
                                    inputProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            color: '#7e8085',
                                            fontFamily: 'Nunito Sans, sans-serif',
                                        }
                                    }}
EKSAD's avatar
EKSAD committed
1005 1006 1007 1008 1009 1010 1011
                                    style={{ padding: 0, margin: 0, width: '100%' }}
                                />
                            </div>
                        </div>
                        <div className="column-2">
                            <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
                                <DatePicker
EKSAD's avatar
EKSAD committed
1012 1013
                                    margin="normal"
                                    id="endDate"
1014
                                    label="Valid To"
EKSAD's avatar
EKSAD committed
1015
                                    format="dd-MM-yyyy"
EKSAD's avatar
EKSAD committed
1016 1017 1018 1019 1020 1021 1022 1023
                                    value={this.state.tempData === null ? null : this.state.tempData.end_date}
                                    error={this.state.errorEndDate}
                                    helperText={this.state.msgErrorED}
                                    minDate={this.state.tempData === null ? null : this.state.tempData.start_date}
                                    onChange={(e) => this.handleChange(e, 'end_date')}
                                    KeyboardButtonProps={{
                                        'aria-label': 'change date',
                                    }}
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
                                    inputProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            color: '#7e8085',
                                            fontFamily: 'Nunito Sans, sans-serif',
                                        }
                                    }}
EKSAD's avatar
EKSAD committed
1037 1038

                                    style={{ padding: 0, margin: 0, width: '100%' }}
EKSAD's avatar
EKSAD committed
1039 1040 1041
                                />
                            </div>
                        </div>
EKSAD's avatar
EKSAD committed
1042 1043 1044
                    </div>
                    <div className="grid grid-2x grid-mobile-none gap-15px" style={{ paddingLeft: 20, paddingRight: 20 }}>
                        <div className="column-1">
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
                            <div className="margin-top-10px" style={{ padding: 10, borderRadius: 5 }}>
                                <Autocomplete
                                    debug
                                    id="tipe"
                                    options={this.state.listConvert}
                                    getOptionLabel={(option) => option.value}
                                    value={this.state.convertible}
                                    onChange={(event, newInputValue) => this.setState({ convertible: newInputValue }, () => this.clearMessage())}
                                    renderInput={(params) =>
                                        <TextField
                                            {...params}
                                            label="Convertible"
                                            margin="normal"
1058 1059
                                            error={this.state.errorCovertible}
                                            helperText={this.state.msgErrorCovertible}
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
                                            style={{ marginTop: 7 }}
                                            InputProps={{ ...params.InputProps, style: { fontSize: 11 } }}
                                            InputLabelProps={{ style: { fontSize: 11, color: '#7e8085' } }}
                                        />
                                    }

                                />
                            </div>
                        </div>
                        <div className="column-2">
EKSAD's avatar
EKSAD committed
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
                            <div className="margin-top-10px" style={{ backgroundColor: '#e8e8e8', padding: 10, borderRadius: 5 }}>
                                <TextField
                                    style={{ width: '100%' }}
                                    value={this.state.tempData === null ? '' : this.state.tempData.status}
                                    id="status"
                                    label="Status"
                                    disabled
                                    inputProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif'
                                        }
                                    }}
                                    InputLabelProps={{
                                        style: {
                                            fontSize: 11,
                                            fontFamily: 'Nunito Sans, sans-serif',
                                            color: '#7e8085'
                                        }
                                    }}
                                />
                            </div>
                        </div>
                    </div>
1094
                    <div className="margin-top-10px" style={{ paddingTop: 10, paddingBottom: 30, paddingRight: 30, paddingLeft: 30 }}>
1095
                        <div style={{ display: 'flex' }}>
a.bairuha's avatar
a.bairuha committed
1096
                            <Typography style={{ fontSize: 11, width: '12%' }}>Created By</Typography>
EKSAD's avatar
EKSAD committed
1097
                            <Typography style={{ fontSize: 11 }}>:  {this.state.tempData === null ? "" : this.state.tempData.created}</Typography>
1098 1099
                        </div>
                        <div style={{ display: 'flex' }}>
a.bairuha's avatar
a.bairuha committed
1100
                            <Typography style={{ fontSize: 11, width: '12%' }}>Updated By</Typography>
EKSAD's avatar
EKSAD committed
1101
                            <Typography style={{ fontSize: 11 }}>:  {this.state.tempData === null ? "" : this.state.tempData.updated}</Typography>
EKSAD's avatar
EKSAD committed
1102
                        </div>
EKSAD's avatar
EKSAD committed
1103 1104 1105 1106 1107 1108 1109 1110 1111
                    </div>

                    <div className="border-top grid grid-2x" style={{ height: 56, backgroundColor: '#f5f5f5', paddingLeft: 20, paddingRight: 20 }}>
                        <div className="column-1" style={{ alignSelf: 'center' }}>
                            <button
                                type="button"
                                onClick={() => this.props.onClickClose()}
                            >
                                <div style={{ width: 102, height: 30, border: 'solid 1px #354960', borderRadius: 5, alignItems: 'center', display: 'flex', justifyContent: 'center' }}>
1112
                                    <span style={{ color: '#354960', fontSize: 11 }}>Cancel</span>
EKSAD's avatar
EKSAD committed
1113 1114 1115 1116
                                </div>
                            </button>
                        </div>
                        <div className="column-2" style={{ display: 'flex', justifyContent: 'flex-end', alignItems: 'center' }}>
EKSAD's avatar
EKSAD committed
1117
                            <button onClick={() => this.validasi()}>
EKSAD's avatar
EKSAD committed
1118
                                <div style={{ width: 102, height: 30, backgroundColor: '#354960', borderRadius: 5, alignItems: 'center', display: 'flex', justifyContent: 'center' }}>
1119
                                    <span style={{ color: '#fff', fontSize: 11 }}>Save</span>
EKSAD's avatar
EKSAD committed
1120 1121
                                </div>
                            </button>
EKSAD's avatar
EKSAD committed
1122 1123 1124 1125 1126 1127 1128
                        </div>
                    </div>
                </div>
            </div>
        )
    }
}