Skip to content

Commit 10f8cd4

Browse files
Merge 24.7 to 24.11
2 parents 4b50f30 + 8763d8a commit 10f8cd4

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

ehr/api-src/org/labkey/api/ehr/buttons/MarkCompletedButton.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected String getJsHandler(TableInfo ti)
8585
// but the dataset-specific query.xml file will apply a different format to the enddate column. as a result, defer creating the JS handler as long as we can.
8686
ColumnInfo col = ti.getColumn("enddate");
8787
String xtype = "datefield";
88-
if (!_forceDateOnlyField && col != null && col.getFormat() != null && col.getFormat().contains("HH"))
88+
if (!_forceDateOnlyField && col != null && col.getFormat() != null && (col.getFormat().contains("HH") || col.getFormat().equals("DateTime")))
8989
xtype = "xdatetime";
9090

9191
String pkColName = null;

ehr/resources/web/ehr/DataEntryUtils.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,6 @@ EHR.DataEntryUtils = new function(){
669669
if (EHR._observationTypesStore)
670670
return EHR._observationTypesStore;
671671

672-
//TODO: this really belongs in ONPRC_EHR module, not here. We should also move ClinicalObservationsGrid/EditingPlugin as well
673672
EHR._observationTypesStore = Ext4.create('LABKEY.ext4.data.Store', {
674673
type: 'labkey-store',
675674
schemaName: 'ehr',

ehr/src/org/labkey/ehr/pipeline/GeneticCalculationsImportTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public RecordedActionSet run() throws PipelineJobException
144144
int hourOfDay = Calendar.getInstance().get(Calendar.HOUR_OF_DAY);
145145
if (!"true".equals(paramVal) && hourOfDay >= 7 && hourOfDay <= 19)
146146
{
147-
throw new PipelineJobException("The genetics import task should only run outside of business hours. Either wait for the next scheduled job or retry this task before 7AM or after 6PM. You can also run this manually from the EHR admin page.");
147+
throw new PipelineJobException("The genetics import task should only run outside of business hours. Either wait for the next scheduled job or retry this task before 7AM or after 8PM. You can also run this manually from the EHR admin page.");
148148
}
149149
else
150150
{

0 commit comments

Comments
 (0)