@ -131,10 +131,22 @@ class _TrafRequestDetailPageState extends State<TrafRequestDetailPage> {
.bodyText(context),
4.height,
'Is the requesting department going to use the technology solely or shared with other departments?:\n${data.usingSolelyOrSharedName??'-'}'.bodyText(context),
if((data.departments??[]).isNotEmpty)...[
4.height,
'Technology used with other departments:\n${data.departments?.map((item)=>item.departmentName).toList()??'-'}'.bodyText(context),
],
4.height,
'Would other services be effected by acquiring the new equipment?:\n${data.effectedServices??'-'}'.bodyText(context),
'Would other services be effected by acquiring the new equipment?:\n${data.isEffectedName??'-'}'.bodyText(context),
if((data.effectedServices??"").isNotEmpty)...[
4.height,
'List of services would it be effected:\n${data.effectedServices??'-'}'.bodyText(context),
],
4.height,
'Is the equipment going to be used with combination of other equipment to accomplish a specific procedure?:\n${data.usedWithCombination??'-'}'.bodyText(context),
'Is the equipment going to be used with combination of other equipment to accomplish a specific procedure?:\n${data.isCombinationName??'-'}'.bodyText(context),
if((data.usedWithCombination??"").isNotEmpty)...[
4.height,
'Equipment going to be used with combination of other equipments:\n${data.usedWithCombination??'-'}'.bodyText(context),