Files
fcs/lib/domain/vo/local_popupmenu.dart
2025-03-12 17:49:27 +06:30

36 lines
1006 B
Dart

class LocalPopupMenu {
int id;
String? textKey;
String? text;
bool selected;
bool highlight;
bool enabled;
LocalPopupMenu(
{required this.id,
this.textKey,
this.text,
this.selected = false,
this.highlight = false,
this.enabled = true});
}
List<LocalPopupMenu> shipFiteringMenu = <LocalPopupMenu>[
LocalPopupMenu(id: 0, text: "All"),
LocalPopupMenu(id: 1, text: "Pending"),
LocalPopupMenu(id: 2, text: "Processed"),
LocalPopupMenu(id: 3, text: "Shipped"),
LocalPopupMenu(id: 4, text: "Arrived"),
LocalPopupMenu(id: 5, text: "Invoiced"),
LocalPopupMenu(id: 7, text: "Delivered"),
LocalPopupMenu(id: 6, text: "Canceled"),
];
List<LocalPopupMenu> packageFiteringMenu = <LocalPopupMenu>[
LocalPopupMenu(id: 0, text: "All"),
LocalPopupMenu(id: 1, text: "Received"),
LocalPopupMenu(id: 2, text: "Processed"),
LocalPopupMenu(id: 3, text: "Packed"),
LocalPopupMenu(id: 4, text: "Shipped"),
LocalPopupMenu(id: 5, text: "Delivered"),
];