浏览代码

Adding infrastructure for generation object to be able to send email by setting mailRecipient, subject and addData in actionParameters of specialFields

Andrej Studen 2 年之前
父节点
当前提交
6001583793
共有 2 个文件被更改,包括 22 次插入2 次删除
  1. 12 0
      web/crfTecant/crfVisit.js
  2. 10 2
      web/crfTecant/generateRegistration.js

+ 12 - 0
web/crfTecant/crfVisit.js

@@ -1182,6 +1182,18 @@ function addSpecialFieldRow(tb,specFieldSetup,setup){
       if (ro) return;
       config.print=print;
       let gc=getGenerationObject(config,q,setup.getInputId(fieldName));
+      if ('mailRecipient' in q){
+         gc.callback=function(data){sendEmail(data,q['mailRecipient'],doNothing,q['subject']);};
+      }
+      if ("addData" in q){
+         vars=q["addData"].split(',');
+         gc.addData=new Array();
+         for (let v in vars){
+            let s=vars[v]
+            gc.addData[s]=config.formConfig.crfEntry[s];
+            print(fName+" addData ["+s+"]: "+gc.addData[s]);
+         }
+      }
       let row=tb.insertRow();
       let cell=config.document.createElement('th');
       row.appendChild(cell);

+ 10 - 2
web/crfTecant/generateRegistration.js

@@ -17,7 +17,7 @@ function insertRows(rows){
    iRows.schemaName=this.schemaName;
    iRows.queryName=this.queryName;
    iRows.rows=rows;
-   iRows.success=function(){gObj.doNothing();};
+   iRows.success=function(data){gObj.callback(data);};
    LABKEY.Query.insertRows(iRows);
 }
  
@@ -43,6 +43,11 @@ function generateObjectAtKey(k){
    let row=new Object();
    row['Key']=k;
    row[this.codeField]=regCode;
+   if ("addData" in this){
+      for (let q in this.addData){
+         row[q]=this.addData[q];
+      }
+   }
    return row;
 }
 
@@ -65,7 +70,8 @@ function generateId(data){
    this.insertRows(rows);
 }
 
-function doNothing(data){
+function doNothing1(data){
+   this.config.print(this.fName+": doNothing() called");
 }
 
 function fail(errorInfo){
@@ -119,6 +125,8 @@ function getGenerationObject(config,qPar,outputId){
    gObj.inspect=inspect;
    gObj.fName="[generateRegistration]";
    gObj.fail=fail;
+   gObj.doNothing1=doNothing1;
+   gObj.callback=gObj.doNothing1;
    //should set codeBase and elementId after initialization
    return gObj;
 }