diff --git a/ServiceHost/Areas/Admin/Pages/Company/Checkouts/Index.cshtml.cs b/ServiceHost/Areas/Admin/Pages/Company/Checkouts/Index.cshtml.cs index e2b5f700..73afdd1f 100644 --- a/ServiceHost/Areas/Admin/Pages/Company/Checkouts/Index.cshtml.cs +++ b/ServiceHost/Areas/Admin/Pages/Company/Checkouts/Index.cshtml.cs @@ -663,7 +663,8 @@ public class IndexModel : PageModel #endregion bool hasWorkFlow = false; - if (result.CreateCheckoutList.Count > 0 && workshop.HasRollCallFreeVip == "true") + var skipRollCallByWorkshopId = WorkshopId is 368 or 367 or 610; + if (result.CreateCheckoutList.Count > 0 && workshop.HasRollCallFreeVip == "true" && !skipRollCallByWorkshopId) { DateTime startSreach; DateTime endSearch;