Mobile App design
Run Tests on Branches / Detect Changes (push) Successful in 10s
Run Tests on Branches / Backend Tests (push) Successful in 2m12s
Run Tests on Branches / Frontend Tests (push) Has been skipped
Run Tests on Branches / Frontend Mobile Tests (push) Successful in 1m47s

This commit is contained in:
Ichitux
2026-07-09 13:33:54 +02:00
parent 5f604b11ba
commit 2f36ef685d
32 changed files with 1793 additions and 926 deletions
+12 -5
View File
@@ -24,15 +24,22 @@ export interface Pharmacy {
phone: string;
latitude: number;
longitude: number;
opening_hours?: string;
}
export interface PharmacyMedicine {
id: number;
pharmacy_id: number;
medicine_nregistro: string;
medicine_name: string;
price: number;
stock: number;
pharmacy_id?: number;
medicine_nregistro?: string;
medicine_name?: string;
name?: string;
address?: string;
phone?: string;
latitude?: number;
longitude?: number;
opening_hours?: string;
price?: number | null;
stock?: number;
pharmacy?: Pharmacy;
}