
Updates the sign-in API endpoint to `/simpos/v1/sign_in`. Captures the `set-cookie` header from successful sign-in responses and stores it as a `sessionId`. Persists the session ID using secure storage and includes it in subsequent API requests via the `Cookie` header for improved session management. Extends the `AuthModel` to include the new `sessionId` field. Enables navigation from the reception list to a new reception details page, passing the selected reception's ID. Refactors the `StockPickingCard` into a dedicated component and adds loading indicators to the reception list.
5 lines
166 B
Dart
5 lines
166 B
Dart
export 'reception/reception_page.dart';
|
|
export 'delivery/delivery_page.dart';
|
|
export 'inventory/inventory_page.dart';
|
|
export 'reception/reception_details_page.dart';
|