Soft checks: Difference between revisions

Created page with "Some of our cross checks are implemented as "soft checks", where the collector can still send data even if a check is triggered. These are for scenarios where a trigger usually means that something went wrong, but there are scenarios where the entry is actually correct. == When multiple soft checks trigger, only one will be visible == One of the problems with our current implementation is that, if there is more than one triggered soft check, only one will be visible. T..."
 
Line 6: Line 6:
== List of soft checks ==
== List of soft checks ==
{{#cargo_query:
{{#cargo_query:
tables=DataIntegrityChecks,Discussions,_pageData
tables=DataIntegrityChecks
|join on=DataIntegrityChecks._pageName=_pageData._pageName,DataIntegrityChecks._pageName=Discussions._pageName
|fields=DataIntegrityChecks._pageName=check, Status, Timing, Summary
|fields=
|where=Firmness="soft check" and Status not in ("declined", "not feasible", "retired")
CONCAT("\[\{\{fullurl:",DataIntegrityChecks._pageName, "{{!}}action=edit\}\} edit]")=edit,
|order by=_pageName
DataIntegrityChecks._pageName=page, Coding, Status, Timing, Firmness, Summary, question, who
|where=Firmness="soft check"
|order by=question
|limit=1000
|limit=1000
|offset=some number
|default=no soft checks found
|default=Nothing found
|format=dynamic table
|format=dynamic table
|rows per page=1000
|rows per page=1000
}}
}}


== Related articles ==  
== Related articles ==