view shits of ordes by date
This commit is contained in:
@@ -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,
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user