Files
Holzleitner-Lieferservice-App/lib/feature/scan/model/article.dart
2025-11-04 16:52:39 +01:00

21 lines
496 B
Dart

import 'package:hl_lieferservice/model/delivery.dart';
class ArticleGroup {
final String articleName;
final String articleNumber;
final String internalRowId;
int totalCount;
int scannedCount;
Set<Delivery> deliveryIds;
ArticleGroup({
required this.articleName,
required this.internalRowId,
required this.articleNumber,
required this.totalCount,
required this.deliveryIds,
this.scannedCount = 0,
});
bool get isComplete => scannedCount >= totalCount;
}