|
|
|
@ -59,9 +59,9 @@ class EmployeeDigitialIdDialog extends StatelessWidget {
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
12.height,
|
|
|
|
12.height,
|
|
|
|
(AppState().memberInformationList!.eMPLOYEENAME ?? "").toText16(),
|
|
|
|
(AppState().memberInformationList!.eMPLOYEEDISPLAYNAME ?? "").toText16(),
|
|
|
|
4.height,
|
|
|
|
4.height,
|
|
|
|
(AppState().memberInformationList!.pOSITIONNAME ?? "").toText12(isBold: false),
|
|
|
|
(showJobName(AppState().memberInformationList!.pOSITIONNAME ?? "")).toText12(isBold: false),
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
@ -80,4 +80,14 @@ class EmployeeDigitialIdDialog extends StatelessWidget {
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String showJobName(String position){
|
|
|
|
|
|
|
|
try{
|
|
|
|
|
|
|
|
var p=position.split(".");
|
|
|
|
|
|
|
|
return p[0]+" "+p[1];
|
|
|
|
|
|
|
|
}catch(e){
|
|
|
|
|
|
|
|
return "";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|