|
|
|
|
@ -11,7 +11,12 @@ import 'package:test_sa/views/widgets/status/service_request/service_request_sta
|
|
|
|
|
import 'package:test_sa/views/widgets/switch_button.dart';
|
|
|
|
|
import 'package:test_sa/views/widgets/titles/app_sub_title.dart';
|
|
|
|
|
|
|
|
|
|
import '../../../models/call_request_for_work_order_model.dart';
|
|
|
|
|
import '../../../models/engineer.dart';
|
|
|
|
|
import '../app_text_form_field.dart';
|
|
|
|
|
import '../date_and_time/date_picker.dart';
|
|
|
|
|
import '../status/report/service_report_all_users.dart';
|
|
|
|
|
import '../status/report/service_report_visit_date_operator.dart';
|
|
|
|
|
|
|
|
|
|
class ServiceRequestsSearchDialog extends StatefulWidget {
|
|
|
|
|
final ServiceRequestSearch initialSearchValue;
|
|
|
|
|
@ -63,168 +68,239 @@ class _ServiceRequestsSearchDialogState extends State<ServiceRequestsSearchDialo
|
|
|
|
|
key: _formKey,
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: const EdgeInsets.all(16.0),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
ASmallButton(
|
|
|
|
|
text: _subtitle.cancel,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
ASmallButton(
|
|
|
|
|
text: _subtitle.search,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
if (!_formKey.currentState.validate()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_formKey.currentState.save();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ASwitchButton(
|
|
|
|
|
title: "Most Recent",
|
|
|
|
|
value: _search.mostRecent ?? false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
_search.mostRecent = value;
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ATextFormField(
|
|
|
|
|
initialValue: _search.deviceSerialNumber,
|
|
|
|
|
hintText: _subtitle.serialNumber,
|
|
|
|
|
style: Theme.of(context).textTheme.headline6,
|
|
|
|
|
textInputAction: TextInputAction.search,
|
|
|
|
|
onAction: () {
|
|
|
|
|
if (!_formKey.currentState.validate()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_formKey.currentState.save();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
onSaved: (value) {
|
|
|
|
|
_search.deviceSerialNumber = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
HospitalAutoCompleteField(
|
|
|
|
|
initialValue: _search.hospital?.name,
|
|
|
|
|
// onSave: (value){
|
|
|
|
|
// _search.hospital = value;
|
|
|
|
|
// },
|
|
|
|
|
onSearch: (value) {
|
|
|
|
|
_search.hospital = value;
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ATextFormField(
|
|
|
|
|
initialValue: _search.deviceName,
|
|
|
|
|
hintText: _subtitle.deviceName,
|
|
|
|
|
style: Theme.of(context).textTheme.headline6,
|
|
|
|
|
textInputAction: TextInputAction.search,
|
|
|
|
|
onAction: () {
|
|
|
|
|
if (!_formKey.currentState.validate()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_formKey.currentState.save();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
onSaved: (value) {
|
|
|
|
|
_search.deviceName = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ATextFormField(
|
|
|
|
|
initialValue: _search.model,
|
|
|
|
|
hintText: _subtitle.model,
|
|
|
|
|
style: Theme.of(context).textTheme.headline6,
|
|
|
|
|
textInputAction: TextInputAction.search,
|
|
|
|
|
onAction: () {
|
|
|
|
|
if (!_formKey.currentState.validate()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_formKey.currentState.save();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
onSaved: (value) {
|
|
|
|
|
_search.model = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 16 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
const ASubTitle("Status"),
|
|
|
|
|
const SizedBox(
|
|
|
|
|
height: 4,
|
|
|
|
|
),
|
|
|
|
|
ServiceRequestStatusMenu(
|
|
|
|
|
initialValue: _search.statusValue,
|
|
|
|
|
onSelect: (status) {
|
|
|
|
|
_search.statusValue = status;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
// Padding(
|
|
|
|
|
// padding: const EdgeInsets.symmetric(horizontal: 12),
|
|
|
|
|
// child: Wrap(
|
|
|
|
|
// spacing: 10,
|
|
|
|
|
// runSpacing: 10,
|
|
|
|
|
// alignment: WrapAlignment.spaceEvenly,
|
|
|
|
|
// children: List.generate(
|
|
|
|
|
// status.length,
|
|
|
|
|
// (index) {
|
|
|
|
|
// bool isSelected = _search.statusValue == status[index];
|
|
|
|
|
// return FilterItem(
|
|
|
|
|
// isSelected: isSelected,
|
|
|
|
|
// onSelected: (){
|
|
|
|
|
// if(isSelected) {
|
|
|
|
|
// _search.statusValue = null;
|
|
|
|
|
// } else {
|
|
|
|
|
// _search.statusValue = status[index];
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// setState(() {});
|
|
|
|
|
// },
|
|
|
|
|
// status: status[index],
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// ),
|
|
|
|
|
// ),
|
|
|
|
|
// ),
|
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
children: [
|
|
|
|
|
ASmallButton(
|
|
|
|
|
text: _subtitle.cancel,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
ASmallButton(
|
|
|
|
|
text: _subtitle.search,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
if (!_formKey.currentState.validate()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_formKey.currentState.save();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ASwitchButton(
|
|
|
|
|
title: "Most Recent",
|
|
|
|
|
value: _search.mostRecent ?? false,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
_search.mostRecent = value;
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ATextFormField(
|
|
|
|
|
labelText: "Call ID",
|
|
|
|
|
onSaved: (value) {
|
|
|
|
|
_search.callId = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ATextFormField(
|
|
|
|
|
initialValue: _search.deviceSerialNumber,
|
|
|
|
|
hintText: _subtitle.serialNumber,
|
|
|
|
|
style: Theme.of(context).textTheme.headline6,
|
|
|
|
|
textInputAction: TextInputAction.search,
|
|
|
|
|
onAction: () {
|
|
|
|
|
if (!_formKey.currentState.validate()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_formKey.currentState.save();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
onSaved: (value) {
|
|
|
|
|
_search.deviceSerialNumber = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
HospitalAutoCompleteField(
|
|
|
|
|
initialValue: _search.hospital?.name,
|
|
|
|
|
// onSave: (value){
|
|
|
|
|
// _search.hospital = value;
|
|
|
|
|
// },
|
|
|
|
|
onSearch: (value) {
|
|
|
|
|
_search.hospital = value;
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ATextFormField(
|
|
|
|
|
initialValue: _search.deviceName,
|
|
|
|
|
hintText: _subtitle.deviceName,
|
|
|
|
|
style: Theme.of(context).textTheme.headline6,
|
|
|
|
|
textInputAction: TextInputAction.search,
|
|
|
|
|
onAction: () {
|
|
|
|
|
if (!_formKey.currentState.validate()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_formKey.currentState.save();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
onSaved: (value) {
|
|
|
|
|
_search.deviceName = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 8.0 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ATextFormField(
|
|
|
|
|
initialValue: _search.model,
|
|
|
|
|
hintText: _subtitle.model,
|
|
|
|
|
style: Theme.of(context).textTheme.headline6,
|
|
|
|
|
textInputAction: TextInputAction.search,
|
|
|
|
|
onAction: () {
|
|
|
|
|
if (!_formKey.currentState.validate()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_formKey.currentState.save();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
onSaved: (value) {
|
|
|
|
|
_search.model = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 16 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
const ASubTitle("Status"),
|
|
|
|
|
const SizedBox(height: 4),
|
|
|
|
|
ServiceRequestStatusMenu(
|
|
|
|
|
initialValue: _search.statusValue,
|
|
|
|
|
onSelect: (status) {
|
|
|
|
|
_search.statusValue = status;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 16 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
ASubTitle(_subtitle.assignedEmployee),
|
|
|
|
|
const SizedBox(height: 4),
|
|
|
|
|
ServiceReportAllUsers(
|
|
|
|
|
initialValue: _search.assignedEmployee == null ? null : Engineer(id: _search.assignedEmployee.id, name: _search.assignedEmployee.name),
|
|
|
|
|
onSelect: (engineer) {
|
|
|
|
|
_search.assignedEmployee = AssignedEmployee(id: engineer.id, name: engineer.name);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
SizedBox(
|
|
|
|
|
height: 16 * AppStyle.getScaleFactor(context),
|
|
|
|
|
),
|
|
|
|
|
const ASubTitle("Request Date"),
|
|
|
|
|
const SizedBox(height: 4),
|
|
|
|
|
ServiceReportVisitDateOperator(
|
|
|
|
|
initialValue: _search.dateOperator,
|
|
|
|
|
onSelect: (status) {
|
|
|
|
|
_search.dateOperator = status;
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
|
|
|
children: [
|
|
|
|
|
const ASubTitle("From"),
|
|
|
|
|
ADatePicker(
|
|
|
|
|
date: DateTime.tryParse(_search.from ?? ""),
|
|
|
|
|
from: DateTime(1950),
|
|
|
|
|
onDatePicker: (date) {
|
|
|
|
|
_search.from = date?.toIso8601String();
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if (_search?.dateOperator?.name?.toLowerCase()?.contains("between") ?? false) const SizedBox(width: 16),
|
|
|
|
|
if (_search?.dateOperator?.name?.toLowerCase()?.contains("between") ?? false)
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
|
|
|
children: [
|
|
|
|
|
const ASubTitle("To"),
|
|
|
|
|
ADatePicker(
|
|
|
|
|
date: DateTime.tryParse(_search.to ?? ""),
|
|
|
|
|
from: DateTime(1950),
|
|
|
|
|
onDatePicker: (date) {
|
|
|
|
|
_search.to = date?.toIso8601String();
|
|
|
|
|
setState(() {});
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(width: 16),
|
|
|
|
|
// Padding(
|
|
|
|
|
// padding: const EdgeInsets.symmetric(horizontal: 12),
|
|
|
|
|
// child: Wrap(
|
|
|
|
|
// spacing: 10,
|
|
|
|
|
// runSpacing: 10,
|
|
|
|
|
// alignment: WrapAlignment.spaceEvenly,
|
|
|
|
|
// children: List.generate(
|
|
|
|
|
// status.length,
|
|
|
|
|
// (index) {
|
|
|
|
|
// bool isSelected = _search.statusValue == status[index];
|
|
|
|
|
// return FilterItem(
|
|
|
|
|
// isSelected: isSelected,
|
|
|
|
|
// onSelected: (){
|
|
|
|
|
// if(isSelected) {
|
|
|
|
|
// _search.statusValue = null;
|
|
|
|
|
// } else {
|
|
|
|
|
// _search.statusValue = status[index];
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// setState(() {});
|
|
|
|
|
// },
|
|
|
|
|
// status: status[index],
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// ),
|
|
|
|
|
// ),
|
|
|
|
|
// ),
|
|
|
|
|
|
|
|
|
|
Visibility(
|
|
|
|
|
visible: widget.initialSearchValue.toMap().isNotEmpty,
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 16),
|
|
|
|
|
child: AButton(
|
|
|
|
|
padding: EdgeInsets.zero,
|
|
|
|
|
text: _subtitle.clearSearch,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
_search = ServiceRequestSearch();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
Visibility(
|
|
|
|
|
visible: widget.initialSearchValue.toMap().isNotEmpty,
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 16),
|
|
|
|
|
child: AButton(
|
|
|
|
|
padding: EdgeInsets.zero,
|
|
|
|
|
text: _subtitle.clearSearch,
|
|
|
|
|
onPressed: () {
|
|
|
|
|
_search = ServiceRequestSearch();
|
|
|
|
|
Navigator.of(context).pop(_search);
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
|