File tree Expand file tree Collapse file tree
src/org/labkey/sivstudies/query Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 <tables xmlns =" http://labkey.org/data/xml" >
44 <table tableName =" chemistryPivot" tableDbType =" TABLE" >
55 <tableTitle >Chemistry Results</tableTitle >
6-
6+ < javaCustomizer class = " org.labkey.sivstudies.query.SivStudiesCustomizer " />
77 <columns >
88 <column columnName =" Id" >
99 <conceptURI >http://cpas.labkey.com/Study#ParticipantId</conceptURI >
Original file line number Diff line number Diff line change 33 <tables xmlns =" http://labkey.org/data/xml" >
44 <table tableName =" hematologyPivot" tableDbType =" TABLE" >
55 <tableTitle >Hematology Results</tableTitle >
6-
6+ < javaCustomizer class = " org.labkey.sivstudies.query.SivStudiesCustomizer " />
77 <columns >
88 <column columnName =" Id" >
99 <conceptURI >http://cpas.labkey.com/Study#ParticipantId</conceptURI >
Original file line number Diff line number Diff line change @@ -43,6 +43,13 @@ public void customize(TableInfo tableInfo)
4343 {
4444 performDatasetCustomization (ds );
4545 }
46+ else if ("chemistryPivot" .equalsIgnoreCase (tableInfo .getName ()) | "hematologyPivot" .equalsIgnoreCase (tableInfo .getName ()))
47+ {
48+ if (tableInfo instanceof AbstractTableInfo ati )
49+ {
50+ appendDemographicsColumns (ati );
51+ }
52+ }
4653 }
4754
4855 public void performDatasetCustomization (DatasetTable ds )
You can’t perform that action at this time.
0 commit comments