|
@@ -89,6 +89,7 @@ public class CenterMenu {
|
|
String mainDrName = patientInfoVO.getMainDrNm();
|
|
String mainDrName = patientInfoVO.getMainDrNm();
|
|
String dxNm = patientInfoVO.getDxNm();
|
|
String dxNm = patientInfoVO.getDxNm();
|
|
String opDrNm = patientInfoVO.getOpDrNm();
|
|
String opDrNm = patientInfoVO.getOpDrNm();
|
|
|
|
+ String erDrNm = patientInfoVO.getErDrNm();
|
|
|
|
|
|
String patientInfo = pid + " " + patientName + " " + Util.editAgeToIdNum(sa) + "/" + juminNo.substring(0, 6);
|
|
String patientInfo = pid + " " + patientName + " " + Util.editAgeToIdNum(sa) + "/" + juminNo.substring(0, 6);
|
|
|
|
|
|
@@ -96,6 +97,8 @@ public class CenterMenu {
|
|
instance.tvAdmissionDay.setText(Util.addSlashDate(adDate));
|
|
instance.tvAdmissionDay.setText(Util.addSlashDate(adDate));
|
|
if (instance.mobile.equals("P")) {
|
|
if (instance.mobile.equals("P")) {
|
|
instance.tvChargeDoctor.setText(opDrNm);
|
|
instance.tvChargeDoctor.setText(opDrNm);
|
|
|
|
+ } else if (instance.mobile.equals("E")) {
|
|
|
|
+ instance.tvChargeDoctor.setText(erDrNm);
|
|
} else {
|
|
} else {
|
|
instance.tvChargeDoctor.setText(mainDrName);
|
|
instance.tvChargeDoctor.setText(mainDrName);
|
|
}
|
|
}
|