debit: nome do visitante no detalhe da visita em aberto
This commit is contained in:
parent
55e42e1e31
commit
4e46edba86
|
@ -43,6 +43,11 @@ class VisitsModel extends FlutterFlowModel<VehicleOnTheProperty> {
|
||||||
return DetailsComponentWidget(
|
return DetailsComponentWidget(
|
||||||
buttons: [],
|
buttons: [],
|
||||||
labelsHashMap: Map<String, String>.from({
|
labelsHashMap: Map<String, String>.from({
|
||||||
|
if (item['VTA_NOME'] != null && item['VTA_NOME'] != '')
|
||||||
|
'${FFLocalizations.of(context).getVariableText(
|
||||||
|
ptText: "Nome",
|
||||||
|
enText: "Name",
|
||||||
|
)}:': item['VTA_NOME'].toString().toUpperCase(),
|
||||||
if (item['MOT_DESCRICAO'] != null && item['MOT_DESCRICAO'] != '')
|
if (item['MOT_DESCRICAO'] != null && item['MOT_DESCRICAO'] != '')
|
||||||
'${FFLocalizations.of(context).getVariableText(
|
'${FFLocalizations.of(context).getVariableText(
|
||||||
ptText: "Motivo",
|
ptText: "Motivo",
|
||||||
|
|
Loading…
Reference in New Issue