mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix app installing issue in APPM
This commit is contained in:
parent
86fb8b16ef
commit
198bfc11f6
@ -77,7 +77,8 @@ public interface SubscriptionDAO {
|
||||
void updateSubscriptions(int tenantId, String updateBy, List<String> paramList,
|
||||
int releaseId, String subType, String action) throws ApplicationManagementDAOException;
|
||||
|
||||
List<Integer> getSubscribedDeviceIds(List<Integer> deviceIds, int tenantId) throws ApplicationManagementDAOException;
|
||||
List<Integer> getSubscribedDeviceIds(List<Integer> deviceIds, int applicationReleaseId, int tenantId)
|
||||
throws ApplicationManagementDAOException;
|
||||
|
||||
List<Integer> getDeviceSubIdsForOperation (int operationId, int tenantId) throws ApplicationManagementDAOException;
|
||||
|
||||
|
||||
@ -533,7 +533,8 @@ public class GenericSubscriptionDAOImpl extends AbstractDAOImpl implements Subsc
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Integer> getSubscribedDeviceIds(List<Integer> deviceIds, int tenantId)
|
||||
public List<Integer> getSubscribedDeviceIds(List<Integer> deviceIds, int applicationReleaseId,
|
||||
int tenantId)
|
||||
throws ApplicationManagementDAOException {
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug("Request received to DAO Layer to get already subscribed dvice Ids for given list of device Ids.");
|
||||
@ -545,14 +546,15 @@ public class GenericSubscriptionDAOImpl extends AbstractDAOImpl implements Subsc
|
||||
StringJoiner joiner = new StringJoiner(",",
|
||||
"SELECT DS.DM_DEVICE_ID "
|
||||
+ "FROM AP_DEVICE_SUBSCRIPTION DS "
|
||||
+ "WHERE DS.DM_DEVICE_ID IN (", ") AND TENANT_ID = ?");
|
||||
+ "WHERE DS.DM_DEVICE_ID IN (", ") AND AP_APP_RELEASE_ID = ? AND TENANT_ID = ?");
|
||||
deviceIds.stream().map(ignored -> "?").forEach(joiner::add);
|
||||
String query = joiner.toString();
|
||||
try (PreparedStatement ps = conn.prepareStatement(query)) {
|
||||
for (Integer deviceId : deviceIds) {
|
||||
ps.setObject(index++, deviceId);
|
||||
}
|
||||
ps.setInt(index, tenantId);
|
||||
ps.setInt(index++, tenantId);
|
||||
ps.setInt(index, applicationReleaseId);
|
||||
try (ResultSet rs = ps.executeQuery()) {
|
||||
while (rs.next()) {
|
||||
subscribedDevices.add(rs.getInt("DM_DEVICE_ID"));
|
||||
|
||||
@ -366,7 +366,7 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
||||
List<Integer> operationAddedDeviceIds = getOperationAddedDeviceIds(activity,
|
||||
subscribingDeviceIdHolder.getSubscribableDevices());
|
||||
List<Integer> alreadySubscribedDevices = subscriptionDAO
|
||||
.getSubscribedDeviceIds(operationAddedDeviceIds, tenantId);
|
||||
.getSubscribedDeviceIds(operationAddedDeviceIds, applicationReleaseId, tenantId);
|
||||
if (SubAction.INSTALL.toString().equalsIgnoreCase(action)) {
|
||||
if (!alreadySubscribedDevices.isEmpty()) {
|
||||
List<Integer> deviceResubscribingIds = subscriptionDAO
|
||||
|
||||
@ -190,7 +190,6 @@ class DeviceInstall extends React.Component {
|
||||
this.props.onInstall("devices", payload);
|
||||
};
|
||||
|
||||
|
||||
render() {
|
||||
const {data,pagination,loading,selectedRows} = this.state;
|
||||
return (
|
||||
|
||||
Loading…
Reference in New Issue
Block a user