From 925b25bd163a1a57a0f0d645d3a19f5310f22954 Mon Sep 17 00:00:00 2001 From: Mikhail Trubnikov Date: Tue, 13 Aug 2024 08:55:33 +1000 Subject: [PATCH] =?UTF-8?q?fix(Dal,=20EsppTemplateSync,=20EsppScheduleSync?= =?UTF-8?q?):=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=20?= =?UTF-8?q?=D0=BC=D0=B5=D1=82=D0=BE=D0=B4=20ChangeRobotStatus,=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B8=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B8=20=D1=81=D1=82=D0=B0=D1=82=D1=83=D1=81=D0=B0=20=D1=81?= =?UTF-8?q?=D0=B8=D0=BD=D1=85=D1=80=D0=BE=D0=BD=D0=B8=D0=B7=D0=B0=D1=86?= =?UTF-8?q?=D0=B8=D0=B8=20=D0=BD=D0=B0=20=D0=9E=D0=BA,=20=D0=B8=D0=B7?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D1=8F=D0=B5=D0=BC=20=D1=81=D1=82=D0=B0=D1=82?= =?UTF-8?q?=D1=83=D1=81=20=D1=80=D0=BE=D0=B1=D0=BE=D1=82=D0=BE=D0=B2=20?= =?UTF-8?q?=D0=BD=D0=B0=20Complete?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.DAL/Services/Implementations/RobotConfigurationService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PARR.DAL/Services/Implementations/RobotConfigurationService.cs b/PARR.DAL/Services/Implementations/RobotConfigurationService.cs index edc58728..016f241d 100644 --- a/PARR.DAL/Services/Implementations/RobotConfigurationService.cs +++ b/PARR.DAL/Services/Implementations/RobotConfigurationService.cs @@ -38,6 +38,7 @@ namespace PARR.DAL.Services.Implementations ChangeRobotStatus(RobotStatusEnum.Wait, ref configuration); break; case TaskStatusEnum.Ok: + ChangeRobotStatus(RobotStatusEnum.Complete, ref configuration); break; default: break;