forked from ddrilling/asb_cloud_front
Добавлен обработчик по нажатию на кнопку сброса ошибки в ПБ
This commit is contained in:
parent
a052fe7cee
commit
4606d96c88
@ -99,6 +99,15 @@ const DrillingProgram = memo(() => {
|
|||||||
updateData()
|
updateData()
|
||||||
}, [updateData])
|
}, [updateData])
|
||||||
|
|
||||||
|
const clearError = useCallback(() => invokeWebApiWrapperAsync(
|
||||||
|
async () => {
|
||||||
|
await DrillingProgramService.clearError(idWell)
|
||||||
|
await updateData()
|
||||||
|
},
|
||||||
|
setShowLoader,
|
||||||
|
`Не удалось сбросить ошибку формирования программы бурения для скважины ${idWell}`
|
||||||
|
), [idWell])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<LoaderPortal show={showLoader}>
|
<LoaderPortal show={showLoader}>
|
||||||
<Layout style={{ backgroundColor: 'white' }}>
|
<Layout style={{ backgroundColor: 'white' }}>
|
||||||
@ -131,7 +140,7 @@ const DrillingProgram = memo(() => {
|
|||||||
<StateIcon className={'m-10'} />
|
<StateIcon className={'m-10'} />
|
||||||
{error?.message ?? state.text}
|
{error?.message ?? state.text}
|
||||||
</h3>
|
</h3>
|
||||||
<Button icon={<ReloadOutlined />}>
|
<Button onClick={clearError} icon={<ReloadOutlined />}>
|
||||||
Сбросить статус ошибки
|
Сбросить статус ошибки
|
||||||
</Button>
|
</Button>
|
||||||
</>
|
</>
|
||||||
|
Loading…
Reference in New Issue
Block a user