IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 40826 for trunk/ippMonitor


Ignore:
Timestamp:
Jul 3, 2019, 2:01:34 PM (7 years ago)
Author:
cclin33
Message:

add detRunSummary.accept value and add more WHERE constrains

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/def/detRunActive.d

    r39498 r40826  
    1 TABLE detRun
     1TABLE detRun LEFT JOIN detRunSummary using(det_id)
    22TITLE Active Detrend Runs
    33FILE  detRunActive.php
     
    66# the following WHERE clauses are added to all queries joined by AND
    77WHERE detRun.state != 'drop'
     8WHERE detRun.state != 'ignore'
     9WHERE detRun.state !='wait'
     10WHERE detRun.mode != 'verify'
    811
    9 ARGS  ARG1 detRunSummary.det_id=$det_id
     12ARGS  ARG1 detRunSummary.det_id=$detRun.det_id
    1013
    11 ARGS  ARG2 detInputExp.det_id=$det_id
    12 ARGS  ARG2 detInputExp.iteration=$iteration
     14ARGS  ARG2 detInputExp.det_id=$detRun.det_id
     15ARGS  ARG2 detInputExp.iteration=$detRun.iteration
    1316
    14 ARGS  ARG3 detProcessedExp.det_id=$det_id
     17ARGS  ARG3 detProcessedExp.det_id=$detRun.det_id
    1518
    16 ARGS  ARG4 detResidExp.det_id=$det_id
    17 ARGS  ARG4 detResidExp.iteration=$iteration
     19ARGS  ARG4 detResidExp.det_id=$detRun.det_id
     20ARGS  ARG4 detResidExp.iteration=$detRun.iteration
    1821
    19 ARGS  ARG5 detStackedImfile.det_id=$det_id
    20 ARGS  ARG6 detNormalizedImfile.det_id=$det_id
    21 ARGS  ARG7 detRegisteredImfile.det_id=$det_id
     22ARGS  ARG5 detStackedImfile.det_id=$detRun.det_id
     23ARGS  ARG6 detNormalizedImfile.det_id=$detRun.det_id
     24ARGS  ARG7 detRegisteredImfile.det_id=$detRun.det_id
    2225
    2326#     field       size  format  name         show       link to                   extras
    24 FIELD det_id,        5, %s,     det ID,      value,     detRunSummary.php,        ARG1
    25 FIELD iteration,     3, %s,     iter
     27FIELD detRun.det_id,        5, %s,     det ID,      value,     detRunSummary.php,        ARG1
     28FIELD detRunSummary.accept,        5, %s,     accept
     29FIELD detRun.iteration,     3, %s,     iter
    2630FIELD det_type,     12, %s,     type
    2731FIELD state,         5, %s,     state
     
    4852TD_CLASS list_off $state == 'drop'
    4953TD_CLASS list_run $state == 'run'
     54
Note: See TracChangeset for help on using the changeset viewer.