|
|
|
|
@ -679,10 +679,12 @@ class _WorkListDetailScreenState extends State<WorkListDetailScreen> {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void performAction(String actionMode, {String? title}) {
|
|
|
|
|
GetActionHistoryList? object = actionHistoryList.firstWhere((element) => element.aCTIONCODE == "REQUEST_INFO");
|
|
|
|
|
String question = "${object.aCTION}: ${object.nOTE}";
|
|
|
|
|
showDialog(
|
|
|
|
|
context: context,
|
|
|
|
|
builder: (BuildContext cxt) => AcceptRejectInputDialog(
|
|
|
|
|
message: title != null ? null : LocaleKeys.requestedItems.tr(),
|
|
|
|
|
message: question,
|
|
|
|
|
title: title,
|
|
|
|
|
notificationGetRespond: notificationNoteInput,
|
|
|
|
|
actionMode: actionMode,
|
|
|
|
|
|