2021-08-27 14:21:48 +05:00
|
|
|
|
import { useParams } from "react-router-dom";
|
|
|
|
|
import { Link } from "react-router-dom";
|
|
|
|
|
import { useState, useEffect } from "react";
|
2021-08-29 14:43:02 +05:00
|
|
|
|
import { Table, Tag, Button, Modal } from "antd";
|
2021-08-27 14:21:48 +05:00
|
|
|
|
import {
|
|
|
|
|
makeTextColumn,
|
|
|
|
|
makeGroupColumn,
|
|
|
|
|
makeNumericColumn,
|
2021-08-30 11:26:00 +05:00
|
|
|
|
makeNumericColumnPlanFact
|
2021-08-27 14:21:48 +05:00
|
|
|
|
} from "../../components/Table";
|
2021-08-30 12:13:30 +05:00
|
|
|
|
import { calcAndUpdateStatsBySections, makeFilterMinMaxFunction } from "./functions";
|
2021-08-29 14:43:02 +05:00
|
|
|
|
import { invokeWebApiWrapperAsync } from '../../components/factory';
|
|
|
|
|
import { WellOperationStatService } from '../../services/api';
|
2021-08-30 11:26:00 +05:00
|
|
|
|
import ChartDepthToDay from '../../components/charts/ChartDepthToDay';
|
2021-08-31 11:14:35 +05:00
|
|
|
|
import WellOperationsTable from './WellOperationsTable'
|
2021-08-27 14:21:48 +05:00
|
|
|
|
|
|
|
|
|
const filtersMinMax = [
|
|
|
|
|
{
|
|
|
|
|
text: "min",
|
|
|
|
|
value: "min",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "max",
|
|
|
|
|
value: "max",
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const filtersWellsType = [
|
|
|
|
|
{
|
|
|
|
|
text: "Наклонно-направленная",
|
|
|
|
|
value: "Наклонно-направленная",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "Горизонтальная",
|
|
|
|
|
value: "Горизонтальная",
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export default function ClusterWells({ clusterData }) {
|
|
|
|
|
let { id } = useParams();
|
|
|
|
|
const [wellsStat, setWellsStat] = useState([]);
|
2021-08-31 11:14:35 +05:00
|
|
|
|
const [selectedWellId, setSelectedWellId] = useState([]);
|
|
|
|
|
const [isTVDModalVisible, setIsTVDModalVisible] = useState(false)
|
|
|
|
|
const [isOpsModalVisible, setIsOpsModalVisible] = useState(false)
|
|
|
|
|
const [tvdDataPlan, setTvdDataPlan] = useState([]);
|
|
|
|
|
const [tvdDataFact, setTvdDataFact] = useState([]);
|
|
|
|
|
const [tvdDataForecast, setTvdDataForecast] = useState([]);
|
|
|
|
|
const [wellOperations, setWellOperations] = useState([]);
|
2021-08-29 14:43:02 +05:00
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-08-30 11:26:00 +05:00
|
|
|
|
if (selectedWellId > 0) {
|
|
|
|
|
invokeWebApiWrapperAsync(
|
|
|
|
|
async () => {
|
|
|
|
|
const operations = await WellOperationStatService.getTvd(selectedWellId);
|
2021-08-31 11:14:35 +05:00
|
|
|
|
|
|
|
|
|
setWellOperations(operations)
|
|
|
|
|
|
|
|
|
|
const tvdPlanData = operations.map(el => {
|
2021-08-30 11:26:00 +05:00
|
|
|
|
return {key: el.plan?.id, depth: el.plan?.wellDepth, date: el.plan?.startDate}
|
|
|
|
|
}).filter(el => el.key)
|
2021-08-31 11:14:35 +05:00
|
|
|
|
|
|
|
|
|
setTvdDataPlan(tvdPlanData)
|
2021-08-30 11:26:00 +05:00
|
|
|
|
|
2021-08-31 11:14:35 +05:00
|
|
|
|
const tvdFactData = operations.map(el => {
|
2021-08-30 11:26:00 +05:00
|
|
|
|
return {key: el.fact?.id, depth: el.fact?.wellDepth, date: el.fact?.startDate}
|
|
|
|
|
}).filter(el => el.key)
|
|
|
|
|
|
2021-08-31 11:14:35 +05:00
|
|
|
|
setTvdDataFact(tvdFactData)
|
2021-08-30 11:26:00 +05:00
|
|
|
|
|
2021-08-31 11:14:35 +05:00
|
|
|
|
const tvdPredictData = operations.map(el => {
|
2021-08-30 11:26:00 +05:00
|
|
|
|
return {key: el.predict?.id, depth: el.predict?.wellDepth, date: el.predict?.startDate}
|
|
|
|
|
}).filter(el => el.key)
|
|
|
|
|
|
2021-08-31 11:14:35 +05:00
|
|
|
|
setTvdDataForecast(tvdPredictData)
|
2021-08-30 11:26:00 +05:00
|
|
|
|
},
|
|
|
|
|
null,
|
|
|
|
|
`Не удалось загрузить операции по скважине "${selectedWellId}"`,
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-08-29 14:43:02 +05:00
|
|
|
|
}, [selectedWellId]);
|
|
|
|
|
|
2021-08-27 14:21:48 +05:00
|
|
|
|
calcAndUpdateStatsBySections(wellsStat ?? [], [
|
|
|
|
|
"factStart",
|
|
|
|
|
"factEnd",
|
|
|
|
|
"periodPlan",
|
|
|
|
|
"periodFact",
|
|
|
|
|
"rateOfPenetrationPlan",
|
|
|
|
|
"rateOfPenetrationFact",
|
|
|
|
|
"routeSpeedPlan",
|
|
|
|
|
"routeSpeedFact",
|
|
|
|
|
"notProductiveTime",
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-08-30 12:13:30 +05:00
|
|
|
|
let tableData = clusterData.statsWells?.map((well) => {
|
2021-08-27 14:21:48 +05:00
|
|
|
|
return {
|
2021-08-30 12:13:30 +05:00
|
|
|
|
key: well.id,
|
|
|
|
|
id: well.id,
|
|
|
|
|
caption: well.caption,
|
|
|
|
|
wellType: well.wellType,
|
|
|
|
|
factStart: new Date(well.total.fact.start).toLocaleString(),
|
|
|
|
|
factEnd: new Date(well.total.fact.end).toLocaleString(),
|
2021-08-27 14:21:48 +05:00
|
|
|
|
periodPlan: (
|
2021-08-30 12:13:30 +05:00
|
|
|
|
(new Date(well.total.plan.end) - new Date(well.total.plan.start)) /
|
2021-08-30 11:26:00 +05:00
|
|
|
|
(1000 * 60 * 60 * 24)
|
2021-08-27 14:21:48 +05:00
|
|
|
|
).toFixed(2),
|
|
|
|
|
periodFact: (
|
2021-08-30 12:13:30 +05:00
|
|
|
|
(new Date(well.total.fact.end) - new Date(well.total.fact.start)) /
|
2021-08-30 11:26:00 +05:00
|
|
|
|
(1000 * 60 * 60 * 24)
|
2021-08-27 14:21:48 +05:00
|
|
|
|
).toFixed(2),
|
2021-08-30 12:13:30 +05:00
|
|
|
|
rateOfPenetrationPlan: well.total.plan.rop.toFixed(2),
|
|
|
|
|
rateOfPenetrationFact: well.total.fact.rop.toFixed(2),
|
|
|
|
|
routeSpeedPlan: well.total.plan.routeSpeed.toFixed(2),
|
|
|
|
|
routeSpeedFact: well.total.fact.routeSpeed.toFixed(2),
|
|
|
|
|
notProductiveTimePlan: well.total.plan.nonProductiveHours.toFixed(2),
|
|
|
|
|
notProductiveTimeFact: well.total.fact.nonProductiveHours.toFixed(2),
|
|
|
|
|
companies: well.companies,
|
2021-08-27 14:21:48 +05:00
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
setWellsStat(tableData);
|
|
|
|
|
}, [id, clusterData]);
|
|
|
|
|
|
|
|
|
|
const columns = [
|
|
|
|
|
makeTextColumn("скв №", "caption", null, null, (_, item) => (
|
|
|
|
|
<Link to={`/well/${item.id}`}>{item.caption}</Link>
|
|
|
|
|
)),
|
|
|
|
|
makeTextColumn("Тип скв.", "wellType", filtersWellsType),
|
|
|
|
|
makeGroupColumn("Фактические сроки", [
|
|
|
|
|
makeNumericColumn("начало", "factStart"),
|
|
|
|
|
makeNumericColumn("окончание", "factEnd"),
|
|
|
|
|
]),
|
2021-08-30 12:13:30 +05:00
|
|
|
|
makeNumericColumnPlanFact("Продолжительность", "period", filtersMinMax, makeFilterMinMaxFunction),
|
|
|
|
|
makeNumericColumnPlanFact("МСП", "rateOfPenetration", filtersMinMax, makeFilterMinMaxFunction),
|
|
|
|
|
makeNumericColumnPlanFact("Рейсовая скорость", "routeSpeed", filtersMinMax, makeFilterMinMaxFunction),
|
|
|
|
|
makeNumericColumnPlanFact("НПВ, сут", "notProductiveTime", filtersMinMax, makeFilterMinMaxFunction),
|
2021-08-27 14:21:48 +05:00
|
|
|
|
{
|
|
|
|
|
title: "График глубина-день",
|
2021-08-31 11:14:35 +05:00
|
|
|
|
render: (value) => <Button onClick={()=> {
|
|
|
|
|
setSelectedWellId(value.id)
|
|
|
|
|
setIsTVDModalVisible(true)
|
2021-08-29 14:43:02 +05:00
|
|
|
|
}}>Открыть</Button>,
|
2021-08-27 14:21:48 +05:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Таблица по операциям",
|
2021-08-31 11:14:35 +05:00
|
|
|
|
render: (value) => <Button onClick={()=> {
|
|
|
|
|
setSelectedWellId(value.id)
|
|
|
|
|
setIsOpsModalVisible(true)
|
|
|
|
|
}}>Открыть</Button>,
|
2021-08-27 14:21:48 +05:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Подрядчики",
|
|
|
|
|
key: "companies",
|
|
|
|
|
dataIndex: "companies",
|
|
|
|
|
render: (item) =>
|
|
|
|
|
item.map((company) => <Tag color="blue">{company.caption}</Tag>),
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return (
|
2021-08-29 14:43:02 +05:00
|
|
|
|
<div>
|
|
|
|
|
<Table
|
|
|
|
|
columns={columns}
|
|
|
|
|
dataSource={wellsStat}
|
|
|
|
|
size={"small"}
|
|
|
|
|
bordered
|
|
|
|
|
pagination={false}
|
|
|
|
|
rowKey={(record) => record.id}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<Modal
|
2021-08-31 11:14:35 +05:00
|
|
|
|
title='TVD'
|
|
|
|
|
centered
|
|
|
|
|
visible={isTVDModalVisible}
|
|
|
|
|
onCancel={() => setIsTVDModalVisible(false)}
|
|
|
|
|
width={1500}
|
|
|
|
|
footer={null}
|
2021-08-29 14:43:02 +05:00
|
|
|
|
>
|
2021-08-30 11:26:00 +05:00
|
|
|
|
<ChartDepthToDay
|
2021-08-31 11:14:35 +05:00
|
|
|
|
dataPlan={tvdDataPlan}
|
|
|
|
|
dataFact={tvdDataFact}
|
|
|
|
|
dataForecast={tvdDataForecast} />
|
|
|
|
|
</Modal>
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
title='Операции'
|
|
|
|
|
centered
|
|
|
|
|
visible={isOpsModalVisible}
|
|
|
|
|
onCancel={() => setIsOpsModalVisible(false)}
|
|
|
|
|
width={1500}
|
|
|
|
|
footer={null}
|
|
|
|
|
>
|
|
|
|
|
<WellOperationsTable
|
|
|
|
|
wellOperations={wellOperations}
|
|
|
|
|
/>
|
2021-08-29 14:43:02 +05:00
|
|
|
|
</Modal>
|
|
|
|
|
</div>
|
2021-08-27 14:21:48 +05:00
|
|
|
|
);
|
|
|
|
|
}
|