feat: add expiry tracking and low-stock threshold (#63 #67) #70

Merged
makiolaj merged 6 commits from feature/issue-63-67-expiry-lowstock-fields into develop 2026-02-25 01:24:26 +00:00
Showing only changes of commit 76a229952f - Show all commits

View File

@@ -26,6 +26,8 @@ export interface Database {
quantity: number
unit_id: string
expiry_date: string | null
expires_at: string | null
low_stock_threshold: number | null
notes: string | null
added_by: string
created_at: string
@@ -38,6 +40,8 @@ export interface Database {
quantity: number
unit_id: string
expiry_date?: string | null
expires_at?: string | null
low_stock_threshold?: number | null
notes?: string | null
added_by: string
created_at?: string
@@ -50,6 +54,8 @@ export interface Database {
quantity?: number
unit_id?: string
expiry_date?: string | null
expires_at?: string | null
low_stock_threshold?: number | null
notes?: string | null
added_by?: string
created_at?: string