add update shipments
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import 'package:fcs/domain/entities/box.dart';
|
||||
import 'package:fcs/domain/entities/carton.dart';
|
||||
import 'package:fcs/domain/entities/cargo_type.dart';
|
||||
import 'package:fcs/domain/entities/package.dart';
|
||||
import 'package:fcs/domain/vo/delivery_address.dart';
|
||||
@@ -25,7 +25,7 @@ import 'package:timeline_list/timeline_model.dart';
|
||||
final DateFormat dateFormat = DateFormat("d MMM yyyy");
|
||||
|
||||
class DeliveryInfo extends StatefulWidget {
|
||||
final Box box;
|
||||
final Carton box;
|
||||
DeliveryInfo({this.box});
|
||||
|
||||
@override
|
||||
@@ -34,12 +34,12 @@ class DeliveryInfo extends StatefulWidget {
|
||||
|
||||
class _DeliveryInfoState extends State<DeliveryInfo> {
|
||||
bool _isLoading = false;
|
||||
Box _box;
|
||||
Carton _box;
|
||||
String _selectedCartonType;
|
||||
String _shipmentNumber;
|
||||
List<Package> _packages = [];
|
||||
List<Box> _mixBoxes = [];
|
||||
Box _selectedShipmentBox = new Box();
|
||||
List<Carton> _mixBoxes = [];
|
||||
Carton _selectedShipmentBox = new Carton();
|
||||
List<CargoType> _cargoTypes = [];
|
||||
DeliveryAddress _deliveryAddress = new DeliveryAddress();
|
||||
TextEditingController _widthController = new TextEditingController();
|
||||
|
||||
Reference in New Issue
Block a user