* @return
*/
public static Set<Order> standardRegimenToDrugOrders(RegimenSuggestion rs, Date startDate, Patient patient){
Set<Order> ret = new HashSet<Order>();
if (rs != null){
OrderService orderService = Context.getOrderService();
ConceptService conceptService = Context.getConceptService();
for (DrugSuggestion ds : rs.getDrugComponents()){
DrugOrder dor = new DrugOrder();
Drug drug = Context.getConceptService().getDrugByNameOrId(ds.getDrugId());
if (drug == null)