add submit widget for mix carton

This commit is contained in:
tzw
2024-02-05 11:13:12 +06:30
parent 16ad71f257
commit ea206bed13
16 changed files with 1089 additions and 104 deletions

View File

@@ -5,7 +5,7 @@ class CargoType {
double weight;
bool isChecked;
int qty;
bool? isCutomDuty;
bool isCutomDuty;
double customDutyFee;
double calRate;
double calWeight;
@@ -21,7 +21,7 @@ class CargoType {
this.calRate = 0,
this.isChecked = false,
this.qty = 0,
this.isCutomDuty,
this.isCutomDuty = false,
this.customDutyFee = 0});
factory CargoType.fromMap(Map<String, dynamic> map, String id) {