|
|
|
|
@ -38,21 +38,25 @@ class NewGasRefillRequestPage extends StatefulWidget {
|
|
|
|
|
class _NewGasRefillRequestPageState extends State<NewGasRefillRequestPage> {
|
|
|
|
|
late GasRefillDetails _currentDetails;
|
|
|
|
|
late GasRefillModel _gasModel;
|
|
|
|
|
late GlobalKey<FormState> _formKey;
|
|
|
|
|
late TextEditingController _quantityController;
|
|
|
|
|
Lookup? _requestedQuantity;
|
|
|
|
|
|
|
|
|
|
static List<Lookup> gasQuantity = [
|
|
|
|
|
Lookup(name: "1", id: 1, value: 1),
|
|
|
|
|
Lookup(name: "2", id: 2, value: 2),
|
|
|
|
|
Lookup(name: "3", id: 3, value: 3),
|
|
|
|
|
Lookup(name: "4", id: 4, value: 4),
|
|
|
|
|
Lookup(name: "5", id: 5, value: 5)
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void initState() {
|
|
|
|
|
super.initState();
|
|
|
|
|
_formKey = GlobalKey<FormState>();
|
|
|
|
|
_currentDetails = GasRefillDetails();
|
|
|
|
|
_gasModel = GasRefillModel(gazRefillDetails: []);
|
|
|
|
|
_quantityController = TextEditingController();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void dispose() {
|
|
|
|
|
_quantityController.dispose();
|
|
|
|
|
super.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -63,8 +67,6 @@ class _NewGasRefillRequestPageState extends State<NewGasRefillRequestPage> {
|
|
|
|
|
body: Column(
|
|
|
|
|
children: [
|
|
|
|
|
SingleChildScrollView(
|
|
|
|
|
child: Form(
|
|
|
|
|
key: _formKey,
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
16.height,
|
|
|
|
|
@ -72,22 +74,20 @@ class _NewGasRefillRequestPageState extends State<NewGasRefillRequestPage> {
|
|
|
|
|
context: context,
|
|
|
|
|
title: context.translation.gasType,
|
|
|
|
|
initialValue: _currentDetails.gasType,
|
|
|
|
|
showAsBottomSheet: true,
|
|
|
|
|
onSelect: (value) {
|
|
|
|
|
_currentDetails.gasType = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
8.height,
|
|
|
|
|
AppTextFormField(
|
|
|
|
|
controller: _quantityController,
|
|
|
|
|
labelText: context.translation.quantity,
|
|
|
|
|
textInputType: TextInputType.number,
|
|
|
|
|
validator: (value) => Validator.hasValue(value!)
|
|
|
|
|
? Validator.isNumeric(value)
|
|
|
|
|
? null
|
|
|
|
|
: context.translation.onlyNumbers
|
|
|
|
|
: context.translation.requiredField,
|
|
|
|
|
onSaved: (text) {
|
|
|
|
|
_currentDetails.requestedQty = double.tryParse(text ?? "") ?? 0;
|
|
|
|
|
SingleItemDropDownMenu<Lookup, NullableLoadingProvider>(
|
|
|
|
|
context: context,
|
|
|
|
|
title: context.translation.quantity,
|
|
|
|
|
initialValue: _requestedQuantity,
|
|
|
|
|
staticData: gasQuantity,
|
|
|
|
|
onSelect: (value) {
|
|
|
|
|
_requestedQuantity = value;
|
|
|
|
|
_currentDetails.requestedQty = value?.value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
8.height,
|
|
|
|
|
@ -104,6 +104,7 @@ class _NewGasRefillRequestPageState extends State<NewGasRefillRequestPage> {
|
|
|
|
|
context: context,
|
|
|
|
|
title: context.translation.cylinderSize,
|
|
|
|
|
initialValue: _currentDetails.cylinderSize,
|
|
|
|
|
showAsBottomSheet: true,
|
|
|
|
|
onSelect: (value) {
|
|
|
|
|
_currentDetails.cylinderSize = value;
|
|
|
|
|
},
|
|
|
|
|
@ -130,6 +131,7 @@ class _NewGasRefillRequestPageState extends State<NewGasRefillRequestPage> {
|
|
|
|
|
initialValue: _gasModel.building,
|
|
|
|
|
enabled: _gasModel.site?.buildings?.isNotEmpty ?? false,
|
|
|
|
|
staticData: _gasModel.site?.buildings ?? [],
|
|
|
|
|
showAsBottomSheet: true,
|
|
|
|
|
onSelect: (value) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_gasModel.building = value;
|
|
|
|
|
@ -145,6 +147,7 @@ class _NewGasRefillRequestPageState extends State<NewGasRefillRequestPage> {
|
|
|
|
|
initialValue: _gasModel.floor,
|
|
|
|
|
enabled: _gasModel.building?.floors?.isNotEmpty ?? false,
|
|
|
|
|
staticData: _gasModel.building?.floors ?? [],
|
|
|
|
|
showAsBottomSheet: true,
|
|
|
|
|
onSelect: (value) {
|
|
|
|
|
setState(() {
|
|
|
|
|
_gasModel.floor = value;
|
|
|
|
|
@ -159,6 +162,7 @@ class _NewGasRefillRequestPageState extends State<NewGasRefillRequestPage> {
|
|
|
|
|
initialValue: _gasModel.department,
|
|
|
|
|
enabled: _gasModel.floor?.departments?.isNotEmpty ?? false,
|
|
|
|
|
staticData: _gasModel.floor?.departments ?? [],
|
|
|
|
|
showAsBottomSheet: true,
|
|
|
|
|
onSelect: (value) {
|
|
|
|
|
_gasModel.department = value;
|
|
|
|
|
},
|
|
|
|
|
@ -218,21 +222,8 @@ class _NewGasRefillRequestPageState extends State<NewGasRefillRequestPage> {
|
|
|
|
|
).toShadowContainer(context);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
// 8.height,
|
|
|
|
|
|
|
|
|
|
// // todo sikander, check it with FM
|
|
|
|
|
// AppTextFormField(
|
|
|
|
|
// labelText: context.translation.comments,
|
|
|
|
|
// textInputType: TextInputType.multiline,
|
|
|
|
|
// alignLabelWithHint: true,
|
|
|
|
|
// onChange: (text) {
|
|
|
|
|
// _gasModel.comment = text;
|
|
|
|
|
// },
|
|
|
|
|
// ),
|
|
|
|
|
//40.height,
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
).expanded,
|
|
|
|
|
16.height,
|
|
|
|
|
AppFilledButton(label: context.translation.submitRequest, maxWidth: true, onPressed: _submit),
|
|
|
|
|
@ -242,11 +233,10 @@ class _NewGasRefillRequestPageState extends State<NewGasRefillRequestPage> {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _add() async {
|
|
|
|
|
if (_formKey.currentState!.validate() && await _currentDetails.validate(context) && await _gasModel.validate(context)) {
|
|
|
|
|
_formKey.currentState!.save();
|
|
|
|
|
if (_currentDetails.validate(context) && _gasModel.validate(context)) {
|
|
|
|
|
_gasModel.gazRefillDetails!.add(_currentDetails);
|
|
|
|
|
_quantityController.clear();
|
|
|
|
|
_currentDetails = GasRefillDetails();
|
|
|
|
|
_requestedQuantity = null;
|
|
|
|
|
setState(() {});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|