Implemented new set article mechanism for unscannable articles
This commit is contained in:
@ -203,3 +203,17 @@ class FinishDeliveryEvent extends TourEvent {
|
||||
Uint8List customerSignature;
|
||||
Uint8List driverSignature;
|
||||
}
|
||||
|
||||
class SetArticleAmountEvent extends TourEvent {
|
||||
final String deliveryId;
|
||||
final String articleId;
|
||||
final String? reason;
|
||||
final int amount;
|
||||
|
||||
SetArticleAmountEvent({
|
||||
required this.deliveryId,
|
||||
required this.articleId,
|
||||
required this.amount,
|
||||
this.reason,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user