Remove ShopWorker entity and migrate worker identity to ApplicationUser
Removes the ShopWorker and ShopWorkerRoleCost entities, all related DTOs, mappings, controllers, views, and import/export paths. Worker identity is now handled entirely through ApplicationUser with per-user LaborCostPerHour. ShopWorkerRoleCosts table remains in production pending manual data migration. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -226,11 +226,9 @@ public class CompanyUsersController : Controller
|
||||
/// Creates a new company user, enforcing the subscription user-count limit and a whitelist
|
||||
/// of valid <c>CompanyRole</c> values (preventing callers from submitting a null role to
|
||||
/// create a SuperAdmin-equivalent account). CompanyAdmin users automatically receive all
|
||||
/// per-feature permissions unless a SuperAdmin is explicitly customising them. Workers
|
||||
/// additionally get an auto-created <see cref="ShopWorker"/> record so they appear in job
|
||||
/// assignment dropdowns without a separate onboarding step. A legacy ASP.NET Identity role
|
||||
/// (Administrator / Manager / Employee / ReadOnly) is also assigned to satisfy policy
|
||||
/// checks that still reference the role system.
|
||||
/// per-feature permissions unless a SuperAdmin is explicitly customising them. A legacy
|
||||
/// ASP.NET Identity role (Administrator / Manager / Employee / ReadOnly) is also assigned
|
||||
/// to satisfy policy checks that still reference the role system.
|
||||
/// </summary>
|
||||
// POST: CompanyUsers/Create
|
||||
[HttpPost]
|
||||
@@ -351,27 +349,7 @@ public class CompanyUsersController : Controller
|
||||
|
||||
await _userManager.AddToRoleAsync(user, legacyRole);
|
||||
|
||||
// If Worker role, automatically create a ShopWorker record
|
||||
if (model.CompanyRole == AppConstants.CompanyRoles.Worker)
|
||||
{
|
||||
var shopWorker = new ShopWorker
|
||||
{
|
||||
Name = user.FullName,
|
||||
Email = user.Email,
|
||||
Phone = user.PhoneNumber,
|
||||
IsActive = true,
|
||||
Notes = $"Auto-created from user account: {user.Email}",
|
||||
Role = Core.Enums.ShopWorkerRole.GeneralLabor, // Default role
|
||||
CompanyId = companyId!.Value
|
||||
};
|
||||
|
||||
await _unitOfWork.ShopWorkers.AddAsync(shopWorker);
|
||||
await _unitOfWork.CompleteAsync();
|
||||
|
||||
_logger.LogInformation("ShopWorker record created for user {Email}", user.Email);
|
||||
}
|
||||
|
||||
_logger.LogInformation("User {Email} created successfully by {Admin}",
|
||||
_logger.LogInformation("User {Email} created successfully by {Admin}",
|
||||
user.Email, User.Identity?.Name);
|
||||
|
||||
TempData["Success"] = $"User '{user.FullName}' created successfully.";
|
||||
@@ -441,6 +419,7 @@ public class CompanyUsersController : Controller
|
||||
CompanyRole = user.CompanyRole ?? AppConstants.CompanyRoles.Viewer,
|
||||
Department = user.Department,
|
||||
Position = user.Position,
|
||||
LaborCostPerHour = user.LaborCostPerHour,
|
||||
Phone = user.PhoneNumber,
|
||||
IsActive = user.IsActive,
|
||||
HireDate = user.HireDate,
|
||||
@@ -479,11 +458,9 @@ public class CompanyUsersController : Controller
|
||||
/// Saves changes to an existing company user. Validates company isolation and role whitelist
|
||||
/// (same checks as <see cref="Edit(string, string)"/>). Prevents two dangerous deactivation
|
||||
/// scenarios: a user deactivating themselves, and deactivating the last active CompanyAdmin
|
||||
/// for a company (which would lock out the tenant). When the role changes to Worker and no
|
||||
/// matching <see cref="ShopWorker"/> record exists, one is created automatically; if one
|
||||
/// already exists, its name, email, and active status are kept in sync. Email changes are
|
||||
/// applied via <c>SetEmailAsync</c> / <c>SetUserNameAsync</c> after the main update so
|
||||
/// Identity's own normalisation logic runs correctly.
|
||||
/// for a company (which would lock out the tenant). Email changes are applied via
|
||||
/// <c>SetEmailAsync</c> / <c>SetUserNameAsync</c> after the main update so Identity's own
|
||||
/// normalisation logic runs correctly.
|
||||
/// </summary>
|
||||
// POST: CompanyUsers/Edit/id
|
||||
[HttpPost]
|
||||
@@ -596,6 +573,7 @@ public class CompanyUsersController : Controller
|
||||
user.CompanyRole = model.CompanyRole;
|
||||
user.Department = model.Department;
|
||||
user.Position = model.Position;
|
||||
user.LaborCostPerHour = model.LaborCostPerHour;
|
||||
user.PhoneNumber = model.Phone;
|
||||
user.IsActive = model.IsActive;
|
||||
user.HireDate = model.HireDate;
|
||||
@@ -632,60 +610,7 @@ public class CompanyUsersController : Controller
|
||||
user.Id, oldEmail, model.Email, User.Identity?.Name);
|
||||
}
|
||||
|
||||
// If role changed to Worker, ensure ShopWorker record exists
|
||||
if (model.CompanyRole == AppConstants.CompanyRoles.Worker)
|
||||
{
|
||||
// Search by oldEmail so we find the record even when the email just changed
|
||||
var lookupEmail = emailChanged ? oldEmail : user.Email;
|
||||
var existingShopWorker = (await _unitOfWork.ShopWorkers.FindAsync(
|
||||
sw => sw.Email == lookupEmail && sw.CompanyId == user.CompanyId)).ToList();
|
||||
|
||||
if (!existingShopWorker.Any())
|
||||
{
|
||||
var shopWorker = new ShopWorker
|
||||
{
|
||||
Name = user.FullName,
|
||||
Email = user.Email,
|
||||
Phone = user.PhoneNumber,
|
||||
IsActive = user.IsActive,
|
||||
Notes = $"Auto-created from user account: {user.Email}",
|
||||
Role = Core.Enums.ShopWorkerRole.GeneralLabor, // Default role
|
||||
CompanyId = user.CompanyId
|
||||
};
|
||||
|
||||
await _unitOfWork.ShopWorkers.AddAsync(shopWorker);
|
||||
await _unitOfWork.CompleteAsync();
|
||||
|
||||
_logger.LogInformation("ShopWorker record created for user {Email}", user.Email);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Update existing ShopWorker to ensure it's active
|
||||
var shopWorker = existingShopWorker.First();
|
||||
var shopWorkerDirty = false;
|
||||
|
||||
if (!shopWorker.IsActive && user.IsActive)
|
||||
{
|
||||
shopWorker.IsActive = true;
|
||||
shopWorkerDirty = true;
|
||||
_logger.LogInformation("ShopWorker record reactivated for user {Email}", user.Email);
|
||||
}
|
||||
|
||||
if (emailChanged && shopWorker.Email == oldEmail)
|
||||
{
|
||||
shopWorker.Email = user.Email;
|
||||
shopWorkerDirty = true;
|
||||
}
|
||||
|
||||
shopWorker.Name = user.FullName;
|
||||
shopWorker.Phone = user.PhoneNumber;
|
||||
|
||||
if (shopWorkerDirty)
|
||||
await _unitOfWork.CompleteAsync();
|
||||
}
|
||||
}
|
||||
|
||||
_logger.LogInformation("User {Email} updated successfully by {Admin}",
|
||||
_logger.LogInformation("User {Email} updated successfully by {Admin}",
|
||||
user.Email, User.Identity?.Name);
|
||||
|
||||
TempData["Success"] = "User updated successfully.";
|
||||
|
||||
Reference in New Issue
Block a user