saving name of the orders

This commit is contained in:
José Salazar
2026-01-29 17:10:26 -05:00
parent 6592462e90
commit 02b0790ec3
14 changed files with 18224 additions and 18078 deletions

View File

@@ -11,6 +11,7 @@ class OneTimeOrder extends Equatable {
required this.location,
required this.positions,
this.hub,
this.eventName,
this.vendorId,
this.roleRates = const <String, double>{},
});
@@ -26,6 +27,9 @@ class OneTimeOrder extends Equatable {
/// Selected hub details for this order.
final OneTimeOrderHubDetails? hub;
/// Optional order name.
final String? eventName;
/// Selected vendor id for this order.
final String? vendorId;
@@ -38,6 +42,7 @@ class OneTimeOrder extends Equatable {
location,
positions,
hub,
eventName,
vendorId,
roleRates,
];