Browse Source

Adding allowLocalIdChange flag that allows local id modification after registration has been completed

Andrej Studen 1 year ago
parent
commit
8b354f8b16
1 changed files with 6 additions and 1 deletions
  1. 6 1
      web/crf/participantIdManager.js

+ 6 - 1
web/crf/participantIdManager.js

@@ -415,7 +415,12 @@ function(){
    this.resetButton.style.display='none';
    if (!studyId) return;
    let originalMode=this.getMode();
-   if (originalMode=='LOCAL') this.resetButton.style.display='block';
+   if (originalMode=='LOCAL' && this.setup.getSettings("allowLocalIdChange")) {
+      this.resetButton.style.display='block';
+   }
+   else{
+      this.setReadonly('LOCAL');
+   }
    this.setReadonly('STUDY');
    this.setMode("STUDY");
    this.setLabelMode('STUDY',this.setup.getParticipantLabel(this.data.getCrfEntry()));