review comment

design_3.0_demo_module
nextwo 3 years ago
parent eae8be206e
commit b40727b920

@ -336,7 +336,7 @@ class ServiceRequestsProvider extends ChangeNotifier {
}, },
) )
?.toList(), ?.toList(),
"reviewComment": report.reviewComment ?? "", "reviewComment": "",
"comment": report.comment, "comment": report.comment,
"attachmentsWorkOrder": request.devicePhotos?.map((e) => {"name": e})?.toList(), "attachmentsWorkOrder": request.devicePhotos?.map((e) => {"name": e})?.toList(),
"equipmentStatus": report.equipmentStatus?.toMap(), "equipmentStatus": report.equipmentStatus?.toMap(),

@ -306,7 +306,7 @@ class CreateRequestPageState extends State<CreateRequestPage> {
Fluttertoast.showToast(msg: _subtitle.pickDevice); Fluttertoast.showToast(msg: _subtitle.pickDevice);
return; return;
} }
if (_serviceRequest.firstAction.name == "Need a visit" && _dateTime == null) { if (_serviceRequest.firstAction?.name == "Need a visit" && _dateTime == null) {
Fluttertoast.showToast(msg: _subtitle.noDateFound); Fluttertoast.showToast(msg: _subtitle.noDateFound);
return; return;
} }

@ -397,21 +397,21 @@ class _CreateServiceReportState extends State<CreateServiceReport> with TickerPr
), ),
], ],
), ),
if (_showCommentField) // if (_showCommentField)
const SizedBox( // const SizedBox(
height: 8, // height: 8,
), // ),
if (_showCommentField) // if (_showCommentField)
ATextFormField( // ATextFormField(
initialValue: _serviceReport?.reviewComment, // initialValue: _serviceReport?.reviewComment,
hintText: "Review Comment", // hintText: "Review Comment",
textAlign: TextAlign.center, // textAlign: TextAlign.center,
style: Theme.of(context).textTheme.titleMedium, // style: Theme.of(context).textTheme.titleMedium,
textInputType: TextInputType.multiline, // textInputType: TextInputType.multiline,
onSaved: (value) { // onSaved: (value) {
_serviceReport.reviewComment = value; // _serviceReport.reviewComment = value;
}, // },
), // ),
SizedBox( SizedBox(
height: 8 * AppStyle.getScaleFactor(context), height: 8 * AppStyle.getScaleFactor(context),
), ),

Loading…
Cancel
Save