Sfoglia il codice sorgente

Adding crfManagers as a new category to view completed forms and perform actions like printing and resurecting

Andrej Studen 2 anni fa
parent
commit
c2eb640cc9

+ 48 - 0
views/completedPortal.html

@@ -0,0 +1,48 @@
+<style>
+.box{
+width:120px;
+height:120px;
+}
+
+.gold{ background-color: gold; }
+.red{ background-color: red; }
+
+.large{
+	font-size: 30px;
+}
+
+.center{
+	text-align: center;
+}
+
+.stretch{
+	padding: 50px;
+}
+</style>
+
+<table cellspacing="2" cellpadding="5" border="0">
+<tr><td>Version: </td><td><strong id="version">0.0</strong></td></tr>
+</table>
+
+
+<div id="formDiv">
+</div>
+
+<div id="debugDiv" style="display:block">
+	<h3>Debug notes</h3>
+	<textarea cols="95" rows="5" id="formStatus">
+	</textarea>
+</div>
+
+<script type "text/javascript">
+window.onload=init;
+function init(){
+	config.document=document;
+	config.role="crfManager";
+	config.div="formDiv";
+	config.debugArea="formStatus";
+	clear();
+	print("XStarting");
+	generateFormArray();
+}
+</script>

+ 9 - 0
views/completedPortal.view.xml

@@ -0,0 +1,9 @@
+<view xmlns="http://labkey.org/data/xml/view" title="Completed CRF Portal">
+	<dependencies>
+			<dependency path="crf/formPortal.js"/>
+		</dependencies>
+	<permissions>
+		<permission name="login"/>
+	</permissions>
+
+</view>

+ 4 - 0
views/completedPortal.webpart.xml

@@ -0,0 +1,4 @@
+<webpart xlmns="http://labkey.org/data/xml/webpart"
+	title="CRF Completed Portal">
+	<view name="completedPortal"/>
+</webpart>

+ 4 - 0
web/crf/formPortal.js

@@ -180,6 +180,8 @@ function afterSettings(data){
 	queryArray.push(makeQuery('config','crfMonitors','crfMonitors',[]));
 	//crfSponsors
 	queryArray.push(makeQuery('config','crfSponsors','crfSponsors',[]));
+	//crfManagers
+	queryArray.push(makeQuery('config','crfManagers','crfManagers',[]));
 	//FormStatus
 	queryArray.push(makeQuery('config','FormStatus','formStatusg',[]));
 	//site
@@ -212,6 +214,7 @@ function addStudyData(){
 
 
 function fcontinue(){
+   let fName='[fcontinue]';
 	let formConfig=config.formConfig;
 
 	print("Number of study data entries: "+formConfig.studyData.rows.length);
@@ -246,6 +249,7 @@ function fcontinue(){
    //check for users that fit the role, 
    //fRows lists all users for role
 	let fRows=config.formConfig[fList].rows;
+   print(fName+' candidates: '+fRows.length)
 	//current user must be in the list
 	
 	let currentUserRoles=new Array();