From 4cc4a6cd2b27e96cb2e97c9f9095b27ea7b4eeb2 Mon Sep 17 00:00:00 2001 From: Devika Date: Wed, 27 Dec 2023 14:44:16 +0530 Subject: [PATCH 1/3] Corrected API name from swymed to videoConsultation --- .../ProviderAdminServices/swymed-user-service.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/services/ProviderAdminServices/swymed-user-service.ts b/src/app/services/ProviderAdminServices/swymed-user-service.ts index a2a16b69..1e75bbc9 100644 --- a/src/app/services/ProviderAdminServices/swymed-user-service.ts +++ b/src/app/services/ProviderAdminServices/swymed-user-service.ts @@ -46,13 +46,13 @@ export class SwymedUserConfigurationService { private httpSecurity: SecurityInterceptedHttp) { this.providerAdmin_base_url = this.basePaths.getAdminBaseUrl(); - this.getMappedUserDetails = this.providerAdmin_base_url + 'swymed/getmappedUsers/'; + this.getMappedUserDetails = this.providerAdmin_base_url + 'videoConsultation/getmappedUsers/'; this.getAllDesignationsUrl = this.providerAdmin_base_url + 'm/getDesignation'; - this.getUserNameUrl = this.providerAdmin_base_url + '/swymed/getunmappedUser/'; - this.getVideoConsultationDomainUrl = this.providerAdmin_base_url + 'swymed/getdomain/'; - this.saveSwymedUserDetailsUrl = this.providerAdmin_base_url + '/swymed/createUser'; - this.updateUserDetailsUrl = this.providerAdmin_base_url + 'swymed/editUser'; - this.mappingActivationDeactivationUrl = this.providerAdmin_base_url + '/swymed/deleteUser/'; + this.getUserNameUrl = this.providerAdmin_base_url + '/videoConsultation/getunmappedUser/'; + this.getVideoConsultationDomainUrl = this.providerAdmin_base_url + 'videoConsultation/getdomain/'; + this.saveSwymedUserDetailsUrl = this.providerAdmin_base_url + '/videoConsultation/createUser'; + this.updateUserDetailsUrl = this.providerAdmin_base_url + 'videoConsultation/editUser'; + this.mappingActivationDeactivationUrl = this.providerAdmin_base_url + '/videoConsultation/deleteUser/'; } getSwymedUserDetails(serviceProviderID) { From ecf71efeb2d42f65ffc407b4ced9d20ce652d76e Mon Sep 17 00:00:00 2001 From: Devika Date: Wed, 7 Feb 2024 11:24:55 +0530 Subject: [PATCH 2/3] Changed service Id filteration from 4 to 9 in CDSS mapping screen for HWC --- .../institute-directory-master-service.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/ProviderAdminServices/institute-directory-master-service.service.ts b/src/app/services/ProviderAdminServices/institute-directory-master-service.service.ts index 747ddc32..8a48bd41 100644 --- a/src/app/services/ProviderAdminServices/institute-directory-master-service.service.ts +++ b/src/app/services/ProviderAdminServices/institute-directory-master-service.service.ts @@ -138,7 +138,7 @@ export class InstituteDirectoryMasterService { console.log(response.json().data, 'role service file success response'); let result = []; result = response.json().data.filter(function (item) { - if (item.serviceID === 4) { + if (item.serviceID === 9) { return item; } }); From 7786c4063148ca94a5b070aa9f517da099db0267 Mon Sep 17 00:00:00 2001 From: Devika Date: Tue, 2 Apr 2024 11:52:57 +0530 Subject: [PATCH 3/3] Added serviceline ECD in wrapup time configuration --- .../ProviderAdminServices/wrapup-time-configuration.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/ProviderAdminServices/wrapup-time-configuration.service.ts b/src/app/services/ProviderAdminServices/wrapup-time-configuration.service.ts index 1aa987c4..2b5b6c84 100644 --- a/src/app/services/ProviderAdminServices/wrapup-time-configuration.service.ts +++ b/src/app/services/ProviderAdminServices/wrapup-time-configuration.service.ts @@ -107,7 +107,7 @@ export class WrapupTimeConfigurationService { let result = []; if (response.json().data) { result = response.json().data.filter(function (item) { - if (item.serviceID == 3 ||item.serviceID == 6 ||item.serviceID == 1) { + if (item.serviceID == 3 ||item.serviceID == 6 ||item.serviceID == 1 || item.serviceID == 10) { return item; } });