You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there are multiple violations for a scan in the mri_violations module, they can not be resolved. The page reloads without changing the data.
The hash for identifying the violation in the _process function is built as md5(concat_WS( ':',MincFile,PatientName,SeriesUID,TimeRun)). This is used in a pselectOne while trying to get the primary key for the resolution table. However, the values concatenated are not enough to uniquely identify a row if a scan has multiple violations, resulting in the pselectOne failing because of the multiple rows returned.
The text was updated successfully, but these errors were encountered:
When there are multiple violations for a scan in the mri_violations module, they can not be resolved. The page reloads without changing the data.
The hash for identifying the violation in the
_process
function is built asmd5(concat_WS( ':',MincFile,PatientName,SeriesUID,TimeRun))
. This is used in a pselectOne while trying to get the primary key for the resolution table. However, the values concatenated are not enough to uniquely identify a row if a scan has multiple violations, resulting in thepselectOne
failing because of the multiple rows returned.The text was updated successfully, but these errors were encountered: