sort worklist by patient name, then study date

This commit is contained in:
radicalrob 2015-11-10 09:16:14 -05:00
parent aa5e23cf8e
commit 60afb178e8

View File

@ -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}});
}
});
});