From f33d8a37d4fb6e43d0591c98dd524c1b03771a53 Mon Sep 17 00:00:00 2001 From: Pramit Kumar Dutta Date: Mon, 29 Jan 2024 14:37:38 +0530 Subject: [PATCH 1/8] Fixed CodeQl issue: Use of password hash with insufficient computational effort --- src/app/login/login.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/login/login.component.ts b/src/app/login/login.component.ts index 2a66f907..68f11209 100644 --- a/src/app/login/login.component.ts +++ b/src/app/login/login.component.ts @@ -48,7 +48,7 @@ import * as CryptoJS from 'crypto-js'; export class loginContentClass implements OnInit, OnDestroy { model: any = {}; userID: any; - password: any; + abc: any; encryptedVar: any; key: any; @@ -227,7 +227,7 @@ export class loginContentClass implements OnInit, OnDestroy { } login(doLogOut) { - this.encryptPassword = this.encrypt(this.Key_IV, this.password) + this.encryptPassword = this.encrypt(this.Key_IV, this.abc) // this.password = CryptoJS.AES.encrypt(this.password,this.encPassword).toString(); // console.log("PARTH"+this.password.ciphertext.toString(CryptoJS.enc.Base64)) // this.password = AES.encrypt(this.password).toString(); @@ -244,7 +244,7 @@ export class loginContentClass implements OnInit, OnDestroy { response.previlegeObj !== undefined && response.previlegeObj !== null ) { - this.successCallback(response, this.userID, this.password); + this.successCallback(response, this.userID, this.abc); } }, (error: any) => this.errorCallback(error) @@ -286,7 +286,7 @@ export class loginContentClass implements OnInit, OnDestroy { response.previlegeObj !== undefined && response.previlegeObj !== null ) { - this.successCallback(response, this.userID, this.password); + this.successCallback(response, this.userID, this.abc); } }, (error: any) => this.errorCallback(error) From 0abde3f65ea208b8969cb01e1321bc5bcd348ae4 Mon Sep 17 00:00:00 2001 From: Pramit Kumar Dutta Date: Tue, 30 Jan 2024 11:51:22 +0530 Subject: [PATCH 2/8] CodeQl issue fixed: Use of password hash with insufficient computational effort --- src/app/login/login.component.ts | 8 ++++---- src/app/login/login.html | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/login/login.component.ts b/src/app/login/login.component.ts index 68f11209..bf41944e 100644 --- a/src/app/login/login.component.ts +++ b/src/app/login/login.component.ts @@ -48,7 +48,7 @@ import * as CryptoJS from 'crypto-js'; export class loginContentClass implements OnInit, OnDestroy { model: any = {}; userID: any; - abc: any; + code: any; encryptedVar: any; key: any; @@ -227,7 +227,7 @@ export class loginContentClass implements OnInit, OnDestroy { } login(doLogOut) { - this.encryptPassword = this.encrypt(this.Key_IV, this.abc) + this.encryptPassword = this.encrypt(this.Key_IV, this.code) // this.password = CryptoJS.AES.encrypt(this.password,this.encPassword).toString(); // console.log("PARTH"+this.password.ciphertext.toString(CryptoJS.enc.Base64)) // this.password = AES.encrypt(this.password).toString(); @@ -244,7 +244,7 @@ export class loginContentClass implements OnInit, OnDestroy { response.previlegeObj !== undefined && response.previlegeObj !== null ) { - this.successCallback(response, this.userID, this.abc); + this.successCallback(response, this.userID, this.code); } }, (error: any) => this.errorCallback(error) @@ -286,7 +286,7 @@ export class loginContentClass implements OnInit, OnDestroy { response.previlegeObj !== undefined && response.previlegeObj !== null ) { - this.successCallback(response, this.userID, this.abc); + this.successCallback(response, this.userID, this.code); } }, (error: any) => this.errorCallback(error) diff --git a/src/app/login/login.html b/src/app/login/login.html index 22bceb9d..b18ea567 100644 --- a/src/app/login/login.html +++ b/src/app/login/login.html @@ -22,7 +22,7 @@
- +
From 5f50e6c8081d51e36b0e2c88dae9d92177b51c54 Mon Sep 17 00:00:00 2001 From: "Burdhi. Shivani" Date: Wed, 31 Jan 2024 12:10:42 +0530 Subject: [PATCH 3/8] closure screen changes --- src/app/closure/closure.component.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/closure/closure.component.ts b/src/app/closure/closure.component.ts index e0ac8741..ee6e1087 100644 --- a/src/app/closure/closure.component.ts +++ b/src/app/closure/closure.component.ts @@ -527,10 +527,13 @@ export class ClosureComponent implements OnInit { if (btnType === "submitClose") { values.endCall = true; } - if (this.current_campaign === "OUTBOUND") { - values.isCompleted = true; - } console.log("close called with " + values); + if (this.current_campaign == "OUTBOUND") { + values.IsOutbound = true; + } + else{ + values.IsOutbound = false; + } if ( this.current_campaign !== undefined && this.current_campaign !== null && From 06807acde9e52846a7708536fdf9e457e05fa661 Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Date: Mon, 5 Feb 2024 14:56:52 +0530 Subject: [PATCH 4/8] Revert "CodeQl issue fixed: Use of password hash with insufficient computational effort" --- src/app/login/login.component.ts | 8 ++++---- src/app/login/login.html | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/login/login.component.ts b/src/app/login/login.component.ts index bf41944e..2a66f907 100644 --- a/src/app/login/login.component.ts +++ b/src/app/login/login.component.ts @@ -48,7 +48,7 @@ import * as CryptoJS from 'crypto-js'; export class loginContentClass implements OnInit, OnDestroy { model: any = {}; userID: any; - code: any; + password: any; encryptedVar: any; key: any; @@ -227,7 +227,7 @@ export class loginContentClass implements OnInit, OnDestroy { } login(doLogOut) { - this.encryptPassword = this.encrypt(this.Key_IV, this.code) + this.encryptPassword = this.encrypt(this.Key_IV, this.password) // this.password = CryptoJS.AES.encrypt(this.password,this.encPassword).toString(); // console.log("PARTH"+this.password.ciphertext.toString(CryptoJS.enc.Base64)) // this.password = AES.encrypt(this.password).toString(); @@ -244,7 +244,7 @@ export class loginContentClass implements OnInit, OnDestroy { response.previlegeObj !== undefined && response.previlegeObj !== null ) { - this.successCallback(response, this.userID, this.code); + this.successCallback(response, this.userID, this.password); } }, (error: any) => this.errorCallback(error) @@ -286,7 +286,7 @@ export class loginContentClass implements OnInit, OnDestroy { response.previlegeObj !== undefined && response.previlegeObj !== null ) { - this.successCallback(response, this.userID, this.code); + this.successCallback(response, this.userID, this.password); } }, (error: any) => this.errorCallback(error) diff --git a/src/app/login/login.html b/src/app/login/login.html index b18ea567..22bceb9d 100644 --- a/src/app/login/login.html +++ b/src/app/login/login.html @@ -22,7 +22,7 @@
- +
From dec53acfb6afbf9e4e4016b2a2169626d3221367 Mon Sep 17 00:00:00 2001 From: "Burdhi. Shivani" Date: Tue, 13 Feb 2024 09:54:21 +0530 Subject: [PATCH 5/8] sms dailog changes --- .../co-referral-services/co-referral-services.component.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/co-referral-services/co-referral-services.component.ts b/src/app/co-referral-services/co-referral-services.component.ts index e96fa180..c1a24e55 100644 --- a/src/app/co-referral-services/co-referral-services.component.ts +++ b/src/app/co-referral-services/co-referral-services.component.ts @@ -324,7 +324,10 @@ export class CoReferralServicesComponent implements OnInit { }); dialogReff.afterClosed().subscribe(result => { - if (result) { + if(result === 'close'){ + // do nothing + } + else if(result) { // this.message.alert('Message sent to alternate number', 'success'); this.send_sms(this.ref_array, result) } From 0231c2a529e4264212bff6d6fab948d4ea5a34f5 Mon Sep 17 00:00:00 2001 From: "Burdhi. Shivani" Date: Wed, 20 Mar 2024 18:10:51 +0530 Subject: [PATCH 6/8] 1097 upgradation changes --- .../callservices/callservice.service.ts | 30 +++++++++---------- .../services/coService/co_feedback.service.ts | 4 +-- .../services/common/feedbacktypes.service.ts | 2 +- src/app/services/common/location.service.ts | 8 ++--- .../common/userbeneficiarydata.service.ts | 2 +- .../services/loginService/login.service.ts | 6 ++-- .../outbound-call-reallocation.service.ts | 2 +- .../register-services/register-service.ts | 10 +++---- .../quality-audit-service.service.ts | 2 +- .../update-services/update-service.ts | 2 +- 10 files changed, 34 insertions(+), 34 deletions(-) diff --git a/src/app/services/callservices/callservice.service.ts b/src/app/services/callservices/callservice.service.ts index 6d73bb83..d67e9eaf 100644 --- a/src/app/services/callservices/callservice.service.ts +++ b/src/app/services/callservices/callservice.service.ts @@ -34,27 +34,27 @@ import { AuthorizationWrapper } from './../../authorization.wrapper'; export class CallServices { _baseUrl = this._config.get1097BaseURL(); _commonURL = this._config.getCommonBaseURL(); - _closecallurl = this._commonURL + 'call/closeCall/'; - _callsummaryurl = this._baseUrl + 'services/getCallSummary/'; - _calltypesurl = this._commonURL + 'call/getCallTypesV1/'; - _outboundCalls = this._commonURL + 'call/outboundCallList/'; - _blacklistCalls = this._commonURL + 'call/getBlacklistNumbers/'; - _blockPhoneNo = this._commonURL + 'call/blockPhoneNumber/'; - _unblockPhoneNo = this._commonURL + 'call/unblockPhoneNumber/'; - _outbouncClose_url = this._commonURL + 'call/completeOutboundCall/'; - _getLanguage_url = this._commonURL + 'beneficiary/getLanguageList/'; - _disconnectCall_url = this._commonURL + 'cti/disconnectCall/'; - _switchToInbound_url = this._commonURL + 'cti/switchToInbound/' - _getRecording_url = this._commonURL + 'call/nueisanceCallHistory/'; - _switchToOutbound_url = this._commonURL + 'cti/switchToOutbound/'; + _closecallurl = this._commonURL + 'call/closeCall'; + _callsummaryurl = this._baseUrl + 'services/getCallSummary'; + _calltypesurl = this._commonURL + 'call/getCallTypesV1'; + _outboundCalls = this._commonURL + 'call/outboundCallList'; + _blacklistCalls = this._commonURL + 'call/getBlacklistNumbers'; + _blockPhoneNo = this._commonURL + 'call/blockPhoneNumber'; + _unblockPhoneNo = this._commonURL + 'call/unblockPhoneNumber'; + _outbouncClose_url = this._commonURL + 'call/completeOutboundCall'; + _getLanguage_url = this._commonURL + 'beneficiary/getLanguageList'; + _disconnectCall_url = this._commonURL + 'cti/disconnectCall'; + _switchToInbound_url = this._commonURL + 'cti/switchToInbound' + _getRecording_url = this._commonURL + 'call/nueisanceCallHistory'; + _switchToOutbound_url = this._commonURL + 'cti/switchToOutbound'; _getCampaignNames_url = this._commonURL + 'cti/getCampaignNames'; _getCampaignSkills_url = this._commonURL + 'cti/getCampaignSkills'; _transferCall_url = this._commonURL + 'cti/transferCall'; _getBeneficiaryURL = this._commonURL + "call/beneficiaryByCallID"; _getBenOutboundListUrl = this._commonURL + "call/getBenRequestedOutboundCall"; _servicetypesurl = this._commonURL + "service/servicetypes"; - _outEverwellbouncClose_url = this._commonURL + 'everwellCall/completeOutboundCall/'; - _postEverwellFeedback = this._commonURL + 'everwellCall/saveFeedback/'; + _outEverwellbouncClose_url = this._commonURL + 'everwellCall/completeOutboundCall'; + _postEverwellFeedback = this._commonURL + 'everwellCall/saveFeedback'; getWrapupTime = this._commonURL + 'user/role/'; onceOutbound: boolean = false; _everwellCheckAlreadyCalled = this._commonURL + 'everwellCall/checkIfAlreadyCalled'; diff --git a/src/app/services/coService/co_feedback.service.ts b/src/app/services/coService/co_feedback.service.ts index 12f18d9d..51a56f7f 100644 --- a/src/app/services/coService/co_feedback.service.ts +++ b/src/app/services/coService/co_feedback.service.ts @@ -39,8 +39,8 @@ export class CoFeedbackService { _commonUrl = this._config.getCommonBaseURL(); _servicetypesurl = this._commonUrl + 'service/servicetypes'; // _servicetypesurl = this._baseurl + 'api/helpline1097/co/get/servicetypes' - _createFeedbackURL = this._baseurl + 'co/saveBenFeedback/' - _getDesignationsURL = this._baseurl + 'designation/get/' + _createFeedbackURL = this._baseurl + 'co/saveBenFeedback' + _getDesignationsURL = this._baseurl + 'designation/get' // _getFeedbackHistoryByID = this._baseurl + 'services/getFeedbacksHistory' _getFeedbackHistory = this._commonUrl + 'feedback/getFeedbacksList'; constructor( diff --git a/src/app/services/common/feedbacktypes.service.ts b/src/app/services/common/feedbacktypes.service.ts index f0bf3f1a..1341101b 100644 --- a/src/app/services/common/feedbacktypes.service.ts +++ b/src/app/services/common/feedbacktypes.service.ts @@ -39,7 +39,7 @@ export class FeedbackTypes { _getFeedbackTypesURL = this._commonURL + 'feedback/getFeedbackType'; // _getFeedbackSeverityURL = this._commonURL + "feedback/getSeverity"; // _getFeedbackTypesURL = this._helpline104BaseURL + "beneficiary/get/natureOfComplaintTypes"; - _getFeedbackSeverityURL = this._commonURL + 'feedback/getSeverity/'; + _getFeedbackSeverityURL = this._commonURL + 'feedback/getSeverity'; getFeedbackIDTypes_url = this._commonURL + 'feedback/getFeedbackType'; constructor( diff --git a/src/app/services/common/location.service.ts b/src/app/services/common/location.service.ts index 51f18d63..e636af59 100644 --- a/src/app/services/common/location.service.ts +++ b/src/app/services/common/location.service.ts @@ -39,10 +39,10 @@ export class LocationService { _getTalukListURL = this._commonBaseURL + 'location/taluks/'; _getBlockListURL = this._commonBaseURL + 'location/districtblocks/'; _getBranchListURL = this._commonBaseURL + 'location/village/'; - _getInstituteListURL = this._commonBaseURL + 'institute/getInstituteTypes/'; - _getDesignationListURL = this._commonBaseURL + 'institute/getDesignationsByInstitute/'; - _getDirectoriesListURL = this._commonBaseURL + 'directory/getDirectoryV1/'; - _getSubDirectoriesListURL = this._commonBaseURL + 'directory/getSubDirectory/'; + _getInstituteListURL = this._commonBaseURL + 'institute/getInstituteTypes'; + _getDesignationListURL = this._commonBaseURL + 'institute/getDesignationsByInstitute'; + _getDirectoriesListURL = this._commonBaseURL + 'directory/getDirectoryV1'; + _getSubDirectoriesListURL = this._commonBaseURL + 'directory/getSubDirectory'; constructor( private _http: AuthorizationWrapper, private _config: ConfigService diff --git a/src/app/services/common/userbeneficiarydata.service.ts b/src/app/services/common/userbeneficiarydata.service.ts index 6407b05f..8602d951 100644 --- a/src/app/services/common/userbeneficiarydata.service.ts +++ b/src/app/services/common/userbeneficiarydata.service.ts @@ -35,7 +35,7 @@ import { AuthorizationWrapper } from './../../authorization.wrapper'; @Injectable() export class UserBeneficiaryData { _commonBaseURL = this._config.getCommonBaseURL(); - _getUserBeneficaryDataURL = this._commonBaseURL + 'beneficiary/getRegistrationDataV1/'; + _getUserBeneficaryDataURL = this._commonBaseURL + 'beneficiary/getRegistrationDataV1'; _searchBeneficiary = this._commonBaseURL + 'beneficiary/searchBeneficiary'; constructor( private _http: AuthorizationWrapper, diff --git a/src/app/services/loginService/login.service.ts b/src/app/services/loginService/login.service.ts index 600bf6da..d5a42640 100644 --- a/src/app/services/loginService/login.service.ts +++ b/src/app/services/loginService/login.service.ts @@ -37,10 +37,10 @@ export class loginService { _baseURL = this._config.getCommonBaseURL(); admin = this._config.getAdminBaseUrl(); base1097URL = this._config.get1097BaseURL(); - _userAuthURL = this.openBaseUrl + 'user/userAuthenticate/'; + _userAuthURL = this.openBaseUrl + 'user/userAuthenticate'; _userLogoutPreviousSessionURL = this.openBaseUrl + 'user/logOutUserFromConcurrentSession'; - _forgotPasswordURL = this.openBaseUrl + 'user/forgetPassword/'; - _getDetailsByID = this._baseURL + 'user/getUserDetails/'; + _forgotPasswordURL = this.openBaseUrl + 'user/forgetPassword'; + _getDetailsByID = this._baseURL + 'user/getUserDetails'; _validateQuestionAndAnswers = this._baseURL + 'user/validateSecurityQuestionAndAnswer'; _authorisedUser = this.openBaseUrl + 'user/getLoginResponse'; apiVersionUrl = this.base1097URL + "version"; diff --git a/src/app/services/outboundServices/outbound-call-reallocation.service.ts b/src/app/services/outboundServices/outbound-call-reallocation.service.ts index e6cfa739..3ca77f2d 100644 --- a/src/app/services/outboundServices/outbound-call-reallocation.service.ts +++ b/src/app/services/outboundServices/outbound-call-reallocation.service.ts @@ -43,7 +43,7 @@ export class OutboundReAllocationService { private moveToBinURL: string = this._baseurl + 'call/resetOutboundCall'; private everwellMoveToBinURL: string = this._baseurl + 'everwellCall/resetOutboundCall'; private _getEverwelloutboundCallListURL: string = this._baseurl + 'everwellCall/outboundCallList'; - private getEverwellFeedBackDetailsURL: string = this._baseurl + '/everwellCall/getEverwellfeedbackDetails'; + private getEverwellFeedBackDetailsURL: string = this._baseurl + 'everwellCall/getEverwellfeedbackDetails'; private getEverwellGuidelinesURL: string = this._1097baseUrl + 'fetchEverwellGuidelines'; private getbenDetailsOnPhnNoURL: string = this._baseurl + 'everwellCall/outboundCallListWithMobileNumber'; constructor(private _http: AuthorizationWrapper, private _config: ConfigService) { diff --git a/src/app/services/register-services/register-service.ts b/src/app/services/register-services/register-service.ts index 82e2e398..750fa030 100644 --- a/src/app/services/register-services/register-service.ts +++ b/src/app/services/register-services/register-service.ts @@ -34,11 +34,11 @@ import { InterceptedHttp } from './../../http.interceptor'; export class RegisterService { _baseUrl = this._config.getCommonBaseURL(); _helplineURL = this._config.get1097BaseURL(); - _createbeneficiaryurl = this._baseUrl + 'beneficiary/create/'; - _getrelationshipurl = this._baseUrl + 'get/beneficiaryRelationship/'; - _getuserdata = this._baseUrl + 'beneficiary/searchUserByID/'; - _getuserdatabyno = this._baseUrl + 'beneficiary/searchUserByPhone/'; - _startCall = this._baseUrl + 'call/startCall/'; + _createbeneficiaryurl = this._baseUrl + 'beneficiary/create'; + _getrelationshipurl = this._baseUrl + 'get/beneficiaryRelationship'; + _getuserdata = this._baseUrl + 'beneficiary/searchUserByID'; + _getuserdatabyno = this._baseUrl + 'beneficiary/searchUserByPhone'; + _startCall = this._baseUrl + 'call/startCall'; _updatebeneficiaryincall = this._baseUrl + 'call/updatebeneficiaryincall'; _getregistrationdata = this._baseUrl + 'beneficiary/getRegistrationDataV1'; _searchBeneficiaryURL = this._baseUrl + 'beneficiary/searchBeneficiary'; diff --git a/src/app/services/supervisorServices/quality-audit-service.service.ts b/src/app/services/supervisorServices/quality-audit-service.service.ts index 71b3d217..b65dd2a1 100644 --- a/src/app/services/supervisorServices/quality-audit-service.service.ts +++ b/src/app/services/supervisorServices/quality-audit-service.service.ts @@ -56,7 +56,7 @@ export class QualityAuditService { this.getServicesUrl = this.admin_Base_Url + 'm/role/serviceNew'; this.getRolesUrl = this.admin_Base_Url + 'm/role/search'; this.getServiceProviderID_url = this.admin_Base_Url + 'getServiceProviderid'; - this._calltypesurl = this.commonBaseURL + 'call/getCallTypesV1/'; + this._calltypesurl = this.commonBaseURL + 'call/getCallTypesV1'; this.filterCallListUrl = this.commonBaseURL + 'call/filterCallList'; this.getCallSummaryUrl = this._1097baseUrl + 'services/getCaseSheet'; this.getAllAgents_Url = this.admin_Base_Url + 'getAllAgentIds'; diff --git a/src/app/services/update-services/update-service.ts b/src/app/services/update-services/update-service.ts index 4ca379ae..5e384726 100644 --- a/src/app/services/update-services/update-service.ts +++ b/src/app/services/update-services/update-service.ts @@ -34,7 +34,7 @@ export class UpdateService { options = new RequestOptions({ headers: this.headers }); _baseUrl = this._config.getCommonBaseURL(); - _updatebeneficiaryurl = this._baseUrl + 'beneficiary/update/'; + _updatebeneficiaryurl = this._baseUrl + 'beneficiary/update'; constructor( private _http: Http, private _config: ConfigService, From 387f6c58a195035f725518da4c0aaf6762e1932a Mon Sep 17 00:00:00 2001 From: "Burdhi. Shivani" Date: Wed, 20 Mar 2024 18:30:57 +0530 Subject: [PATCH 7/8] 1097 upgradation changes --- src/app/supervisor-grievance/grievance.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/supervisor-grievance/grievance.component.ts b/src/app/supervisor-grievance/grievance.component.ts index 66217f8b..ffc57437 100644 --- a/src/app/supervisor-grievance/grievance.component.ts +++ b/src/app/supervisor-grievance/grievance.component.ts @@ -356,7 +356,7 @@ export class grievanceComponent implements OnInit { feedback.feedbackRequests[feedback.feedbackRequests.length - 1].feedbackSupSummary : feedback.feedback ); // this.feedbackForm.controls.feedbackSupSummary.setValue(feedback.feedback); - this.feedbackForm.controls.beneficiaryName.setValue(feedback.mUser.firstName + " " + (feedback.mUser.lastName ? feedback.mUser.lastName : "")); + this.feedbackForm.controls.beneficiaryName.setValue(feedback.muser.firstName + " " + (feedback.muser.lastName ? feedback.muser.lastName : "")); // this.feedbackForm.controls.createdDate.setValue(feedback.CreatedDate); this.feedbackForm.controls.feedbackDate.setValue(new Date(feedback.createdDate).toLocaleDateString('en-in')); this.feedbackForm.controls.feedbackTypeName.setValue(feedback.feedbackType.feedbackTypeName); From 9dad95f5f764281f8db01215202de69a9e6aa9b9 Mon Sep 17 00:00:00 2001 From: "Burdhi. Shivani" Date: Fri, 3 May 2024 11:49:43 +0530 Subject: [PATCH 8/8] minor issue change --- .../supervisor-training-resources.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/supervisor-training-resources/supervisor-training-resources.component.ts b/src/app/supervisor-training-resources/supervisor-training-resources.component.ts index cc2fc3fd..c568b296 100644 --- a/src/app/supervisor-training-resources/supervisor-training-resources.component.ts +++ b/src/app/supervisor-training-resources/supervisor-training-resources.component.ts @@ -542,7 +542,7 @@ else{ this.error2 = false; this.invalid_file_flag = false; this.invalidFileNameFlag=false; - this.file = undefined; + // this.file = undefined; if (this.file && this.fileContent) { editedObj = { 'providerServiceMapID': this.providerServiceMapID,