|
|
|
@@ -4,10 +4,13 @@ import 'package:farm_tpf/custom_model/Plant.dart'; |
|
|
|
import 'package:farm_tpf/custom_model/SuppliesUsing.dart'; |
|
|
|
import 'package:farm_tpf/data/api/app_exception.dart'; |
|
|
|
import 'package:farm_tpf/data/repository/repository.dart'; |
|
|
|
import 'package:farm_tpf/presentation/custom_widgets/app_bar_widget.dart'; |
|
|
|
import 'package:farm_tpf/presentation/custom_widgets/bloc/media_helper_bloc.dart'; |
|
|
|
import 'package:farm_tpf/presentation/custom_widgets/button_widget.dart'; |
|
|
|
import 'package:farm_tpf/presentation/custom_widgets/widget_field_time_picker.dart'; |
|
|
|
import 'package:farm_tpf/presentation/custom_widgets/widget_loading.dart'; |
|
|
|
import 'package:farm_tpf/presentation/custom_widgets/widget_media_picker.dart'; |
|
|
|
import 'package:farm_tpf/presentation/custom_widgets/widget_text_field_description.dart'; |
|
|
|
import 'package:farm_tpf/presentation/custom_widgets/widget_text_form_field.dart'; |
|
|
|
import 'package:farm_tpf/presentation/custom_widgets/widget_utils.dart'; |
|
|
|
import 'package:farm_tpf/presentation/screens/actions/bloc/action_detail_bloc.dart'; |
|
|
|
@@ -154,9 +157,7 @@ class _EditActionPlantScreenState extends State<EditActionPlantScreen> { |
|
|
|
} |
|
|
|
|
|
|
|
Widget _desciptionField() { |
|
|
|
return TextFormField( |
|
|
|
keyboardType: TextInputType.text, |
|
|
|
decoration: InputDecoration(labelText: "Ghi chú"), |
|
|
|
return TextFieldDescriptionWidget( |
|
|
|
controller: _descriptionController, |
|
|
|
onSaved: (newValue) { |
|
|
|
_plant.description = newValue; |
|
|
|
@@ -174,34 +175,6 @@ class _EditActionPlantScreenState extends State<EditActionPlantScreen> { |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
|
_actionAppBar() { |
|
|
|
IconButton iconButton; |
|
|
|
if (1 == 1) { |
|
|
|
iconButton = IconButton( |
|
|
|
icon: Icon( |
|
|
|
Icons.done, |
|
|
|
color: Colors.black, |
|
|
|
), |
|
|
|
onPressed: () { |
|
|
|
FocusScopeNode currentFocus = FocusScope.of(context); |
|
|
|
if (!currentFocus.hasPrimaryFocus) { |
|
|
|
currentFocus.unfocus(); |
|
|
|
} |
|
|
|
if (Get.find<ChangeFieldFormSupply>().isChanged) { |
|
|
|
Utils.showDialogConfirmSupply(onConfirm: () { |
|
|
|
Get.back(); |
|
|
|
_validateInputs(); |
|
|
|
}); |
|
|
|
} else { |
|
|
|
_validateInputs(); |
|
|
|
} |
|
|
|
}, |
|
|
|
); |
|
|
|
return <Widget>[iconButton]; |
|
|
|
} |
|
|
|
return <Widget>[Container()]; |
|
|
|
} |
|
|
|
|
|
|
|
@override |
|
|
|
Widget build(BuildContext context) => KeyboardDismisser( |
|
|
|
gestures: [ |
|
|
|
@@ -209,11 +182,22 @@ class _EditActionPlantScreenState extends State<EditActionPlantScreen> { |
|
|
|
GestureType.onPanUpdateDownDirection, |
|
|
|
], |
|
|
|
child: Scaffold( |
|
|
|
backgroundColor: Colors.white, |
|
|
|
key: _scaffoldKey, |
|
|
|
appBar: AppBar( |
|
|
|
centerTitle: true, |
|
|
|
title: Text(plot_action_plant), |
|
|
|
actions: _actionAppBar()), |
|
|
|
appBar: AppBarWidget( |
|
|
|
isBack: true, |
|
|
|
action: InkWell( |
|
|
|
child: Text( |
|
|
|
'Huỷ', |
|
|
|
style: TextStyle( |
|
|
|
color: Colors.red, fontWeight: FontWeight.normal), |
|
|
|
), |
|
|
|
onTap: () { |
|
|
|
if (Get.isSnackbarOpen) Get.back(); |
|
|
|
Get.back(); |
|
|
|
}, |
|
|
|
), |
|
|
|
), |
|
|
|
body: KeyboardDismisser( |
|
|
|
child: MultiBlocProvider( |
|
|
|
providers: [ |
|
|
|
@@ -232,108 +216,166 @@ class _EditActionPlantScreenState extends State<EditActionPlantScreen> { |
|
|
|
child: Form( |
|
|
|
key: _formKey, |
|
|
|
autovalidate: _autoValidate, |
|
|
|
child: SingleChildScrollView( |
|
|
|
padding: EdgeInsets.all(8.0), |
|
|
|
child: BlocConsumer<ActionDetailBloc, |
|
|
|
ActionDetailState>( |
|
|
|
listener: (context, state) async { |
|
|
|
if (state is ActionDetailFailure) { |
|
|
|
LoadingDialog.hideLoadingDialog(context); |
|
|
|
} else if (state is ActionDetailSuccess) { |
|
|
|
LoadingDialog.hideLoadingDialog(context); |
|
|
|
_plant = Plant.fromJson(state.item); |
|
|
|
_plant.activityId = widget.activityId; |
|
|
|
_quantityController.text = _plant.quantity |
|
|
|
.formatNumtoStringDecimal(); |
|
|
|
_densityController.text = _plant.density; |
|
|
|
_descriptionController.text = |
|
|
|
_plant.description; |
|
|
|
_executeByController.text = _plant.executeBy; |
|
|
|
child: SafeArea( |
|
|
|
child: SingleChildScrollView( |
|
|
|
child: BlocConsumer<ActionDetailBloc, |
|
|
|
ActionDetailState>( |
|
|
|
listener: (context, state) async { |
|
|
|
if (state is ActionDetailFailure) { |
|
|
|
LoadingDialog.hideLoadingDialog(context); |
|
|
|
} else if (state is ActionDetailSuccess) { |
|
|
|
LoadingDialog.hideLoadingDialog(context); |
|
|
|
_plant = Plant.fromJson(state.item); |
|
|
|
_plant.activityId = widget.activityId; |
|
|
|
_quantityController.text = _plant.quantity |
|
|
|
.formatNumtoStringDecimal(); |
|
|
|
_densityController.text = _plant.density; |
|
|
|
_descriptionController.text = |
|
|
|
_plant.description; |
|
|
|
_executeByController.text = |
|
|
|
_plant.executeBy; |
|
|
|
|
|
|
|
Get.find<ChangeDateTimePicker>().change(_plant |
|
|
|
.executeDate |
|
|
|
.convertStringServerDateTimeToLocalDateTime()); |
|
|
|
Get.find<ChangeDateTimePicker>().change(_plant |
|
|
|
.executeDate |
|
|
|
.convertStringServerDateTimeToLocalDateTime()); |
|
|
|
|
|
|
|
//Show media |
|
|
|
if (Validators.stringNotNullOrEmpty( |
|
|
|
_plant.media)) { |
|
|
|
BlocProvider.of<MediaHelperBloc>(context) |
|
|
|
.add(ChangeListMedia( |
|
|
|
items: UtilAction |
|
|
|
.convertFilePathToMedia( |
|
|
|
_plant.media))); |
|
|
|
//Show media |
|
|
|
if (Validators.stringNotNullOrEmpty( |
|
|
|
_plant.media)) { |
|
|
|
BlocProvider.of<MediaHelperBloc>(context) |
|
|
|
.add(ChangeListMedia( |
|
|
|
items: UtilAction |
|
|
|
.convertFilePathToMedia( |
|
|
|
_plant.media))); |
|
|
|
} |
|
|
|
//list supply |
|
|
|
suppliesUsing = _plant.suppliesUsing; |
|
|
|
Get.find<ChangeSupplyUsing>() |
|
|
|
.changeInitList(suppliesUsing); |
|
|
|
} else if (state is ActionDetailInitial) { |
|
|
|
print("init"); |
|
|
|
} else if (state is ActionDetailLoading) { |
|
|
|
print("loading"); |
|
|
|
LoadingDialog.showLoadingDialog(context); |
|
|
|
} |
|
|
|
//list supply |
|
|
|
suppliesUsing = _plant.suppliesUsing; |
|
|
|
Get.find<ChangeSupplyUsing>() |
|
|
|
.changeInitList(suppliesUsing); |
|
|
|
} else if (state is ActionDetailInitial) { |
|
|
|
print("init"); |
|
|
|
} else if (state is ActionDetailLoading) { |
|
|
|
print("loading"); |
|
|
|
LoadingDialog.showLoadingDialog(context); |
|
|
|
} |
|
|
|
}, |
|
|
|
builder: (context, state) { |
|
|
|
return Column( |
|
|
|
children: <Widget>[ |
|
|
|
Container( |
|
|
|
width: double.infinity, |
|
|
|
child: Text( |
|
|
|
"Ngày thực hiện *", |
|
|
|
style: TextStyle( |
|
|
|
color: Colors.black54, |
|
|
|
fontSize: 13.0), |
|
|
|
}, |
|
|
|
builder: (context, state) { |
|
|
|
return Column( |
|
|
|
children: [ |
|
|
|
Padding( |
|
|
|
padding: const EdgeInsets.all(8.0), |
|
|
|
child: Column( |
|
|
|
crossAxisAlignment: |
|
|
|
CrossAxisAlignment.start, |
|
|
|
children: <Widget>[ |
|
|
|
Text( |
|
|
|
'Trồng', |
|
|
|
style: TextStyle( |
|
|
|
fontWeight: FontWeight.w500, |
|
|
|
fontSize: 22), |
|
|
|
), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
Container( |
|
|
|
width: double.infinity, |
|
|
|
child: Text( |
|
|
|
"Ngày thực hiện *", |
|
|
|
style: TextStyle( |
|
|
|
color: Colors.black54, |
|
|
|
fontSize: 13.0), |
|
|
|
), |
|
|
|
), |
|
|
|
_btnExecuteTimePicker(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
_quantityField(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
_densityField(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
_desciptionField(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
_executeByField(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
], |
|
|
|
), |
|
|
|
), |
|
|
|
Container( |
|
|
|
width: double.infinity, |
|
|
|
height: 16, |
|
|
|
color: Colors.grey[200], |
|
|
|
), |
|
|
|
WidgetPlantSupply( |
|
|
|
currentItems: [], |
|
|
|
onChangeSupplies: (value) { |
|
|
|
suppliesUsing = value; |
|
|
|
}), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
Container( |
|
|
|
width: double.infinity, |
|
|
|
height: 16, |
|
|
|
color: Colors.grey[200], |
|
|
|
), |
|
|
|
BlocBuilder<MediaHelperBloc, |
|
|
|
MediaHelperState>( |
|
|
|
builder: (context, state) { |
|
|
|
if (state is MediaHelperSuccess) { |
|
|
|
return WidgetMediaPicker( |
|
|
|
currentItems: state.items, |
|
|
|
onChangeFiles: (newPathFiles, |
|
|
|
deletePathFiles) async { |
|
|
|
Get.find<ChangeFileController>() |
|
|
|
.change(newPathFiles, |
|
|
|
deletePathFiles); |
|
|
|
}); |
|
|
|
} else { |
|
|
|
return Center( |
|
|
|
child: |
|
|
|
CircularProgressIndicator()); |
|
|
|
} |
|
|
|
}), |
|
|
|
SizedBox( |
|
|
|
height: 8, |
|
|
|
), |
|
|
|
), |
|
|
|
_btnExecuteTimePicker(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
_quantityField(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
_densityField(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
_desciptionField(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
_executeByField(), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
WidgetPlantSupply( |
|
|
|
currentItems: [], |
|
|
|
onChangeSupplies: (value) { |
|
|
|
suppliesUsing = value; |
|
|
|
}), |
|
|
|
SizedBox( |
|
|
|
height: 8.0, |
|
|
|
), |
|
|
|
BlocBuilder<MediaHelperBloc, |
|
|
|
MediaHelperState>( |
|
|
|
builder: (context, state) { |
|
|
|
if (state is MediaHelperSuccess) { |
|
|
|
return WidgetMediaPicker( |
|
|
|
currentItems: state.items, |
|
|
|
onChangeFiles: (newPathFiles, |
|
|
|
deletePathFiles) async { |
|
|
|
Get.find<ChangeFileController>() |
|
|
|
.change(newPathFiles, |
|
|
|
deletePathFiles); |
|
|
|
}); |
|
|
|
} else { |
|
|
|
return Center( |
|
|
|
child: CircularProgressIndicator()); |
|
|
|
} |
|
|
|
}), |
|
|
|
], |
|
|
|
); |
|
|
|
}, |
|
|
|
Padding( |
|
|
|
padding: const EdgeInsets.all(8.0), |
|
|
|
child: ButtonWidget( |
|
|
|
title: 'CẬP NHẬT', |
|
|
|
onPressed: () { |
|
|
|
FocusScopeNode currentFocus = |
|
|
|
FocusScope.of(context); |
|
|
|
if (!currentFocus |
|
|
|
.hasPrimaryFocus) { |
|
|
|
currentFocus.unfocus(); |
|
|
|
} |
|
|
|
if (Get.find< |
|
|
|
ChangeFieldFormSupply>() |
|
|
|
.isChanged) { |
|
|
|
Utils.showDialogConfirmSupply( |
|
|
|
onConfirm: () { |
|
|
|
Get.back(); |
|
|
|
_validateInputs(); |
|
|
|
}); |
|
|
|
} else { |
|
|
|
_validateInputs(); |
|
|
|
} |
|
|
|
}), |
|
|
|
) |
|
|
|
], |
|
|
|
); |
|
|
|
}, |
|
|
|
), |
|
|
|
), |
|
|
|
)))))); |
|
|
|
@override |