@@ -245,7 +245,10 @@ await dbContext.PlanRegistrations.AsNoTracking()
245245 Pause3Id = planRegistration . Pause3Id ,
246246 Pause4Id = planRegistration . Pause4Id ,
247247 Pause5Id = planRegistration . Pause5Id ,
248- PauseMinutes = planRegistration . Pause1Id > 0 ? planRegistration . Pause1Id * 5 - 5 + planRegistration . Pause2Id > 0 ? planRegistration . Pause2Id * 5 - 5 : 0 : planRegistration . Pause2Id > 0 ? planRegistration . Pause2Id * 5 - 5 : 0 ,
248+ PauseMinutes = planRegistration . Pause1Id > 0 ? planRegistration . Pause1Id * 5 - 5 +
249+ ( planRegistration . Pause2Id > 0
250+ ? planRegistration . Pause2Id * 5 - 5
251+ : 0 ) : planRegistration . Pause2Id > 0 ? planRegistration . Pause2Id * 5 - 5 : 0 ,
249252 CommentOffice = planRegistration . CommentOffice ,
250253 WorkerComment = planRegistration . WorkerComment ,
251254 SumFlexStart = planRegistration . SumFlexStart ,
@@ -856,7 +859,10 @@ await dbContext.PlanRegistrations.AsNoTracking()
856859 Pause3Id = planRegistration . Pause3Id ,
857860 Pause4Id = planRegistration . Pause4Id ,
858861 Pause5Id = planRegistration . Pause5Id ,
859- PauseMinutes = planRegistration . Pause1Id > 0 ? planRegistration . Pause1Id * 5 - 5 + planRegistration . Pause2Id > 0 ? planRegistration . Pause2Id * 5 - 5 : 0 : planRegistration . Pause2Id > 0 ? planRegistration . Pause2Id * 5 - 5 : 0 ,
862+ PauseMinutes = planRegistration . Pause1Id > 0 ? planRegistration . Pause1Id * 5 - 5 +
863+ ( planRegistration . Pause2Id > 0
864+ ? planRegistration . Pause2Id * 5 - 5
865+ : 0 ) : planRegistration . Pause2Id > 0 ? planRegistration . Pause2Id * 5 - 5 : 0 ,
860866 CommentOffice = planRegistration . CommentOffice ,
861867 WorkerComment = planRegistration . WorkerComment ,
862868 SumFlexStart = planRegistration . SumFlexStart ,
0 commit comments