mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix to display statistics in webapps
Fixed to display the subscription statistics in web apps also by appending the sql query only to have DEVICE_TYPE_ID if it is not equals to 0.
This commit is contained in:
parent
52711fd94c
commit
014889b237
@ -1590,20 +1590,23 @@ public abstract class AbstractGroupDAOImpl implements GroupDAO {
|
||||
int deviceCount = 0;
|
||||
try {
|
||||
Connection connection = GroupManagementDAOFactory.getConnection();
|
||||
String sql = "SELECT COUNT(e.ID) AS COUNT " +
|
||||
StringBuilder sql = new StringBuilder("SELECT COUNT(e.ID) AS COUNT " +
|
||||
"FROM DM_GROUP d " +
|
||||
"INNER JOIN DM_DEVICE_GROUP_MAP m ON d.ID = m.GROUP_ID " +
|
||||
"INNER JOIN DM_ENROLMENT e ON m.DEVICE_ID = e.DEVICE_ID " +
|
||||
"INNER JOIN DM_DEVICE r ON e.DEVICE_ID = r.ID " +
|
||||
"WHERE d.TENANT_ID = ? " +
|
||||
"AND d.GROUP_NAME = ? " +
|
||||
"AND r.DEVICE_TYPE_ID = ? " +
|
||||
"AND e.STATUS NOT IN ('REMOVED', 'DELETED')";
|
||||
|
||||
try (PreparedStatement preparedStatement = connection.prepareStatement(sql)) {
|
||||
"AND e.STATUS NOT IN ('REMOVED', 'DELETED')");
|
||||
if (deviceTypeId != 0) {
|
||||
sql.append(" AND r.DEVICE_TYPE_ID = ?");
|
||||
}
|
||||
try (PreparedStatement preparedStatement = connection.prepareStatement(sql.toString())) {
|
||||
preparedStatement.setInt(1, tenantId);
|
||||
preparedStatement.setString(2, groupName);
|
||||
preparedStatement.setInt(3, deviceTypeId);
|
||||
if (deviceTypeId != 0) {
|
||||
preparedStatement.setInt(3, deviceTypeId);
|
||||
}
|
||||
try (ResultSet resultSet = preparedStatement.executeQuery()) {
|
||||
if (resultSet.next()) {
|
||||
deviceCount = resultSet.getInt("COUNT");
|
||||
@ -1617,4 +1620,4 @@ public abstract class AbstractGroupDAOImpl implements GroupDAO {
|
||||
throw new GroupManagementDAOException(msg, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user