2021-08-31 11:14:35 +05:00
|
|
|
|
|
|
|
import { Table } from "antd";
|
|
|
|
import {
|
|
|
|
makeTextColumn,
|
|
|
|
makeNumericColumnPlanFact
|
|
|
|
} from "../../components/Table"
|
|
|
|
|
|
|
|
export default function WellOperationsTable({wellOperations}) {
|
|
|
|
|
|
|
|
const columns = [
|
|
|
|
makeTextColumn("Конструкция секции","sectionType"),
|
|
|
|
makeTextColumn("Операция","operationName"),
|
|
|
|
makeNumericColumnPlanFact("Глубина забоя", "depth"),
|
2021-08-31 11:46:55 +05:00
|
|
|
makeNumericColumnPlanFact("Часы", "durationHours"),
|
|
|
|
makeNumericColumnPlanFact("Комментарий", "comment")
|
2021-08-31 11:14:35 +05:00
|
|
|
];
|
|
|
|
|
|
|
|
const operations = wellOperations.map(el => {
|
|
|
|
return {
|
2021-08-31 11:46:55 +05:00
|
|
|
key: el.plan?.id ?? el.fact.id,
|
|
|
|
sectionType: el.plan?.wellSectionTypeName ?? el.fact.wellSectionTypeName,
|
|
|
|
operationName: el.plan?.categoryName ?? el.fact.categoryName,
|
|
|
|
depthPlan: el.plan?.wellDepth?.toFixed(2) ?? '-',
|
|
|
|
depthFact: el.fact?.wellDepth?.toFixed(2) ?? '-',
|
|
|
|
durationHoursPlan: el.plan?.durationHours ?? '-',
|
|
|
|
durationHoursFact: el.fact?.durationHours ?? '-',
|
|
|
|
commentPlan: el.plan?.comment ?? '-',
|
|
|
|
commentFact: el.fact?.comment ?? '-'
|
2021-08-31 11:14:35 +05:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-08-31 11:46:55 +05:00
|
|
|
return(
|
2021-08-31 11:14:35 +05:00
|
|
|
<Table
|
|
|
|
columns={columns}
|
|
|
|
dataSource={operations}
|
|
|
|
size={"small"}
|
|
|
|
bordered
|
2021-08-31 11:46:55 +05:00
|
|
|
pagination={{ defaultPageSize: 10 }}
|
2021-08-31 11:14:35 +05:00
|
|
|
rowKey={(record) => record.id}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|