Skip to content
Snippets Groups Projects
Commit fb0c30ee authored by kaloyane's avatar kaloyane
Browse files

[LMS-2538] requested by Tomek: hide analysis procedures from the "listAll" method too

SVN: 22983
parent c09e9db6
No related branches found
No related tags found
No related merge requests found
...@@ -320,7 +320,8 @@ public interface IScreeningQuery extends BaseQuery ...@@ -320,7 +320,8 @@ public interface IScreeningQuery extends BaseQuery
+ " from samples wells " + " from samples wells "
+ " join samples plates on wells.samp_id_part_of = plates.id " + " join samples plates on wells.samp_id_part_of = plates.id "
+ " where plates.expe_id = exp.id) "; + " where plates.expe_id = exp.id) ";
@Select(sql = ANALYSIS_PROCEDURE_SELECT)
@Select(sql = ANALYSIS_PROCEDURE_SELECT + " and " + AT_LEAST_ONE_WELL_EXISTS)
public List<AnalysisProcedureResult> listAllAnalysisProcedures(); public List<AnalysisProcedureResult> listAllAnalysisProcedures();
@Select(sql = ANALYSIS_PROCEDURE_SELECT + " and exp.id = ?{1} and " + AT_LEAST_ONE_WELL_EXISTS) @Select(sql = ANALYSIS_PROCEDURE_SELECT + " and exp.id = ?{1} and " + AT_LEAST_ONE_WELL_EXISTS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment