sort worklist by patient name, then study date
This commit is contained in:
parent
aa5e23cf8e
commit
60afb178e8
@ -2,6 +2,6 @@ Studies = new Mongo.Collection(null);
|
||||
|
||||
Template.worklistResult.helpers({
|
||||
studies : function() {
|
||||
return Studies.find();
|
||||
return Studies.find({}, {sort: {patientName : 1, studyDate : 1}});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user