MET08THFTIRQS408M - v2.47.0 - Ready to

test ISQ query
This commit is contained in:
2022-11-28 11:31:41 -07:00
parent cb73fdd16b
commit 68bbb18ce8
40 changed files with 767 additions and 154 deletions

26
Adaptation/.vscode/Reactor.js vendored Normal file
View File

@ -0,0 +1,26 @@
// (self.length != 0) ?
// self :
// (getContextData('2', 'cds.PROCESS_JOBID', '') == '-') ?
// self :
// getContextData('2', 'cds.PROCESS_JOBID', '')
getValue(self, self.length, $('dcp.BIORAD2/QS408M/MesEntity', ''), $('dcp.BIORAD2/QS408M/Recipe', ''), getContextData('2', 'cds.PROCESS_JOBID', ''));
function getValue(value, length, mesEntity, recipe, processJobId) {
if (recipe.toUpperCase() === 'T-LOW')
return mesEntity;
else if (recipe.toUpperCase() === 'T-MID')
return mesEntity;
else if (recipe.toUpperCase() === 'T-HIGH')
return mesEntity;
else if (recipe.toUpperCase() === 'T_LOW')
return mesEntity;
else if (recipe.toUpperCase() === 'T_MID')
return mesEntity;
else if (recipe.toUpperCase() === 'T_HIGH')
return mesEntity;
else if (length !== 0 || processJobId === '-')
return value;
else
return processJobId;
}