view shits of ordes by date

This commit is contained in:
José Salazar
2026-01-23 20:43:18 -05:00
parent 5c159493dd
commit afba0e64df
20 changed files with 20246 additions and 18735 deletions

View File

@@ -19,6 +19,8 @@ class OrderItem extends Equatable {
required this.filled,
required this.workersNeeded,
required this.hourlyRate,
this.hours = 0,
this.totalValue = 0,
this.confirmedApps = const <Map<String, dynamic>>[],
});
@@ -58,6 +60,12 @@ class OrderItem extends Equatable {
/// Hourly pay rate.
final double hourlyRate;
/// Total hours for the shift role.
final double hours;
/// Total value for the shift role.
final double totalValue;
/// List of confirmed worker applications.
final List<Map<String, dynamic>> confirmedApps;
@@ -75,6 +83,8 @@ class OrderItem extends Equatable {
filled,
workersNeeded,
hourlyRate,
hours,
totalValue,
confirmedApps,
];
}