
Corrects API endpoints for creating, processing with, and processing without backorder confirmations. Adds a new `isBackorder` getter to stock picking records for identifying backordered items, and improves the robustness of the `isDone` getter. Integrates backorder detection into the reception validation process, prompting a dedicated confirmation dialog when a backorder is present. Introduces new state management and methods (`withBackorder`, `withoutBackorder`) in the reception details model to handle the backorder confirmation logic. Enhances the primary button component with a `backgroundColor` property for greater customization.
11 lines
394 B
Dart
11 lines
394 B
Dart
export 'drawer_component.dart';
|
|
export 'loading_progress_component.dart';
|
|
export 'primary_button_component.dart';
|
|
export 'product_scanned_component.dart';
|
|
export 'outline_button_component.dart';
|
|
export 'quick_action_component.dart';
|
|
export 'main_appbar_component.dart';
|
|
export 'stock_picking_card_component.dart';
|
|
export 'flash_button_component.dart';
|
|
export 'backorder_dialog_component.dart';
|