Skip to content

Commit def8696

Browse files
Merge 23.7 to 23.11
2 parents f3f8ba0 + eeb412a commit def8696

3 files changed

Lines changed: 4 additions & 9 deletions

File tree

onprc_ehr/resources/queries/study/ExamVetPE/.qview.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
<column name="p2date"/>
3939
<column name="p2"/>
4040
<column name="id/assignedVet/assignedVet"/>
41+
<column name="Id/activeFlags/Alert::valueField"/>
42+
<column name="Id/MostRecentTB/MonthsSinceLastTB"/>
4143
</columns>
4244
<sorts>
4345
<sort column="Id/curLocation/room"/>

onprc_ehr/resources/queries/study/pregnancyGestation.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ INNER JOIN ehr_lookups.species p on (m.Id.DataSet.demographics.species = p.commo
2626
And m.date in (select max(s.date) AS d from study.pregnancyConfirmation s where s.id = m.id)
2727
And m.Id.DataSet.demographics.calculated_status.code = 'Alive'
2828
And p.Gestation is not null
29-
And m.outcome.birthDate is null
29+
And m.outcome.birthDate is null And (Select count(*) from ehr.snomed_tags stg where stg.code.code = 'F-30980' And stg.id = m.id
30+
And stg.date >= m.date ) = 0
3031
And m.gestation_days is not null

onprc_ehr/src/org/labkey/onprc_ehr/dataentry/PathologyTissuesFormType.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,6 @@ public PathologyTissuesFormType(DataEntryFormContext ctx, Module owner)
9494
addClientDependency(ClientDependency.supplierFromPath("onprc_ehr/form/field/PathologyTissuesField.js"));
9595
}
9696

97-
@Override
98-
protected List<String> getMoreActionButtonConfigs()
99-
{
100-
List<String> ret = super.getMoreActionButtonConfigs();
101-
ret.add("ENTERDEATH_FOR_TISSUES");
102-
103-
return ret;
104-
}
10597

10698
@Override
10799
protected boolean canInsert()

0 commit comments

Comments
 (0)