This commit is contained in:
2026-05-26 19:31:25 +02:00
parent 45455a16c4
commit 9d796d6e41
12 changed files with 785 additions and 62 deletions

View File

@@ -1,4 +1,5 @@
import 'package:equatable/equatable.dart';
import 'package:flux/features/master_data/store/models/store_model.dart';
// L'Enum magico e blindato per il sistema
enum SystemRole {
@@ -26,6 +27,7 @@ class StaffMemberModel extends Equatable {
final SystemRole systemRole;
final bool isActive;
final bool hasJoined;
final StoreModel? store;
const StaffMemberModel({
this.id,
@@ -38,6 +40,7 @@ class StaffMemberModel extends Equatable {
this.systemRole = SystemRole.user,
this.isActive = true,
this.hasJoined = false,
this.store,
});
StaffMemberModel copyWith({
@@ -52,6 +55,7 @@ class StaffMemberModel extends Equatable {
SystemRole? systemRole,
bool? isActive,
bool? hasJoined,
StoreModel? store,
}) {
return StaffMemberModel(
id: id ?? this.id,
@@ -64,6 +68,7 @@ class StaffMemberModel extends Equatable {
systemRole: systemRole ?? this.systemRole,
isActive: isActive ?? this.isActive,
hasJoined: hasJoined ?? this.hasJoined,
store: store ?? this.store,
);
}
@@ -90,6 +95,7 @@ class StaffMemberModel extends Equatable {
systemRole: SystemRole.fromString(map['system_role']),
isActive: map['is_active'] ?? true,
hasJoined: map['has_joined'] ?? false,
store: map['store'] != null ? StoreModel.fromMap(map['store']) : null,
);
}
@@ -120,5 +126,6 @@ class StaffMemberModel extends Equatable {
systemRole,
isActive,
hasJoined,
store,
];
}