mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix issues with device name,status not loading
This commit is contained in:
commit
99e7d12ab7
@ -585,6 +585,8 @@ public abstract class AbstractEnrollmentDAOImpl implements EnrollmentDAO {
|
|||||||
while (rs.next()) {
|
while (rs.next()) {
|
||||||
if (ownerDetails.getUserName() == null) {
|
if (ownerDetails.getUserName() == null) {
|
||||||
ownerDetails.setUserName(rs.getString("OWNER"));
|
ownerDetails.setUserName(rs.getString("OWNER"));
|
||||||
|
ownerDetails.setDeviceStatus(rs.getString("DEVICE_STATUS"));
|
||||||
|
ownerDetails.setDeviceNames(rs.getString("DEVICE_NAME"));
|
||||||
}
|
}
|
||||||
deviceIds.add(rs.getInt("DEVICE_ID"));
|
deviceIds.add(rs.getInt("DEVICE_ID"));
|
||||||
deviceCount++;
|
deviceCount++;
|
||||||
@ -598,8 +600,6 @@ public abstract class AbstractEnrollmentDAOImpl implements EnrollmentDAO {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ownerDetails.setDeviceIds(deviceIds);
|
ownerDetails.setDeviceIds(deviceIds);
|
||||||
ownerDetails.setDeviceStatus("DEVICE_STATUS");
|
|
||||||
ownerDetails.setDeviceNames("DEVICE_NAME");
|
|
||||||
ownerDetails.setDeviceTypes("DEVICE_TYPE");
|
ownerDetails.setDeviceTypes("DEVICE_TYPE");
|
||||||
ownerDetails.setDeviceIdentifiers("DEVICE_IDENTIFICATION");
|
ownerDetails.setDeviceIdentifiers("DEVICE_IDENTIFICATION");
|
||||||
ownerDetails.setDeviceCount(deviceCount);
|
ownerDetails.setDeviceCount(deviceCount);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user