Files
fcs/lib/pages/carton/carton_editor.dart

785 lines
25 KiB
Dart
Raw Normal View History

2020-10-14 16:53:16 +06:30
import 'package:fcs/domain/constants.dart';
2020-10-18 02:38:46 +06:30
import 'package:fcs/domain/entities/carton.dart';
2020-10-15 03:06:13 +06:30
import 'package:fcs/domain/entities/cargo_type.dart';
2020-12-01 19:02:21 +06:30
import 'package:fcs/domain/entities/carton_size.dart';
2020-10-19 05:13:49 +06:30
import 'package:fcs/domain/entities/fcs_shipment.dart';
2020-10-07 02:33:06 +06:30
import 'package:fcs/domain/entities/package.dart';
2020-10-09 17:28:42 +06:30
import 'package:fcs/domain/entities/user.dart';
2020-10-08 11:38:05 +06:30
import 'package:fcs/domain/vo/delivery_address.dart';
2020-10-07 02:33:06 +06:30
import 'package:fcs/helpers/theme.dart';
2020-10-20 06:19:10 +06:30
import 'package:fcs/pages/carton/carton_package_table.dart';
2020-12-10 20:06:15 +06:30
import 'package:fcs/pages/carton_search/carton_search.dart';
2020-12-01 19:02:21 +06:30
import 'package:fcs/pages/carton_size/carton_size_list.dart';
2021-01-07 18:15:39 +06:30
import 'package:fcs/pages/delivery_address/model/delivery_address_model.dart';
2020-10-19 05:13:49 +06:30
import 'package:fcs/pages/fcs_shipment/model/fcs_shipment_model.dart';
2020-10-07 02:33:06 +06:30
import 'package:fcs/pages/main/util.dart';
2020-10-09 17:28:42 +06:30
import 'package:fcs/pages/package/model/package_model.dart';
2020-10-15 03:06:13 +06:30
import 'package:fcs/pages/rates/model/shipment_rate_model.dart';
2020-10-09 17:28:42 +06:30
import 'package:fcs/pages/user_search/user_serach.dart';
2021-01-07 18:15:39 +06:30
import 'package:fcs/pages/widgets/defalut_delivery_address.dart';
import 'package:fcs/pages/widgets/delivery_address_selection.dart';
2020-10-09 17:28:42 +06:30
import 'package:fcs/pages/widgets/display_text.dart';
import 'package:fcs/pages/widgets/fcs_id_icon.dart';
2021-01-07 18:15:39 +06:30
import 'package:fcs/pages/widgets/length_picker.dart';
2020-10-14 16:53:16 +06:30
import 'package:fcs/pages/widgets/local_button.dart';
2020-10-19 05:13:49 +06:30
import 'package:fcs/pages/widgets/local_dropdown.dart';
2020-10-14 13:17:12 +06:30
import 'package:fcs/pages/widgets/local_radio_buttons.dart';
2020-10-07 02:33:06 +06:30
import 'package:fcs/pages/widgets/local_text.dart';
2020-10-14 13:17:12 +06:30
import 'package:fcs/pages/widgets/local_title.dart';
2020-10-07 02:33:06 +06:30
import 'package:fcs/pages/widgets/progress.dart';
2020-10-14 16:53:16 +06:30
import 'package:flutter/cupertino.dart';
2020-06-04 01:36:49 +06:30
import 'package:flutter/material.dart';
import 'package:flutter_icons/flutter_icons.dart';
import 'package:provider/provider.dart';
2021-01-07 18:15:39 +06:30
import 'cargo_type_addtion.dart';
import 'carton_cargo_table.dart';
2020-12-10 20:06:15 +06:30
import 'carton_list_row.dart';
import 'carton_row.dart';
import 'mix_carton_editor.dart';
2020-10-18 02:38:46 +06:30
import 'model/carton_model.dart';
2020-12-01 19:02:21 +06:30
import '../carton_size/model/carton_size_model.dart';
2020-12-07 17:18:26 +06:30
import 'package_carton_editor.dart';
2020-10-20 06:19:10 +06:30
import 'widgets.dart';
2020-10-09 17:28:42 +06:30
2020-10-19 05:13:49 +06:30
class CartonEditor extends StatefulWidget {
2020-10-18 02:38:46 +06:30
final Carton box;
2020-10-19 05:13:49 +06:30
CartonEditor({this.box});
2020-06-04 01:36:49 +06:30
@override
2020-10-19 05:13:49 +06:30
_CartonEditorState createState() => _CartonEditorState();
2020-06-04 01:36:49 +06:30
}
2020-10-19 05:13:49 +06:30
class _CartonEditorState extends State<CartonEditor> {
2020-10-09 17:28:42 +06:30
TextEditingController _widthController = new TextEditingController();
TextEditingController _heightController = new TextEditingController();
TextEditingController _lengthController = new TextEditingController();
2021-01-07 18:15:39 +06:30
List<DeliveryAddress> _deliveryAddresses = [];
2020-06-04 01:36:49 +06:30
2020-10-20 06:19:10 +06:30
Carton _carton;
2020-06-04 01:36:49 +06:30
bool _isLoading = false;
2020-10-19 05:13:49 +06:30
bool _isNew;
2020-10-09 17:28:42 +06:30
DeliveryAddress _deliveryAddress = new DeliveryAddress();
2020-10-19 05:13:49 +06:30
User _user;
2020-10-14 13:17:12 +06:30
String _selectedCartonType;
2020-12-10 20:06:15 +06:30
String _selectedMixType;
2020-10-13 15:45:01 +06:30
double volumetricRatio = 0;
double shipmentWeight = 0;
2020-10-19 05:13:49 +06:30
FcsShipment _fcsShipment;
List<FcsShipment> _fcsShipments;
2020-10-21 02:59:10 +06:30
Carton _mixCarton;
2020-12-07 17:18:26 +06:30
List<Carton> _cartons = [];
2020-12-10 20:06:15 +06:30
List<Carton> _mixCartons = [];
2021-01-07 18:15:39 +06:30
CartonSize selectedCatonSize;
2020-12-07 17:18:26 +06:30
2020-06-04 01:36:49 +06:30
@override
void initState() {
super.initState();
2020-10-14 16:53:16 +06:30
//for shipment weight
2020-10-15 03:06:13 +06:30
volumetricRatio = Provider.of<ShipmentRateModel>(context, listen: false)
.rate
.volumetricRatio;
2020-10-13 15:45:01 +06:30
_lengthController.addListener(_calShipmentWeight);
_widthController.addListener(_calShipmentWeight);
_heightController.addListener(_calShipmentWeight);
2020-06-04 01:36:49 +06:30
if (widget.box != null) {
2020-10-20 06:19:10 +06:30
_carton = widget.box;
_deliveryAddress = _carton.deliveryAddress;
_widthController.text = _carton.width.toString();
_heightController.text = _carton.height.toString();
_lengthController.text = _carton.length.toString();
_selectedCartonType = _carton.cartonType;
2020-10-19 05:13:49 +06:30
_isNew = false;
2020-10-20 06:19:10 +06:30
_user = User(fcsID: _carton.fcsID, name: _carton.userName);
2020-10-21 02:59:10 +06:30
_loadPackages();
2021-01-07 18:15:39 +06:30
_getDeliverAddresses();
getCartonSize();
2020-06-04 01:36:49 +06:30
} else {
2020-10-24 06:14:07 +06:30
_carton = Carton(
cargoTypes: [],
packages: [],
);
2020-12-11 17:34:56 +06:30
_lengthController.text = "0";
_widthController.text = "0";
_heightController.text = "0";
2020-10-19 05:13:49 +06:30
_isNew = true;
2020-10-14 16:53:16 +06:30
_selectedCartonType = carton_from_packages;
2020-12-10 20:06:15 +06:30
_selectedMixType = mix_delivery;
2020-10-19 05:13:49 +06:30
_loadFcsShipments();
2021-01-07 18:15:39 +06:30
// _cartons = [Carton(cartonNumber: "A100B-1#3", userName: "Seven 7")];
2020-12-10 20:06:15 +06:30
2021-01-07 18:15:39 +06:30
// _mixCartons = [
// Carton(cartonNumber: "A100B-1#1", userName: "Seven 7"),
// Carton(cartonNumber: "A100B-1#2", userName: "Seven 7"),
// ];
2020-06-04 01:36:49 +06:30
}
}
2020-10-19 05:13:49 +06:30
_loadFcsShipments() async {
FcsShipmentModel fcsShipmentModel =
Provider.of<FcsShipmentModel>(context, listen: false);
var fcsShipments = await fcsShipmentModel.getActiveFcsShipments();
2020-10-20 06:19:10 +06:30
var fcsShipment = fcsShipments
.firstWhere((e) => e.id == _carton.fcsShipmentID, orElse: () => null);
2020-10-19 05:13:49 +06:30
setState(() {
_fcsShipments = fcsShipments;
_fcsShipment = fcsShipment;
});
}
_loadPackages() async {
if (_user == null) return;
PackageModel packageModel =
Provider.of<PackageModel>(context, listen: false);
2020-10-21 02:59:10 +06:30
List<Package> packages = await packageModel.getPackages(
_user.id, [package_processed_status, package_packed_status]);
if (_isNew) {
String prevCompare;
packages.forEach((p) {
String compare = (p.deliveryAddress?.fullName ?? "") +
(p.deliveryAddress?.phoneNumber ?? "");
if (prevCompare != null && compare == prevCompare) {
p.isChecked = true;
} else {
p.isChecked = false;
}
if (prevCompare == null) {
p.isChecked = true;
prevCompare = compare;
}
});
} else {
packages.forEach((p) {
if (_carton.packages.contains(p)) {
p.isChecked = _carton.packages.firstWhere((cp) => cp == p).isChecked;
} else {
p.isChecked = false;
}
});
}
2020-10-19 05:13:49 +06:30
setState(() {
2020-10-20 06:19:10 +06:30
_carton.packages = packages;
2020-10-19 05:13:49 +06:30
});
2021-01-07 18:15:39 +06:30
// _populateDeliveryAddress();
2020-10-19 05:13:49 +06:30
}
2021-01-07 18:15:39 +06:30
// _populateDeliveryAddress() {
// if (_carton.packages == null) return;
// var d = _carton.packages
// .firstWhere((p) => p.isChecked && p.deliveryAddress != null,
// orElse: () => null)
// ?.deliveryAddress;
// setState(() {
// _deliveryAddress = d;
// });
// }
2020-10-19 05:13:49 +06:30
2020-10-13 15:45:01 +06:30
_calShipmentWeight() {
double l = double.parse(_lengthController.text, (s) => 0);
double w = double.parse(_widthController.text, (s) => 0);
double h = double.parse(_heightController.text, (s) => 0);
setState(() {
shipmentWeight = l * w * h / volumetricRatio;
});
}
2021-01-07 18:15:39 +06:30
_getDeliverAddresses() async {
var addressModel =
Provider.of<DeliveryAddressModel>(context, listen: false);
this._deliveryAddresses =
await addressModel.getDeliveryAddresses(_carton.userID);
}
getCartonSize() {
var cartonSizeModel = Provider.of<CartonSizeModel>(context, listen: false);
cartonSizeModel.cartonSizes.forEach((c) {
if (c.length == _carton.length &&
c.width == _carton.width &&
c.height == _carton.height) {
print(c.name);
// setState(() {
// // selectedCatonSize = CartonSize(
// // id: c.id,
// // name: c.name,
// // length: c.length,
// // width: c.width,
// // height: c.height);
// });
}
});
}
2020-06-04 01:36:49 +06:30
@override
void dispose() {
super.dispose();
}
@override
Widget build(BuildContext context) {
2020-10-18 02:38:46 +06:30
var boxModel = Provider.of<CartonModel>(context);
2020-10-20 06:19:10 +06:30
bool isMixBox = _selectedCartonType == carton_mix_box;
2020-12-10 20:06:15 +06:30
2020-10-20 06:19:10 +06:30
final shipmentBox = DisplayText(
text: _carton.fcsShipmentNumber,
labelTextKey: "box.fcs_shipment_num",
iconData: Ionicons.ios_airplane,
);
2020-12-10 20:06:15 +06:30
2020-12-02 20:55:00 +06:30
var fcsShipmentsBox = Container(
padding: EdgeInsets.only(top: 10),
child: LocalDropdown<FcsShipment>(
callback: (v) {
setState(() {
_fcsShipment = v;
});
},
labelKey: "shipment.pack.fcs.shipment",
iconData: Ionicons.ios_airplane,
display: (u) => u.shipmentNumber,
selectedValue: _fcsShipment,
values: _fcsShipments,
));
final fcsIDBox = Container(
padding: EdgeInsets.only(top: 10),
child: Row(
children: <Widget>[
Expanded(
child: DisplayText(
text: _user?.fcsID ?? "",
labelTextKey: "box.fcs.id",
icon: FcsIDIcon(),
)),
_isNew
? IconButton(
icon: Icon(Icons.search, color: primaryColor),
onPressed: () =>
searchUser(context, callbackUserSelect: (u) {
setState(() {
this._user = u;
_loadPackages();
});
}))
: Container(),
],
));
2020-10-09 17:28:42 +06:30
2020-10-14 13:17:12 +06:30
final namebox = DisplayText(
2020-10-19 05:13:49 +06:30
text: _user?.name ?? "",
2020-10-14 13:17:12 +06:30
labelTextKey: "box.name",
iconData: Icons.person,
);
2020-10-09 17:28:42 +06:30
2020-10-14 16:53:16 +06:30
final createBtn = LocalButton(
2020-12-07 17:18:26 +06:30
textKey: "box.complete.packaging",
2020-10-19 14:02:34 +06:30
callBack: _save,
2020-10-14 16:53:16 +06:30
);
2020-10-20 06:19:10 +06:30
final saveBtn = LocalButton(
textKey: "box.cargo.save.btn",
callBack: _save,
2020-10-14 16:53:16 +06:30
);
2020-10-19 05:13:49 +06:30
final cartonTypeBox = LocalRadioButtons(
2020-10-20 06:19:10 +06:30
readOnly: !_isNew,
2020-10-19 05:13:49 +06:30
values: boxModel.cartonTypes,
selectedValue: _selectedCartonType,
callback: (v) {
setState(() {
_selectedCartonType = v;
});
});
2020-10-09 17:28:42 +06:30
2020-12-10 20:06:15 +06:30
final cartonTitleBox = Container(
child: LocalTitle(
textKey: "boxes.title",
trailing: IconButton(
icon: Icon(
Icons.add_circle,
color: primaryColor,
),
onPressed: () async {
2020-12-11 17:34:56 +06:30
bool isFromPackages = _selectedCartonType == carton_from_packages;
if (_user == null && isFromPackages) {
2021-01-07 18:15:39 +06:30
showMsgDialog(context, "Error", "Please select FCS ID");
2020-12-11 17:34:56 +06:30
return;
}
if (_fcsShipment == null && _isNew) {
showMsgDialog(context, "Error", "Please select FCS shipment");
return;
}
double l = double.parse(_lengthController.text, (s) => 0);
double w = double.parse(_widthController.text, (s) => 0);
double h = double.parse(_heightController.text, (s) => 0);
Carton carton = Carton();
carton.id = _carton.id;
carton.cartonType = _selectedCartonType;
carton.fcsShipmentID =
_isNew ? _fcsShipment.id : _carton.fcsShipmentID;
carton.userID = _user?.id;
2021-01-07 18:15:39 +06:30
carton.fcsID = _user?.fcsID;
carton.userName = _user?.name;
2020-12-11 17:34:56 +06:30
carton.packages =
_carton.packages.where((e) => e.isChecked).toList();
carton.cargoTypes = _carton.cargoTypes;
carton.length = l;
carton.width = w;
carton.height = h;
carton.deliveryAddress = _carton.deliveryAddress;
setState(() {
_isLoading = true;
});
try {
2021-01-07 18:15:39 +06:30
Carton _c = await Navigator.push(
2020-12-11 17:34:56 +06:30
context,
CupertinoPageRoute(
builder: (context) =>
PackageCartonEditor(carton: carton, isNew: _isNew)),
);
2021-01-07 18:15:39 +06:30
if (_c == null) return;
var cartonModel =
Provider.of<CartonModel>(context, listen: false);
Carton _carton = await cartonModel.getCarton(_c.id);
_cartons.add(_carton);
setState(() {});
2020-12-11 17:34:56 +06:30
} catch (e) {
showMsgDialog(context, "Error", e.toString());
} finally {
setState(() {
_isLoading = false;
});
}
2020-12-10 20:06:15 +06:30
}),
),
);
final mixTypeBox = Container(
2020-12-11 17:34:56 +06:30
padding: EdgeInsets.only(top: 20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
padding: EdgeInsets.only(left: 5),
child: LocalText(
context,
"box.mix_type",
color: primaryColor,
fontSize: 15,
fontWeight: FontWeight.bold,
)),
Row(
children: boxModel.mixTypes.map((e) {
return Row(
children: [
Radio(
value: e,
groupValue: _selectedMixType,
activeColor: primaryColor,
onChanged: (v) {
setState(() {
_selectedMixType = v;
});
},
),
Text(e),
],
);
}).toList(),
),
],
),
);
2020-12-10 20:06:15 +06:30
final mixcartonTitleBox = Container(
child: LocalTitle(
textKey: "box.mix_caton_title",
trailing: IconButton(
icon: Icon(
Icons.add_circle,
color: primaryColor,
),
2020-12-11 17:34:56 +06:30
onPressed: () {
Navigator.push(
2020-12-10 20:06:15 +06:30
context,
CupertinoPageRoute(builder: (context) => MixCartonEditor()),
);
},
),
),
);
2021-01-07 18:15:39 +06:30
final cargoTableTitleBox = LocalTitle(
textKey: "box.cargo.type",
trailing: IconButton(
icon: Icon(
Icons.add_circle,
color: primaryColor,
),
onPressed: () async {
List<CargoType> cargos = await Navigator.push<List<CargoType>>(
context,
CupertinoPageRoute(builder: (context) => CargoTypeAddition()));
if (cargos == null) return;
setState(() {
_carton.cargoTypes.clear();
_carton.cargoTypes.addAll(cargos);
});
}),
);
final cargoTableBox = CargoTable(
isNew: _isNew,
cargoTypes: _carton.cargoTypes,
onAdd: (c) => _addCargo(c),
onRemove: (c) => _removeCargo(c),
);
2020-12-10 20:06:15 +06:30
2021-01-07 18:15:39 +06:30
final lengthBox = LengthPicker(
controller: _lengthController,
lableKey: "box.length",
isReadOnly: true,
);
final widthBox = LengthPicker(
controller: _widthController,
lableKey: "box.width",
isReadOnly: true,
);
final heightBox = LengthPicker(
controller: _heightController,
lableKey: "box.height",
isReadOnly: true,
);
final dimBox = Row(
mainAxisAlignment: MainAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.only(right: 8.0),
child: Icon(FontAwesome.arrow_circle_right, color: primaryColor),
),
SizedBox(child: lengthBox, width: 80),
SizedBox(child: widthBox, width: 80),
SizedBox(child: heightBox, width: 80),
],
);
2020-06-04 01:36:49 +06:30
return LocalProgress(
inAsyncCall: _isLoading,
child: Scaffold(
appBar: AppBar(
centerTitle: true,
leading: new IconButton(
2020-10-14 16:53:16 +06:30
icon: new Icon(CupertinoIcons.back, color: primaryColor, size: 30),
onPressed: () {
if (isDataChanged()) {
showConfirmDialog(context, "back.button_confirm", () {
Navigator.of(context).pop();
});
} else {
Navigator.of(context).pop();
}
},
2020-06-04 01:36:49 +06:30
),
2020-10-09 17:28:42 +06:30
shadowColor: Colors.transparent,
backgroundColor: Colors.white,
2020-12-07 17:18:26 +06:30
title: LocalText(
context,
"box.info.title",
fontSize: 20,
color: primaryColor,
),
2020-06-04 01:36:49 +06:30
),
2020-10-14 13:17:12 +06:30
body: Padding(
2020-10-19 05:13:49 +06:30
padding: const EdgeInsets.all(8.0),
2020-10-14 13:17:12 +06:30
child: ListView(
shrinkWrap: true,
children: [
2020-10-20 06:19:10 +06:30
_isNew
? Container()
: Center(child: getCartonNumberStatus(context, _carton)),
2020-10-14 13:17:12 +06:30
LocalTitle(textKey: "box.type.title"),
2020-10-19 05:13:49 +06:30
cartonTypeBox,
2020-10-14 13:17:12 +06:30
LocalTitle(textKey: "box.shipment_info"),
2020-10-20 06:19:10 +06:30
_isNew ? fcsShipmentsBox : shipmentBox,
2020-12-10 20:06:15 +06:30
isMixBox ? mixTypeBox : Container(),
2020-10-20 06:19:10 +06:30
...(isMixBox
? [
2020-12-10 20:06:15 +06:30
mixcartonTitleBox,
Column(
children: _getMixCartons(
context,
this._mixCartons,
)),
2020-10-20 06:19:10 +06:30
]
: [
fcsIDBox,
namebox,
CartonPackageTable(
packages: _carton.packages,
onSelect: (p, checked) {
if (checked &&
_deliveryAddress != null &&
p.deliveryAddress?.id != _deliveryAddress.id) {
return;
}
setState(() {
p.isChecked = checked;
});
2021-01-07 18:15:39 +06:30
// _populateDeliveryAddress();
2020-10-20 06:19:10 +06:30
},
),
2021-01-07 18:15:39 +06:30
_isNew ? cartonTitleBox : Container(),
_isNew
? Column(
children: _getCartons(
context,
this._cartons,
))
: Container(),
_isNew ? Container() : cargoTableTitleBox,
_isNew ? Container() : cargoTableBox,
_isNew
? Container()
: LocalTitle(textKey: "box.dimension"),
_isNew ? Container() : cartonSizeDropdown(),
_isNew ? Container() : dimBox,
_isNew
? Container()
: LocalTitle(textKey: "box.delivery_address"),
_isNew
? Container()
: DefaultDeliveryAddress(
deliveryAddress: _deliveryAddress,
labelKey: "box.delivery_address",
onTap: () async {
DeliveryAddress d =
await Navigator.push<DeliveryAddress>(
context,
CupertinoPageRoute(
builder: (context) =>
DeliveryAddressSelection(
deliveryAddress: _deliveryAddress,
deliveryAddresses:
_deliveryAddresses)),
);
if (d == null) return;
setState(() {
_deliveryAddress = d;
});
}),
2020-10-20 06:19:10 +06:30
]),
2020-12-07 17:18:26 +06:30
SizedBox(
height: 20,
),
2021-01-07 18:15:39 +06:30
_isNew ? createBtn : saveBtn,
2020-10-14 13:17:12 +06:30
SizedBox(
height: 20,
),
],
),
2020-06-04 01:36:49 +06:30
),
),
);
}
2020-12-07 17:18:26 +06:30
_addCarton(Carton carton) {
if (carton == null) return;
this._cartons.add(carton);
setState(() {});
}
List<Widget> _getCartons(BuildContext context, List<Carton> cartons) {
return cartons.map((c) {
2020-12-10 20:06:15 +06:30
return InkWell(
onTap: () {},
child: CartonRow(
key: ValueKey(c.id),
box: c,
2020-12-07 17:18:26 +06:30
),
2020-12-10 20:06:15 +06:30
);
}).toList();
}
List<Widget> _getMixCartons(BuildContext context, List<Carton> cartons) {
return cartons.map((c) {
return InkWell(
onTap: () {},
child: CartonRow(
key: ValueKey(c.id),
box: c,
2020-12-07 17:18:26 +06:30
),
);
}).toList();
}
2020-12-01 19:02:21 +06:30
Widget cartonSizeDropdown() {
List<CartonSize> _cartonSizes =
2020-12-02 20:55:00 +06:30
Provider.of<CartonSizeModel>(context).getCartonSizes;
2020-12-01 19:02:21 +06:30
return Padding(
2020-12-02 20:55:00 +06:30
padding: const EdgeInsets.only(top: 10),
2020-12-01 19:02:21 +06:30
child: Row(
children: [
Padding(
padding: const EdgeInsets.only(left: 0, right: 10),
child: Icon(AntDesign.CodeSandbox, color: primaryColor),
),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.only(right: 18.0),
child: LocalText(
context,
"box.carton_size",
color: Colors.black54,
fontSize: 16,
),
),
2020-12-02 20:55:00 +06:30
DropdownButton<CartonSize>(
2020-12-01 19:02:21 +06:30
isDense: true,
value: selectedCatonSize,
style: TextStyle(color: Colors.black, fontSize: 14),
underline: Container(
height: 1,
color: Colors.grey,
),
2020-12-02 20:55:00 +06:30
onChanged: (CartonSize newValue) {
2020-12-01 19:02:21 +06:30
setState(() {
2020-12-02 20:55:00 +06:30
if (newValue.name == MANAGE_CARTONSIZE) {
2020-12-01 19:02:21 +06:30
selectedCatonSize = null;
_manageCartonSize();
return;
}
selectedCatonSize = newValue;
2020-12-02 20:55:00 +06:30
_widthController.text =
selectedCatonSize.width.toString();
_heightController.text =
selectedCatonSize.height.toString();
_lengthController.text =
selectedCatonSize.length.toString();
2020-12-01 19:02:21 +06:30
});
},
isExpanded: true,
2020-12-02 20:55:00 +06:30
items: _cartonSizes
.map<DropdownMenuItem<CartonSize>>((CartonSize value) {
return DropdownMenuItem<CartonSize>(
2020-12-01 19:02:21 +06:30
value: value,
2020-12-02 20:55:00 +06:30
child: Text(value.name ?? "",
2020-12-01 19:02:21 +06:30
overflow: TextOverflow.ellipsis,
style: TextStyle(
2020-12-02 20:55:00 +06:30
color: value.name == MANAGE_CARTONSIZE
2020-12-01 19:02:21 +06:30
? secondaryColor
: primaryColor)),
);
}).toList(),
),
],
),
),
],
),
);
}
_manageCartonSize() {
Navigator.push<Package>(
context,
CupertinoPageRoute(builder: (context) => CartonSizeList()),
);
}
2021-01-07 18:15:39 +06:30
_addCargo(CargoType cargo) {
if (cargo == null) return;
setState(() {
_carton.cargoTypes.remove(cargo);
_carton.cargoTypes.add(cargo);
});
}
_removeCargo(CargoType cargo) {
setState(() {
_carton.cargoTypes.remove(cargo);
});
}
2020-10-19 05:13:49 +06:30
_save() async {
2020-12-11 17:34:56 +06:30
// bool isFromShipment = _selectedCartonType == carton_from_shipments;
// bool isSmallBag = _selectedCartonType == carton_small_bag;
// if (_user == null && (isFromShipment || isSmallBag)) {
// showMsgDialog(context, "Error", "Please select customer");
// return;
// }
// if (_fcsShipment == null && _isNew) {
// showMsgDialog(context, "Error", "Please select FCS shipment");
// return;
// }
// if ((_carton.cargoTypes?.length ?? 0) == 0 &&
// (isFromShipment || isSmallBag)) {
// showMsgDialog(context, "Error", "Expect at least one cargo type");
// return;
// }
// double l = double.parse(_lengthController.text, (s) => 0);
// double w = double.parse(_widthController.text, (s) => 0);
// double h = double.parse(_heightController.text, (s) => 0);
// if ((l <= 0 || w <= 0 || h <= 0) && isFromShipment) {
// showMsgDialog(context, "Error", "Invalid dimension");
// return;
// }
// if (_deliveryAddress == null && (isFromShipment || isSmallBag)) {
// showMsgDialog(context, "Error", "Invalid delivery address");
// return;
// }
// if (isSmallBag && _mixCarton == null && _isNew) {
// showMsgDialog(context, "Error", "Invalid mix carton");
// return;
// }
// Carton carton = Carton();
// carton.id = _carton.id;
// carton.cartonType = _selectedCartonType;
// carton.fcsShipmentID = _isNew ? _fcsShipment.id : _carton.fcsShipmentID;
// carton.userID = _user?.id;
// carton.cargoTypes = _carton.cargoTypes;
// carton.packages = _carton.packages.where((e) => e.isChecked).toList();
// carton.mixCartonID = _mixCarton?.id;
// carton.length = l;
// carton.width = w;
// carton.height = h;
// carton.deliveryAddress = _deliveryAddress;
// setState(() {
// _isLoading = true;
// });
// try {
// CartonModel cartonModel =
// Provider.of<CartonModel>(context, listen: false);
// if (_isNew) {
// await cartonModel.createCarton(carton);
// } else {
// await cartonModel.updateCarton(carton);
// }
// Navigator.pop(context, true);
// } catch (e) {
// showMsgDialog(context, "Error", e.toString());
// } finally {
// setState(() {
// _isLoading = false;
// });
// }
Navigator.pop(context, true);
2020-10-19 05:13:49 +06:30
}
isDataChanged() {
if (_isNew) {
2020-12-11 17:34:56 +06:30
return false;
// return _fcsShipment != null || _user != null;
} else {
2020-12-11 17:34:56 +06:30
return false;
}
}
2020-06-04 01:36:49 +06:30
}