feat: add receipt import functionality with UI and backend integration

This commit is contained in:
Nils-Johan Gynther
2026-04-16 20:02:57 +02:00
parent 88d3c4ad73
commit a12abe0402
10 changed files with 513 additions and 0 deletions
@@ -0,0 +1,8 @@
export interface ParsedReceiptItem {
rawName: string;
quantity: number;
unit: string;
price?: number | null;
matchedProductId?: number;
matchedProductName?: string;
}