Implemented settings, new scan, enhanced UI/UX

This commit is contained in:
Dennis Nemec
2025-11-04 16:52:39 +01:00
parent b19a6e1cd4
commit 7ea9108f62
79 changed files with 3306 additions and 566 deletions

View File

@ -0,0 +1,21 @@
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;
}