diff --git a/src/pages/WellOperations/DrillProcessFlow.jsx b/src/pages/WellOperations/DrillProcessFlow.jsx index c078fe0..cd75ae7 100644 --- a/src/pages/WellOperations/DrillProcessFlow.jsx +++ b/src/pages/WellOperations/DrillProcessFlow.jsx @@ -9,12 +9,12 @@ import { EditableTable } from '../../components/Table' import { DrillFlowChartService } from '../../services/api' const columns = [ - makeNumericStartEnd('Глубина', 'depth'), - makeNumericMinMax('Нагрузка', 'axialLoad'), - makeNumericMinMax('Давление', 'pressure'), - makeNumericMinMax('Момент на ВСП', 'rotorTorque'), - makeNumericMinMax('Обороты на ВСП', 'rotorSpeed'), - makeNumericMinMax('Расход', 'flow') + makeNumericStartEnd('Глубина, м', 'depth'), + makeNumericMinMax('Нагрузка, т', 'axialLoad'), + makeNumericMinMax('Давление, атм', 'pressure'), + makeNumericMinMax('Момент на ВСП, кН·м', 'rotorTorque'), + makeNumericMinMax('Обороты на ВСП, об/мин', 'rotorSpeed'), + makeNumericMinMax('Расход, л/с', 'flow') ] export const DrillProcessFlow = ({idWell}) => {