ibnu
1 year ago
12 changed files with 751 additions and 652 deletions
@ -1,304 +1,305 @@
|
||||
import React, { useEffect, useState, useMemo } from 'react' |
||||
import { Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap'; |
||||
import { Button, Form } from 'reactstrap'; |
||||
import { Table, Tooltip } from 'antd'; |
||||
import 'antd/dist/antd.css'; |
||||
import moment from 'moment'; |
||||
import { API_ADW, TOKEN_ADW, ASSIGN_HR_PROJECT_SEARCH, ASSIGN_HR_PROJECT_DELETE, USER_LIST, PROJECT_ROLE_SEARCH, ASSIGN_HR_PROJECT_ADD, ASSIGN_HR_PROJECT_EDIT } from '../../../const/ApiConst'; |
||||
import axios from "../../../const/interceptorApi" |
||||
import { NotificationContainer, NotificationManager } from 'react-notifications'; |
||||
import SweetAlert from 'react-bootstrap-sweetalert'; |
||||
import FormAsignHr from './FormAsignHr'; |
||||
import { formatThousand } from '../../../const/CustomFunc'; |
||||
|
||||
const AssignHrProject = ({ openDialog, closeDialog, toggleDialog, idTask, toolsResource, proyekName }) => { |
||||
const token = localStorage.getItem("token") |
||||
const HEADER = { |
||||
headers: { |
||||
"Content-Type": "application/json", |
||||
"Authorization": `Bearer ${token}` |
||||
} |
||||
} |
||||
const [dataUserToProject, setdataUserToProject] = useState([]) |
||||
const [alertDelete, setAlertDelete] = useState(false) |
||||
const [idDelete, setIdDelete] = useState(0) |
||||
const [openDialogFormTools, setOpenDialogFormTools] = useState(false) |
||||
const [dataEdit, setDataEdit] = useState(null) |
||||
const [listUser, setListUser] = useState([]) |
||||
const [listRole, setListRole] = useState([]) |
||||
|
||||
useEffect(() => { |
||||
if (idTask > 0) { |
||||
getDataAssignHr(); |
||||
} |
||||
}, [openDialog]); |
||||
|
||||
useEffect(() => { |
||||
if (openDialog) { |
||||
getDataProjectRole(); |
||||
getDataUser(); |
||||
} |
||||
}, [dataUserToProject]) |
||||
|
||||
const getDataAssignHr = async () => { |
||||
const payload = { |
||||
"paging": { |
||||
"start": 0, |
||||
"length": -1 |
||||
}, |
||||
"columns": [ |
||||
{ "name": "name", "logic_operator": "ilike", "value": "", "table_name": "m_users" }, |
||||
{ "name": "proyek_id", "logic_operator": "=", "value": idTask } |
||||
], |
||||
"joins": [ |
||||
{ "name": "m_users", "column_join": "user_id", "column_results": ["name"] }, |
||||
{ "name": "m_role_proyek", "column_join": "project_role", "column_results": ["name"] }, |
||||
], |
||||
"orders": { |
||||
"columns": [ |
||||
"id" |
||||
], |
||||
"ascending": false |
||||
} |
||||
} |
||||
const URL = ASSIGN_HR_PROJECT_SEARCH |
||||
const result = await axios |
||||
.post(URL, payload, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code == 200) { |
||||
let dataRes = result.data.data || [] |
||||
|
||||
setdataUserToProject(dataRes); |
||||
} else { |
||||
NotificationManager.error('Gagal Mengambil Data!!', 'Failed'); |
||||
} |
||||
} |
||||
|
||||
const getDataUser = async () => { |
||||
const HEADER_ADW = { |
||||
headers: { |
||||
"Authorization": `${TOKEN_ADW}` |
||||
} |
||||
} |
||||
const result = await axios |
||||
// .get(`${API_ADW}employees`, HEADER_ADW)
|
||||
.get(USER_LIST, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
if (result && result.data && result.data.data.length != 0) { |
||||
let dataRes = result.data.data |
||||
setListUser(dataRes) |
||||
} |
||||
} |
||||
|
||||
const getDataProjectRole = async () => { |
||||
const payload = { |
||||
"paging": { |
||||
"start": 0, |
||||
"length": -1 |
||||
}, |
||||
"columns": [ |
||||
{ "name": "created_by", "logic_operator": "ilike", "value": "" }, |
||||
], |
||||
"joins": [], |
||||
"orders": { |
||||
"columns": [ |
||||
"id" |
||||
], |
||||
"ascending": false |
||||
} |
||||
} |
||||
|
||||
const result = await axios |
||||
.post(PROJECT_ROLE_SEARCH, payload, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code == 200) { |
||||
let dataRes = result.data.data || [] |
||||
setListRole(dataRes); |
||||
} else { |
||||
} |
||||
} |
||||
|
||||
const handleDelete = (id) => { |
||||
setIdDelete(id) |
||||
setAlertDelete(true) |
||||
} |
||||
|
||||
const cancelDelete = () => { |
||||
setAlertDelete(false) |
||||
setIdDelete(0) |
||||
} |
||||
|
||||
const onConfirmDelete = async () => { |
||||
let urlDel = ASSIGN_HR_PROJECT_DELETE(idDelete) |
||||
const result = await axios.delete(urlDel, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code === 200) { |
||||
getDataAssignHr() |
||||
setIdDelete(0) |
||||
setAlertDelete(false) |
||||
NotificationManager.success(`Data assign human resource berhasil dihapus`, 'Success!!'); |
||||
} else { |
||||
setIdDelete(0) |
||||
setAlertDelete(false) |
||||
NotificationManager.error(`Data assign human resource gagal dihapus`, 'Failed!!'); |
||||
} |
||||
} |
||||
|
||||
const handleEdit = async (data) => { |
||||
await setDataEdit(data) |
||||
setOpenDialogFormTools(true) |
||||
} |
||||
|
||||
const handleOpenDialogFormTools = () => { |
||||
setOpenDialogFormTools(true) |
||||
} |
||||
|
||||
const handleCancel = () => { |
||||
closeDialog('cancel', 'none') |
||||
} |
||||
|
||||
|
||||
const RenderTable = useMemo(() => { |
||||
const columns = [ |
||||
{ |
||||
title: 'Action', |
||||
dataIndex: '', |
||||
key: 'x', |
||||
className: "nowrap", |
||||
render: (text, record) => <><Tooltip title="Delete Request Resource"> |
||||
<Button size={"sm"} color='danger' onClick={() => handleDelete(text.id)}><i className="fa fa-trash"></i></Button> |
||||
</Tooltip>{" "}<Tooltip title="Edit Request Resource"> |
||||
<Button size={"sm"} color='primary' onClick={() => handleEdit(text)}><i className="fa fa-edit"></i></Button> |
||||
</Tooltip></>, |
||||
}, |
||||
{ title: 'Name Human Resource', dataIndex: 'join_first_name', key: 'join_first_name', className: "nowrap" }, |
||||
{ title: 'Role Human Resource', dataIndex: 'join_second_name', key: 'join_second_name', className: "nowrap" }, |
||||
{ title: 'Percentage Available User', dataIndex: 'max_used', key: 'max_used', className: "nowrap", render: (text, record) => record.max_used ? formatThousand(record.max_used) : '-' }, |
||||
{ title: 'Standard Rate', dataIndex: 'standart_rate', key: 'standart_rate', className: "nowrap", render: (text, record) => record.standart_rate ? formatThousand(record.standart_rate) : '-' }, |
||||
{ title: 'UOM Standard Rate', dataIndex: 'uom_standart_rate', key: 'uom_standart_rate', className: "nowrap" }, |
||||
{ title: 'Overtime Rate', dataIndex: 'overtime_rate', key: 'overtime_rate', className: "nowrap", render: (text, record) => record.overtime_rate ? formatThousand(record.overtime_rate) : '-' }, |
||||
{ title: 'UOM Overtime Rate', dataIndex: 'uom_overtime_rate', key: 'uom_overtime_rate', className: "nowrap" }, |
||||
|
||||
]; |
||||
|
||||
return ( |
||||
<Table |
||||
size="small" |
||||
columns={columns} |
||||
dataSource={dataUserToProject} |
||||
pagination={{ position: ["bottomLeft"] }} |
||||
/> |
||||
) |
||||
}, [dataUserToProject]) |
||||
|
||||
const renderForm = () => { |
||||
return ( |
||||
<div style={{"overflowX":"scroll"}}> |
||||
{RenderTable} |
||||
</div> |
||||
) |
||||
} |
||||
|
||||
const handleCloseDialogFormTools = (type, data) => { |
||||
if(type=="add"){ |
||||
addDataAssignHr(data); |
||||
}else if(type=="edit"){ |
||||
editDataAssignHr(data); |
||||
}else{ |
||||
setDataEdit(null) |
||||
setOpenDialogFormTools(false) |
||||
} |
||||
} |
||||
|
||||
const addDataAssignHr = async (payload) => { |
||||
const result = await axios |
||||
.post(ASSIGN_HR_PROJECT_ADD, payload, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code == 200) { |
||||
getDataAssignHr(); |
||||
NotificationManager.success('assign human resource berhasil!!', 'Success'); |
||||
setDataEdit(null) |
||||
setOpenDialogFormTools(false) |
||||
} else { |
||||
NotificationManager.error('assign human resource gagal!!', 'Failed'); |
||||
} |
||||
} |
||||
|
||||
const editDataAssignHr = async (payload) => { |
||||
let url = ASSIGN_HR_PROJECT_EDIT(payload.id) |
||||
const result = await axios |
||||
.put(url, payload, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code == 200) { |
||||
getDataAssignHr(); |
||||
NotificationManager.success('assign human resource berhasil diedit!!', 'Success'); |
||||
setDataEdit(null) |
||||
setOpenDialogFormTools(false) |
||||
} else { |
||||
NotificationManager.error('assign human resource gagal diedit!!', 'Failed'); |
||||
} |
||||
} |
||||
|
||||
const toogleDialogFormTools = () => { |
||||
if (openDialogFormTools) { |
||||
setDataEdit(null) |
||||
} |
||||
setOpenDialogFormTools(!openDialogFormTools) |
||||
} |
||||
|
||||
|
||||
return ( |
||||
<> |
||||
<NotificationContainer /> |
||||
<SweetAlert |
||||
show={alertDelete} |
||||
warning |
||||
showCancel |
||||
confirmBtnText="Delete" |
||||
confirmBtnBsStyle="danger" |
||||
title={`Are you sure?`} |
||||
onConfirm={onConfirmDelete} |
||||
onCancel={() => cancelDelete()} |
||||
focusCancelBtn |
||||
> |
||||
Delete this data |
||||
</SweetAlert> |
||||
<Modal size="xl" isOpen={openDialog} toggle={toggleDialog}> |
||||
<ModalHeader className="capitalize withBtn" toggle={closeDialog}> |
||||
|
||||
<div>Assign Human Resource - {proyekName}</div> <Button onClick={handleOpenDialogFormTools} size='sm' color="primary"><i className='fa fa-plus'></i></Button> |
||||
</ModalHeader> |
||||
<ModalBody> |
||||
{renderForm()} |
||||
</ModalBody> |
||||
{/* <ModalFooter> |
||||
<Button className="capitalize" color="secondary" onClick={() => handleCancel()}>Close</Button> |
||||
</ModalFooter> */} |
||||
</Modal> |
||||
<FormAsignHr |
||||
openDialog={openDialogFormTools} |
||||
closeDialog={handleCloseDialogFormTools} |
||||
toggleDialog={toogleDialogFormTools} |
||||
idTask={idTask} |
||||
dataEdit={dataEdit} |
||||
dataHr={listUser} |
||||
dataRole={listRole} |
||||
dataCurrentHr={dataUserToProject} |
||||
/> |
||||
</> |
||||
) |
||||
|
||||
} |
||||
|
||||
export default AssignHrProject; |
||||
import React, { useEffect, useState, useMemo } from 'react' |
||||
import { Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap'; |
||||
import { Button, Form } from 'reactstrap'; |
||||
import { Table, Tooltip } from 'antd'; |
||||
import 'antd/dist/antd.css'; |
||||
import moment from 'moment'; |
||||
import { API_ADW, TOKEN_ADW, ASSIGN_HR_PROJECT_SEARCH, ASSIGN_HR_PROJECT_DELETE, USER_LIST, PROJECT_ROLE_SEARCH, ASSIGN_HR_PROJECT_ADD, ASSIGN_HR_PROJECT_EDIT } from '../../../const/ApiConst'; |
||||
import axios from "../../../const/interceptorApi" |
||||
import { NotificationContainer, NotificationManager } from 'react-notifications'; |
||||
import SweetAlert from 'react-bootstrap-sweetalert'; |
||||
import FormAsignHr from './FormAsignHr'; |
||||
import { formatThousand } from '../../../const/CustomFunc'; |
||||
|
||||
const AssignHrProject = ({ openDialog, closeDialog, toggleDialog, idTask, toolsResource, proyekName }) => { |
||||
const token = localStorage.getItem("token") |
||||
const HEADER = { |
||||
headers: { |
||||
"Content-Type": "application/json", |
||||
"Authorization": `Bearer ${token}` |
||||
} |
||||
} |
||||
const [dataUserToProject, setdataUserToProject] = useState([]) |
||||
const [alertDelete, setAlertDelete] = useState(false) |
||||
const [idDelete, setIdDelete] = useState(0) |
||||
const [openDialogFormTools, setOpenDialogFormTools] = useState(false) |
||||
const [dataEdit, setDataEdit] = useState(null) |
||||
const [listUser, setListUser] = useState([]) |
||||
const [listRole, setListRole] = useState([]) |
||||
|
||||
useEffect(() => { |
||||
if (idTask > 0) { |
||||
getDataAssignHr(); |
||||
} |
||||
}, [openDialog]); |
||||
|
||||
useEffect(() => { |
||||
if (openDialog) { |
||||
getDataProjectRole(); |
||||
getDataUser(); |
||||
} |
||||
}, [dataUserToProject]) |
||||
|
||||
const getDataAssignHr = async () => { |
||||
const payload = { |
||||
"paging": { |
||||
"start": 0, |
||||
"length": -1 |
||||
}, |
||||
"columns": [ |
||||
{ "name": "name", "logic_operator": "ilike", "value": "", "table_name": "m_users" }, |
||||
{ "name": "proyek_id", "logic_operator": "=", "value": idTask }, |
||||
{ "name": "is_customer", "logic_operator": "=", "value": "false" } |
||||
], |
||||
"joins": [ |
||||
{ "name": "m_users", "column_join": "user_id", "column_results": ["name"] }, |
||||
{ "name": "m_role_proyek", "column_join": "project_role", "column_results": ["name"] }, |
||||
], |
||||
"orders": { |
||||
"columns": [ |
||||
"id" |
||||
], |
||||
"ascending": false |
||||
} |
||||
} |
||||
const URL = ASSIGN_HR_PROJECT_SEARCH |
||||
const result = await axios |
||||
.post(URL, payload, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code == 200) { |
||||
let dataRes = result.data.data || [] |
||||
|
||||
setdataUserToProject(dataRes); |
||||
} else { |
||||
NotificationManager.error('Gagal Mengambil Data!!', 'Failed'); |
||||
} |
||||
} |
||||
|
||||
const getDataUser = async () => { |
||||
const HEADER_ADW = { |
||||
headers: { |
||||
"Authorization": `${TOKEN_ADW}` |
||||
} |
||||
} |
||||
const result = await axios |
||||
// .get(`${API_ADW}employees`, HEADER_ADW)
|
||||
.get(USER_LIST, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
if (result && result.data && result.data.data.length != 0) { |
||||
let dataRes = result.data.data |
||||
setListUser(dataRes) |
||||
} |
||||
} |
||||
|
||||
const getDataProjectRole = async () => { |
||||
const payload = { |
||||
"paging": { |
||||
"start": 0, |
||||
"length": -1 |
||||
}, |
||||
"columns": [ |
||||
{ "name": "created_by", "logic_operator": "ilike", "value": "" }, |
||||
], |
||||
"joins": [], |
||||
"orders": { |
||||
"columns": [ |
||||
"id" |
||||
], |
||||
"ascending": false |
||||
} |
||||
} |
||||
|
||||
const result = await axios |
||||
.post(PROJECT_ROLE_SEARCH, payload, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code == 200) { |
||||
let dataRes = result.data.data || [] |
||||
setListRole(dataRes); |
||||
} else { |
||||
} |
||||
} |
||||
|
||||
const handleDelete = (id) => { |
||||
setIdDelete(id) |
||||
setAlertDelete(true) |
||||
} |
||||
|
||||
const cancelDelete = () => { |
||||
setAlertDelete(false) |
||||
setIdDelete(0) |
||||
} |
||||
|
||||
const onConfirmDelete = async () => { |
||||
let urlDel = ASSIGN_HR_PROJECT_DELETE(idDelete) |
||||
const result = await axios.delete(urlDel, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code === 200) { |
||||
getDataAssignHr() |
||||
setIdDelete(0) |
||||
setAlertDelete(false) |
||||
NotificationManager.success(`Data assign human resource berhasil dihapus`, 'Success!!'); |
||||
} else { |
||||
setIdDelete(0) |
||||
setAlertDelete(false) |
||||
NotificationManager.error(`Data assign human resource gagal dihapus`, 'Failed!!'); |
||||
} |
||||
} |
||||
|
||||
const handleEdit = async (data) => { |
||||
await setDataEdit(data) |
||||
setOpenDialogFormTools(true) |
||||
} |
||||
|
||||
const handleOpenDialogFormTools = () => { |
||||
setOpenDialogFormTools(true) |
||||
} |
||||
|
||||
const handleCancel = () => { |
||||
closeDialog('cancel', 'none') |
||||
} |
||||
|
||||
|
||||
const RenderTable = useMemo(() => { |
||||
const columns = [ |
||||
{ |
||||
title: 'Action', |
||||
dataIndex: '', |
||||
key: 'x', |
||||
className: "nowrap", |
||||
render: (text, record) => <><Tooltip title="Delete Request Resource"> |
||||
<Button size={"sm"} color='danger' onClick={() => handleDelete(text.id)}><i className="fa fa-trash"></i></Button> |
||||
</Tooltip>{" "}<Tooltip title="Edit Request Resource"> |
||||
<Button size={"sm"} color='primary' onClick={() => handleEdit(text)}><i className="fa fa-edit"></i></Button> |
||||
</Tooltip></>, |
||||
}, |
||||
{ title: 'Name Human Resource', dataIndex: 'join_first_name', key: 'join_first_name', className: "nowrap" }, |
||||
{ title: 'Role Human Resource', dataIndex: 'join_second_name', key: 'join_second_name', className: "nowrap" }, |
||||
{ title: 'Percentage Available User', dataIndex: 'max_used', key: 'max_used', className: "nowrap", render: (text, record) => record.max_used ? formatThousand(record.max_used) : '-' }, |
||||
{ title: 'Standard Rate', dataIndex: 'standart_rate', key: 'standart_rate', className: "nowrap", render: (text, record) => record.standart_rate ? formatThousand(record.standart_rate) : '-' }, |
||||
{ title: 'UOM Standard Rate', dataIndex: 'uom_standart_rate', key: 'uom_standart_rate', className: "nowrap" }, |
||||
{ title: 'Overtime Rate', dataIndex: 'overtime_rate', key: 'overtime_rate', className: "nowrap", render: (text, record) => record.overtime_rate ? formatThousand(record.overtime_rate) : '-' }, |
||||
{ title: 'UOM Overtime Rate', dataIndex: 'uom_overtime_rate', key: 'uom_overtime_rate', className: "nowrap" }, |
||||
|
||||
]; |
||||
|
||||
return ( |
||||
<Table |
||||
size="small" |
||||
columns={columns} |
||||
dataSource={dataUserToProject} |
||||
pagination={{ position: ["bottomLeft"] }} |
||||
/> |
||||
) |
||||
}, [dataUserToProject]) |
||||
|
||||
const renderForm = () => { |
||||
return ( |
||||
<div style={{"overflowX":"scroll"}}> |
||||
{RenderTable} |
||||
</div> |
||||
) |
||||
} |
||||
|
||||
const handleCloseDialogFormTools = (type, data) => { |
||||
if(type=="add"){ |
||||
addDataAssignHr(data); |
||||
}else if(type=="edit"){ |
||||
editDataAssignHr(data); |
||||
}else{ |
||||
setDataEdit(null) |
||||
setOpenDialogFormTools(false) |
||||
} |
||||
} |
||||
|
||||
const addDataAssignHr = async (payload) => { |
||||
const result = await axios |
||||
.post(ASSIGN_HR_PROJECT_ADD, payload, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code == 200) { |
||||
getDataAssignHr(); |
||||
NotificationManager.success('assign human resource berhasil!!', 'Success'); |
||||
setDataEdit(null) |
||||
setOpenDialogFormTools(false) |
||||
} else { |
||||
NotificationManager.error('assign human resource gagal!!', 'Failed'); |
||||
} |
||||
} |
||||
|
||||
const editDataAssignHr = async (payload) => { |
||||
let url = ASSIGN_HR_PROJECT_EDIT(payload.id) |
||||
const result = await axios |
||||
.put(url, payload, HEADER) |
||||
.then(res => res) |
||||
.catch((error) => error.response); |
||||
|
||||
if (result && result.data && result.data.code == 200) { |
||||
getDataAssignHr(); |
||||
NotificationManager.success('assign human resource berhasil diedit!!', 'Success'); |
||||
setDataEdit(null) |
||||
setOpenDialogFormTools(false) |
||||
} else { |
||||
NotificationManager.error('assign human resource gagal diedit!!', 'Failed'); |
||||
} |
||||
} |
||||
|
||||
const toogleDialogFormTools = () => { |
||||
if (openDialogFormTools) { |
||||
setDataEdit(null) |
||||
} |
||||
setOpenDialogFormTools(!openDialogFormTools) |
||||
} |
||||
|
||||
|
||||
return ( |
||||
<> |
||||
<NotificationContainer /> |
||||
<SweetAlert |
||||
show={alertDelete} |
||||
warning |
||||
showCancel |
||||
confirmBtnText="Delete" |
||||
confirmBtnBsStyle="danger" |
||||
title={`Are you sure?`} |
||||
onConfirm={onConfirmDelete} |
||||
onCancel={() => cancelDelete()} |
||||
focusCancelBtn |
||||
> |
||||
Delete this data |
||||
</SweetAlert> |
||||
<Modal size="xl" isOpen={openDialog} toggle={toggleDialog}> |
||||
<ModalHeader className="capitalize withBtn" toggle={closeDialog}> |
||||
|
||||
<div>Assign Human Resource - {proyekName}</div> <Button onClick={handleOpenDialogFormTools} size='sm' color="primary"><i className='fa fa-plus'></i></Button> |
||||
</ModalHeader> |
||||
<ModalBody> |
||||
{renderForm()} |
||||
</ModalBody> |
||||
{/* <ModalFooter> |
||||
<Button className="capitalize" color="secondary" onClick={() => handleCancel()}>Close</Button> |
||||
</ModalFooter> */} |
||||
</Modal> |
||||
<FormAsignHr |
||||
openDialog={openDialogFormTools} |
||||
closeDialog={handleCloseDialogFormTools} |
||||
toggleDialog={toogleDialogFormTools} |
||||
idTask={idTask} |
||||
dataEdit={dataEdit} |
||||
dataHr={listUser} |
||||
dataRole={listRole} |
||||
dataCurrentHr={dataUserToProject} |
||||
/> |
||||
</> |
||||
) |
||||
|
||||
} |
||||
|
||||
export default AssignHrProject; |
||||
|
@ -1,246 +1,216 @@
|
||||
import React, { useEffect, useState } from 'react' |
||||
import { Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap'; |
||||
import { Button, Form, FormGroup, Label, Input, Col, Row } from 'reactstrap'; |
||||
import { DatePicker, Select } from 'antd'; |
||||
import 'antd/dist/antd.css'; |
||||
import { formatNumber } from '../../../const/CustomFunc'; |
||||
const { Option } = Select |
||||
|
||||
const FormAsignHr = ({ openDialog, closeDialog, toggleDialog, idTask, dataEdit, dataHr, dataCurrentHr, dataRole }) => { |
||||
const [id, setId] = useState(null) |
||||
const [typeForm, setTypeForm] = useState('add') |
||||
const [user, setUser] = useState(null) |
||||
const [rbs, setRbs] = useState("") |
||||
const [projectRole, setProjectRole] = useState(null) |
||||
const [groupR, setGroupR] = useState("") |
||||
const [maxUsed, setMaxUsed] = useState("") |
||||
const [standartRate, setStandartRate] = useState("") |
||||
const [uomStandartRate, setUomStandartRate] = useState(null) |
||||
const [overTimeRate, setOverTimeRate] = useState("") |
||||
const [overTimeRateUom, setOverTimeRateUom] = useState(null) |
||||
const [costPerUsed, setCostPerUsed] = useState("") |
||||
const [accrue, setAccrue] = useState("") |
||||
const [baseCalender, setBaseCalender] = useState("") |
||||
const [listHr, setListHr] = useState([]) |
||||
const [isCustomer, setIsCustomer] = useState(false) |
||||
|
||||
const handleClearData = () => { |
||||
setUser(null) |
||||
setRbs("") |
||||
setProjectRole(null) |
||||
setGroupR("") |
||||
setMaxUsed("") |
||||
setIsCustomer(false) |
||||
setStandartRate("") |
||||
setUomStandartRate(null) |
||||
setOverTimeRate("") |
||||
setOverTimeRateUom(null) |
||||
setCostPerUsed("") |
||||
setAccrue("") |
||||
setBaseCalender("") |
||||
} |
||||
|
||||
useEffect(() => { |
||||
let data = dataHr || [] |
||||
let availableHr = [] |
||||
data.map((val, index) => { |
||||
if(dataEdit && dataEdit.user_id){ |
||||
if(parseInt(val.id)===parseInt(dataEdit.user_id)){ |
||||
availableHr.push(val); |
||||
} |
||||
} |
||||
let check = dataCurrentHr.some(function (x) { |
||||
return parseInt(val.id)==parseInt(x.user_id) |
||||
}); |
||||
if(!check){ |
||||
availableHr.push(val); |
||||
} |
||||
}); |
||||
setListHr(availableHr) |
||||
}, [dataHr, dataCurrentHr, dataEdit]) |
||||
|
||||
useEffect(() => { |
||||
if (idTask && idTask > 0) { |
||||
if(dataEdit && dataEdit!=""){ |
||||
setTypeForm('edit') |
||||
setId(dataEdit.id) |
||||
setUser(dataEdit.user_id) |
||||
setRbs(dataEdit.rbs) |
||||
setProjectRole(dataEdit.project_role) |
||||
setGroupR(dataEdit.group_r) |
||||
setMaxUsed(dataEdit.max_used ? formatNumber(dataEdit.max_used.toString()) : '') |
||||
setIsCustomer(dataEdit.is_customer) |
||||
setStandartRate(dataEdit.standart_rate ? formatNumber(dataEdit.standart_rate.toString()) : '') |
||||
setUomStandartRate(dataEdit.uom_standart_rate) |
||||
setOverTimeRate(dataEdit.overtime_rate ? formatNumber(dataEdit.overtime_rate.toString()) : '') |
||||
setOverTimeRateUom(dataEdit.uom_overtime_rate) |
||||
setCostPerUsed(dataEdit.cost_per_used) |
||||
setAccrue(dataEdit.accrue_at) |
||||
setBaseCalender(dataEdit.base_calender) |
||||
}else{ |
||||
handleClearData() |
||||
setTypeForm('add') |
||||
} |
||||
} else { |
||||
handleClearData() |
||||
} |
||||
}, [openDialog]) |
||||
|
||||
const handleSave = () => { |
||||
let data = ''; |
||||
if (typeForm=="edit") { |
||||
data = { |
||||
id, |
||||
proyek_id: idTask, |
||||
user_id:user, |
||||
project_role:projectRole, |
||||
is_customer: isCustomer, |
||||
max_used:maxUsed.replaceAll(".", ""), |
||||
standart_rate:standartRate.replaceAll(".", ""), |
||||
uom_standart_rate:uomStandartRate, |
||||
overtime_rate:overTimeRate.replaceAll(".", ""), |
||||
uom_overtime_rate:overTimeRateUom, |
||||
} |
||||
|
||||
closeDialog('edit', data); |
||||
} else { |
||||
data = { |
||||
proyek_id: idTask, |
||||
user_id:user, |
||||
project_role:projectRole, |
||||
is_customer: isCustomer, |
||||
max_used:maxUsed.replaceAll(".", ""), |
||||
standart_rate:standartRate.replaceAll(".", ""), |
||||
uom_standart_rate:uomStandartRate, |
||||
overtime_rate:overTimeRate.replaceAll(".", ""), |
||||
uom_overtime_rate:overTimeRateUom, |
||||
} |
||||
closeDialog('add', data); |
||||
} |
||||
handleClearData() |
||||
} |
||||
|
||||
const handleCancel = () => { |
||||
closeDialog('cancel', 'none') |
||||
handleClearData() |
||||
} |
||||
|
||||
|
||||
const renderForm = () => { |
||||
return ( |
||||
<Form> |
||||
<Row> |
||||
<Col> |
||||
<FormGroup> |
||||
<Label>Human Resource</Label> |
||||
<Select showSearch value={user} onChange={(val) => setUser(val)} placeholder="Select Human Resource" filterOption={(input, option) => |
||||
option.children.toLowerCase().indexOf(input.toLowerCase()) >= 0 |
||||
} style={{ width: '100%' }}> |
||||
{listHr && listHr.map(res => ( |
||||
<Option key={res.id} value={res.id}>{`${res.name}`}</Option> |
||||
))} |
||||
</Select> |
||||
</FormGroup> |
||||
</Col> |
||||
<Col> |
||||
<FormGroup> |
||||
<Label>Role Human Resource</Label> |
||||
<Select showSearch value={projectRole} onChange={(val) => setProjectRole(val)} |
||||
placeholder="Select Role Human Resource" |
||||
filterOption={(input, option) => option.children.toLowerCase().indexOf(input.toLowerCase()) >= 0} |
||||
tyle={{ width: '100%' }}> |
||||
{dataRole && dataRole.map(res => ( |
||||
<Option key={res.id} value={res.id}>{`${res.name}`}</Option> |
||||
))} |
||||
</Select> |
||||
</FormGroup> |
||||
</Col> |
||||
<Col> |
||||
<FormGroup> |
||||
<Label>Percentage Available User</Label> |
||||
<Input type="text" onChange={(e) => setMaxUsed(formatNumber(e.target.value))} value={maxUsed} placeholder='' required/> |
||||
</FormGroup> |
||||
</Col> |
||||
</Row> |
||||
<Row> |
||||
<Col> |
||||
<FormGroup> |
||||
<Label>Customer</Label> |
||||
<div> |
||||
<Select |
||||
value={isCustomer} |
||||
defaultValue={false} |
||||
style={{ |
||||
width: 235, |
||||
}} |
||||
onChange={(val) => setIsCustomer(val)} |
||||
options={[ |
||||
{ |
||||
value: true, |
||||
label: 'Yes', |
||||
}, |
||||
{ |
||||
value: false, |
||||
label: 'No', |
||||
} |
||||
]} |
||||
/> |
||||
</div> |
||||
</FormGroup> |
||||
</Col> |
||||
</Row> |
||||
<div style={{widht:"100%",display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center"}}> |
||||
<FormGroup style={{flexBasis:"49%"}}> |
||||
<Label>Standart Rate</Label> |
||||
<Input type="text" onChange={(e) => setStandartRate(formatNumber(e.target.value))} value={standartRate} placeholder='1.000...' /> |
||||
</FormGroup> |
||||
<div style={{flexBasis:"2%",height:"100%",display:"flex",justifyContent:"center",alignItems:"center"}}> |
||||
/ |
||||
</div> |
||||
<FormGroup style={{flexBasis:"49%"}}> |
||||
<Label>UOM Standart Rate</Label> |
||||
<Select value={uomStandartRate} onChange={(val) => setUomStandartRate(val)} style={{ width: '100%' }} placeholder="Select UOM"> |
||||
<Option value={"Day"}>Day</Option> |
||||
<Option value={"Hour"}>Hour</Option> |
||||
</Select> |
||||
</FormGroup> |
||||
</div> |
||||
|
||||
<div style={{widht:"100%",display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center"}}> |
||||
<FormGroup style={{flexBasis:"49%"}}> |
||||
<Label>Overtime Rate</Label> |
||||
<Input type="text" onChange={(e) => setOverTimeRate(formatNumber(e.target.value))} value={overTimeRate} placeholder='1.000...' /> |
||||
</FormGroup> |
||||
<div style={{flexBasis:"2%",height:"100%",display:"flex",justifyContent:"center",alignItems:"center"}}> |
||||
/ |
||||
</div> |
||||
<FormGroup style={{flexBasis:"49%"}}> |
||||
<Label>UOM Overtime Rate</Label> |
||||
<Select value={overTimeRateUom} onChange={(val) => setOverTimeRateUom(val)} style={{ width: '100%' }} placeholder="Select UOM"> |
||||
<Option value={"Day"}>Day</Option> |
||||
<Option value={"Hour"}>Hour</Option> |
||||
</Select> |
||||
</FormGroup> |
||||
</div> |
||||
</Form> |
||||
) |
||||
} |
||||
|
||||
return ( |
||||
<> |
||||
<Modal size="lg" isOpen={openDialog} toggle={toggleDialog}> |
||||
<ModalHeader className="capitalize" toggle={closeDialog}>{typeForm=="add" ? "Add" : "Edit" } Assign Human Resource</ModalHeader> |
||||
<ModalBody> |
||||
{renderForm()} |
||||
</ModalBody> |
||||
<ModalFooter> |
||||
<Button color="primary" onClick={() => handleSave()}>{typeForm=="add" ? "Add" : "Edit" }</Button>{' '} |
||||
<Button className="capitalize" color="secondary" onClick={() => handleCancel()}>Cancel</Button> |
||||
</ModalFooter> |
||||
</Modal> |
||||
</> |
||||
) |
||||
|
||||
} |
||||
|
||||
export default FormAsignHr; |
||||
import React, { useEffect, useState } from 'react' |
||||
import { Modal, ModalHeader, ModalBody, ModalFooter } from 'reactstrap'; |
||||
import { Button, Form, FormGroup, Label, Input, Col, Row } from 'reactstrap'; |
||||
import { DatePicker, Select } from 'antd'; |
||||
import 'antd/dist/antd.css'; |
||||
import { formatNumber } from '../../../const/CustomFunc'; |
||||
const { Option } = Select |
||||
|
||||
const FormAsignHr = ({ openDialog, closeDialog, toggleDialog, idTask, dataEdit, dataHr, dataCurrentHr, dataRole }) => { |
||||
const [id, setId] = useState(null) |
||||
const [typeForm, setTypeForm] = useState('add') |
||||
const [user, setUser] = useState(null) |
||||
const [rbs, setRbs] = useState("") |
||||
const [projectRole, setProjectRole] = useState(null) |
||||
const [groupR, setGroupR] = useState("") |
||||
const [maxUsed, setMaxUsed] = useState("") |
||||
const [standartRate, setStandartRate] = useState("") |
||||
const [uomStandartRate, setUomStandartRate] = useState(null) |
||||
const [overTimeRate, setOverTimeRate] = useState("") |
||||
const [overTimeRateUom, setOverTimeRateUom] = useState(null) |
||||
const [costPerUsed, setCostPerUsed] = useState("") |
||||
const [accrue, setAccrue] = useState("") |
||||
const [baseCalender, setBaseCalender] = useState("") |
||||
const [listHr, setListHr] = useState([]) |
||||
|
||||
const handleClearData = () => { |
||||
setUser(null) |
||||
setRbs("") |
||||
setProjectRole(null) |
||||
setGroupR("") |
||||
setMaxUsed("") |
||||
setStandartRate("") |
||||
setUomStandartRate(null) |
||||
setOverTimeRate("") |
||||
setOverTimeRateUom(null) |
||||
setCostPerUsed("") |
||||
setAccrue("") |
||||
setBaseCalender("") |
||||
} |
||||
|
||||
useEffect(() => { |
||||
let data = dataHr || [] |
||||
let availableHr = [] |
||||
data.map((val, index) => { |
||||
if(dataEdit && dataEdit.user_id){ |
||||
if(parseInt(val.id)===parseInt(dataEdit.user_id)){ |
||||
availableHr.push(val); |
||||
} |
||||
} |
||||
let check = dataCurrentHr.some(function (x) { |
||||
return parseInt(val.id)==parseInt(x.user_id) |
||||
}); |
||||
if(!check){ |
||||
availableHr.push(val); |
||||
} |
||||
}); |
||||
setListHr(availableHr) |
||||
}, [dataHr, dataCurrentHr, dataEdit]) |
||||
|
||||
useEffect(() => { |
||||
if (idTask && idTask > 0) { |
||||
if(dataEdit && dataEdit!=""){ |
||||
setTypeForm('edit') |
||||
setId(dataEdit.id) |
||||
setUser(dataEdit.user_id) |
||||
setRbs(dataEdit.rbs) |
||||
setProjectRole(dataEdit.project_role) |
||||
setGroupR(dataEdit.group_r) |
||||
setMaxUsed(dataEdit.max_used ? formatNumber(dataEdit.max_used.toString()) : '') |
||||
setStandartRate(dataEdit.standart_rate ? formatNumber(dataEdit.standart_rate.toString()) : '') |
||||
setUomStandartRate(dataEdit.uom_standart_rate) |
||||
setOverTimeRate(dataEdit.overtime_rate ? formatNumber(dataEdit.overtime_rate.toString()) : '') |
||||
setOverTimeRateUom(dataEdit.uom_overtime_rate) |
||||
setCostPerUsed(dataEdit.cost_per_used) |
||||
setAccrue(dataEdit.accrue_at) |
||||
setBaseCalender(dataEdit.base_calender) |
||||
}else{ |
||||
handleClearData() |
||||
setTypeForm('add') |
||||
} |
||||
} else { |
||||
handleClearData() |
||||
} |
||||
}, [openDialog]) |
||||
|
||||
const handleSave = () => { |
||||
let data = ''; |
||||
if (typeForm=="edit") { |
||||
data = { |
||||
id, |
||||
proyek_id: idTask, |
||||
user_id:user, |
||||
project_role:projectRole, |
||||
is_customer: false, |
||||
max_used:maxUsed.replaceAll(".", ""), |
||||
standart_rate:standartRate.replaceAll(".", ""), |
||||
uom_standart_rate:uomStandartRate, |
||||
overtime_rate:overTimeRate.replaceAll(".", ""), |
||||
uom_overtime_rate:overTimeRateUom, |
||||
} |
||||
|
||||
closeDialog('edit', data); |
||||
} else { |
||||
data = { |
||||
proyek_id: idTask, |
||||
user_id:user, |
||||
project_role:projectRole, |
||||
is_customer: false, |
||||
max_used:maxUsed.replaceAll(".", ""), |
||||
standart_rate:standartRate.replaceAll(".", ""), |
||||
uom_standart_rate:uomStandartRate, |
||||
overtime_rate:overTimeRate.replaceAll(".", ""), |
||||
uom_overtime_rate:overTimeRateUom, |
||||
} |
||||
closeDialog('add', data); |
||||
} |
||||
handleClearData() |
||||
} |
||||
|
||||
const handleCancel = () => { |
||||
closeDialog('cancel', 'none') |
||||
handleClearData() |
||||
} |
||||
|
||||
|
||||
const renderForm = () => { |
||||
return ( |
||||
<Form> |
||||
<Row> |
||||
<Col> |
||||
<FormGroup> |
||||
<Label>Human Resource</Label> |
||||
<Select showSearch value={user} onChange={(val) => setUser(val)} placeholder="Select Human Resource" filterOption={(input, option) => |
||||
option.children.toLowerCase().indexOf(input.toLowerCase()) >= 0 |
||||
} style={{ width: '100%' }}> |
||||
{listHr && listHr.map(res => ( |
||||
<Option key={res.id} value={res.id}>{`${res.name}`}</Option> |
||||
))} |
||||
</Select> |
||||
</FormGroup> |
||||
</Col> |
||||
<Col> |
||||
<FormGroup> |
||||
<Label>Role Human Resource</Label> |
||||
<Select showSearch value={projectRole} onChange={(val) => setProjectRole(val)} |
||||
placeholder="Select Role Human Resource" |
||||
filterOption={(input, option) => option.children.toLowerCase().indexOf(input.toLowerCase()) >= 0} |
||||
tyle={{ width: '100%' }}> |
||||
{dataRole && dataRole.map(res => ( |
||||
<Option key={res.id} value={res.id}>{`${res.name}`}</Option> |
||||
))} |
||||
</Select> |
||||
</FormGroup> |
||||
</Col> |
||||
<Col> |
||||
<FormGroup> |
||||
<Label>Percentage Available User</Label> |
||||
<Input type="text" onChange={(e) => setMaxUsed(formatNumber(e.target.value))} value={maxUsed} placeholder='' required/> |
||||
</FormGroup> |
||||
</Col> |
||||
</Row> |
||||
<div style={{widht:"100%",display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center"}}> |
||||
<FormGroup style={{flexBasis:"49%"}}> |
||||
<Label>Standart Rate</Label> |
||||
<Input type="text" onChange={(e) => setStandartRate(formatNumber(e.target.value))} value={standartRate} placeholder='1.000...' /> |
||||
</FormGroup> |
||||
<div style={{flexBasis:"2%",height:"100%",display:"flex",justifyContent:"center",alignItems:"center"}}> |
||||
/ |
||||
</div> |
||||
<FormGroup style={{flexBasis:"49%"}}> |
||||
<Label>UOM Standart Rate</Label> |
||||
<Select value={uomStandartRate} onChange={(val) => setUomStandartRate(val)} style={{ width: '100%' }} placeholder="Select UOM"> |
||||
<Option value={"Day"}>Day</Option> |
||||
<Option value={"Hour"}>Hour</Option> |
||||
</Select> |
||||
</FormGroup> |
||||
</div> |
||||
|
||||
<div style={{widht:"100%",display:"flex",flexDirection:"row",justifyContent:"space-between",alignItems:"center"}}> |
||||
<FormGroup style={{flexBasis:"49%"}}> |
||||
<Label>Overtime Rate</Label> |
||||
<Input type="text" onChange={(e) => setOverTimeRate(formatNumber(e.target.value))} value={overTimeRate} placeholder='1.000...' /> |
||||
</FormGroup> |
||||
<div style={{flexBasis:"2%",height:"100%",display:"flex",justifyContent:"center",alignItems:"center"}}> |
||||
/ |
||||
</div> |
||||
<FormGroup style={{flexBasis:"49%"}}> |
||||
<Label>UOM Overtime Rate</Label> |
||||
<Select value={overTimeRateUom} onChange={(val) => setOverTimeRateUom(val)} style={{ width: '100%' }} placeholder="Select UOM"> |
||||
<Option value={"Day"}>Day</Option> |
||||
<Option value={"Hour"}>Hour</Option> |
||||
</Select> |
||||
</FormGroup> |
||||
</div> |
||||
</Form> |
||||
) |
||||
} |
||||
|
||||
return ( |
||||
<> |
||||
<Modal size="lg" isOpen={openDialog} toggle={toggleDialog}> |
||||
<ModalHeader className="capitalize" toggle={closeDialog}>{typeForm=="add" ? "Add" : "Edit" } Assign Human Resource</ModalHeader> |
||||
<ModalBody> |
||||
{renderForm()} |
||||
</ModalBody> |
||||
<ModalFooter> |
||||
<Button color="primary" onClick={() => handleSave()}>{typeForm=="add" ? "Add" : "Edit" }</Button>{' '} |
||||
<Button className="capitalize" color="secondary" onClick={() => handleCancel()}>Cancel</Button> |
||||
</ModalFooter> |
||||
</Modal> |
||||
</> |
||||
) |
||||
|
||||
} |
||||
|
||||
export default FormAsignHr; |
||||
|
Loading…
Reference in new issue