|
@@ -338,6 +338,18 @@ function(){
|
|
|
filter.userId=currentUser.UserId;
|
|
|
filter.sites=currentSites;
|
|
|
|
|
|
+
|
|
|
+ //make a formStatus map
|
|
|
+ let formStatusMap=new Object();
|
|
|
+ this.print(fName+' formStatusMap: '+config.formConfig.formStatusg.rows.length);
|
|
|
+ for (let i=0;i<config.formConfig.formStatusg.rows.length;i++){
|
|
|
+ let fs=config.formConfig.formStatusg.rows[i];
|
|
|
+ let s=fs['Key'];
|
|
|
+ formStatusMap[s]=fs;
|
|
|
+ this.print(fName+' formStatusMap adding '+s);
|
|
|
+ }
|
|
|
+ this.print(fName+' formStatusMap '+Object.keys(formStatusMap).length+'/'+config.formConfig.formStatusg.rows.length);
|
|
|
+
|
|
|
//browse through forms
|
|
|
for (let i=0;i<dataForms.length;i++){
|
|
|
|
|
@@ -376,7 +388,15 @@ function(){
|
|
|
//
|
|
|
|
|
|
let fbox=config.document.createElement("div");
|
|
|
- fbox.classList.add("box","gold");
|
|
|
+ let color='gold';
|
|
|
+ this.print(fName+' status '+entry.FormStatus+' obj '+formStatusMap[entry.FormStatus]);
|
|
|
+ if (formStatusMap[entry.FormStatus]){
|
|
|
+ let c=formStatusMap[entry.FormStatus]['color'];
|
|
|
+ if (c) color=c;
|
|
|
+ this.print(fName+' status '+entry.FormStatus+' color '+c);
|
|
|
+ }
|
|
|
+
|
|
|
+ fbox.classList.add("box",color);
|
|
|
|
|
|
let fp=config.document.createElement("p");
|
|
|
let id=entry.entryId;
|
|
@@ -468,8 +488,9 @@ function(){
|
|
|
|
|
|
}
|
|
|
if (config.role=='crfManager')
|
|
|
+ this.print('Skipping form generator');
|
|
|
//need formGenerator.js
|
|
|
- formGenerator.addFormGenerator(this);
|
|
|
+ //formGenerator.addFormGenerator(this);
|
|
|
|
|
|
}
|
|
|
|