|
@@ -2059,17 +2059,23 @@ function sendEmail(data,recipient='crfEditor',cb=redirect,subj='Form submitted')
|
|
print(cvar+' set to '+st[cvar]);
|
|
print(cvar+' set to '+st[cvar]);
|
|
if (st[cvar]=='FALSE'){
|
|
if (st[cvar]=='FALSE'){
|
|
print('Skipping sending emails');
|
|
print('Skipping sending emails');
|
|
- redirect();
|
|
|
|
|
|
+ cb();
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ if (recpient==null){
|
|
|
|
+ print('Skipping sending emails w/ no recipients');
|
|
|
|
+ cb();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
print('send email '+data.rows.length);
|
|
print('send email '+data.rows.length);
|
|
let crf=data.rows[0]['entryId'];
|
|
let crf=data.rows[0]['entryId'];
|
|
let formId=data.rows[0]['Form'];
|
|
let formId=data.rows[0]['Form'];
|
|
let link=LABKEY.ActionURL.getBaseURL();
|
|
let link=LABKEY.ActionURL.getBaseURL();
|
|
link+=LABKEY.ActionURL.getContainer();
|
|
link+=LABKEY.ActionURL.getContainer();
|
|
- link+='/crf-visit.view?';
|
|
|
|
|
|
+ link+='/crf_tecant-visit.view?';
|
|
link+='entryId='+crf;
|
|
link+='entryId='+crf;
|
|
link+='&formId='+formId;
|
|
link+='&formId='+formId;
|
|
link+='&role='+recipient;
|
|
link+='&role='+recipient;
|