updated inventory table

This commit is contained in:
2026-05-30 11:53:54 +02:00
parent 2d3450331a
commit f1a10b0791
2 changed files with 111 additions and 410 deletions
+16
View File
@@ -45,3 +45,19 @@ export interface SettingsIntf {
["app-name"]: string;
currency: string;
}
export type ProductRow = {
id: string;
uuid: string;
name: string;
description: string;
imageUrl?: string;
price: string;
stock: string;
stockLabel: string;
stockStatus: "ok" | "low" | "missing";
location: string;
locationDetail: string;
expiryDate: string;
refillDate: string;
};