diff --git a/Sheaft.Application.Handlers/Commands/ZoneCommandsHandler.cs b/Sheaft.Application.Handlers/Commands/ZoneCommandsHandler.cs index b00d76a66..c9bdc1b8d 100644 --- a/Sheaft.Application.Handlers/Commands/ZoneCommandsHandler.cs +++ b/Sheaft.Application.Handlers/Commands/ZoneCommandsHandler.cs @@ -50,7 +50,7 @@ public async Task> Handle(UpdateZonesProgressCommand request, Cance foreach (var departmentId in region.DepartmentIds) { var producerPerDepartment = producersPerDepartments.First(p => p.DepartmentId == departmentId); - producersCount += (producerPerDepartment.Created ?? 0); + producersCount += (producerPerDepartment.Active ?? 0); var storePerDepartment = storesPerDepartments.First(p => p.DepartmentId == departmentId); storesCount += (storePerDepartment.Created ?? 0);