Добавлен обработчик по нажатию на кнопку сброса ошибки в ПБ

This commit is contained in:
goodmice 2022-07-18 12:03:11 +05:00
parent a052fe7cee
commit 4606d96c88

View File

@ -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>
</> </>