This commit is contained in:
sma
2024-02-08 17:09:01 +06:30
41 changed files with 1361 additions and 1266 deletions

View File

@@ -112,6 +112,8 @@ const carton_processing_status = "processing";
const carton_arrived_status = "arrived";
const carton_invoiced_status = "invoiced";
const carton_canceled_status = "canceled";
const all_status= "All stauts";
const all ="All";
// shipment status
const shipment_pending_status = "pending";

View File

@@ -0,0 +1,25 @@
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: "Processing"),
LocalPopupMenu(id: 3, text: "Shipped"),
LocalPopupMenu(id: 4, text: "Arrived"),
LocalPopupMenu(id: 5, text: "Invoiced"),
LocalPopupMenu(id: 6, text: "Canceled"),
];