This commit is contained in:
2021-01-04 17:19:12 +06:30
9 changed files with 352 additions and 350 deletions

View File

@@ -36,6 +36,9 @@ class Carton {
String fcsShipmentNumber;
String mixCartonID;
String mixCartonNumber;
String cartonSizeID;
String cartonSizeName;
String mixBoxType;
int rate;
int weight;
@@ -158,7 +161,10 @@ class Carton {
this.mixCartonID,
this.mixCartonNumber,
this.isShipmentCarton = false,
this.deliveryAddress});
this.deliveryAddress,
this.cartonSizeID,
this.cartonSizeName,
this.mixBoxType});
Map<String, dynamic> toMap() {
List _cargoTypes = cargoTypes.map((c) => c.toMap()).toList();