+
Загрузить файл excel с операциями на сервер
+
Очистить список операций перед импортом
+
+
+ {errorText}
+
+}
\ No newline at end of file
diff --git a/src/pages/WellOperations/index.jsx b/src/pages/WellOperations/index.jsx
index ba226e9..f19bb29 100644
--- a/src/pages/WellOperations/index.jsx
+++ b/src/pages/WellOperations/index.jsx
@@ -1,16 +1,22 @@
import {Layout, Menu} from "antd";
-import {Switch, Link, Route, Redirect, useParams} from "react-router-dom";
+import {Switch, Link, Route, Redirect, useParams, useHistory} from "react-router-dom";
import { FolderOutlined } from "@ant-design/icons";
import { WellOperationsEditor } from './WellOperationsEditor'
import { WellSectionsStat } from './WellSectionsStat'
import { Tvd } from './Tvd'
+import { ImportExportBar } from "./ImportExportBar";
const { Content } = Layout
export default function WellOperations({idWell}) {
let {tab} = useParams()
+ let history = useHistory()
const rootPath = `/well/${idWell}/operations`;
+ const onImported = () => {
+ history.push(`${rootPath}`)
+ }
+
return(<>