feat(receipt-import): enhance package handling with new fields and UI adjustments

This commit is contained in:
Nils-Johan Gynther
2026-05-02 10:11:31 +02:00
parent f9dc55d42c
commit 9161de5d52
4 changed files with 251 additions and 78 deletions
@@ -18,6 +18,9 @@ class ItemEdit {
final CategorySelectionSource? categorySource;
final double? quantity;
final String? unit;
final double? packQuantity;
final String? packUnit;
final double? packageCount;
final ImportDestination destination;
const ItemEdit({
@@ -28,6 +31,9 @@ class ItemEdit {
this.categorySource,
this.quantity,
this.unit,
this.packQuantity,
this.packUnit,
this.packageCount,
this.destination = ImportDestination.inventory,
});
}