
Moves product lookup from external API calls to a local ObjectBox database. This improves performance and enables offline product identification during scanning. Removes the standalone scanner page, consolidating barcode scanning functionality directly into the reception flow for a more streamlined user experience. Updates ObjectBox entity fields by removing `final` modifiers, allowing the database to manage and update persisted data effectively. Introduces new methods in the reception scan model to support local product checks, retrieval, and quantity increment for scanned items.
7 lines
250 B
Dart
7 lines
250 B
Dart
export 'login/login_page.dart';
|
|
export 'product/product_form/product_form_page.dart';
|
|
export 'splash/splash_page.dart';
|
|
export 'product/product_list/product_list_page.dart';
|
|
export 'profile/profile_page.dart';
|
|
export 'operation/operation_page.dart';
|