Package | Description |
---|---|
org.openmrs |
These classes represent the core domain objects for the OpenMRS project.
|
org.openmrs.api |
The primary OpenMRS API interfaces.
|
org.openmrs.api.db |
OpenMRS database layer interfaces.
|
org.openmrs.api.db.hibernate |
Resources for Hibernate ORM.
|
org.openmrs.api.impl | |
org.openmrs.parameter |
Modifier and Type | Method and Description |
---|---|
CareSetting |
Order.getCareSetting()
Gets the careSetting
|
Modifier and Type | Method and Description |
---|---|
void |
Order.setCareSetting(CareSetting careSetting)
Sets the careSetting
|
Modifier and Type | Method and Description |
---|---|
CareSetting |
OrderContext.getCareSetting() |
CareSetting |
OrderService.getCareSetting(Integer careSettingId)
Retrieve care setting
|
CareSetting |
OrderService.getCareSettingByName(String name)
Gets the CareSetting with the specified name
|
CareSetting |
OrderService.getCareSettingByUuid(String uuid)
Gets the CareSetting with the specified uuid
|
Modifier and Type | Method and Description |
---|---|
List<CareSetting> |
OrderService.getCareSettings(boolean includeRetired)
Gets all non retired CareSettings if includeRetired is set to true otherwise retired ones are
included too
|
Modifier and Type | Method and Description |
---|---|
List<Order> |
OrderService.getActiveOrders(Patient patient,
OrderType orderType,
CareSetting careSetting,
Date asOfDate)
Gets all active orders for the specified patient matching the specified CareSetting,
OrderType as of the specified date.
|
List<Order> |
OrderService.getActiveOrders(Patient patient,
Visit visit,
OrderType orderType,
CareSetting careSetting,
Date asOfDate) |
List<Order> |
OrderService.getOrders(Patient patient,
CareSetting careSetting,
OrderType orderType,
boolean includeVoided)
Gets all Orders that match the specified parameters excluding discontinuation orders
|
List<Order> |
OrderService.getOrders(Patient patient,
Visit visit,
CareSetting careSetting,
OrderType orderType,
boolean includeVoided) |
void |
OrderContext.setCareSetting(CareSetting careSetting) |
Modifier and Type | Method and Description |
---|---|
CareSetting |
OrderDAO.getCareSetting(Integer careSettingId)
Get care setting by type
|
CareSetting |
OrderDAO.getCareSettingByName(String name) |
CareSetting |
OrderDAO.getCareSettingByUuid(String uuid) |
Modifier and Type | Method and Description |
---|---|
List<CareSetting> |
OrderDAO.getCareSettings(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
List<Order> |
OrderDAO.getActiveOrders(Patient patient,
List<OrderType> orderTypes,
CareSetting careSetting,
Date asOfDate) |
List<Order> |
OrderDAO.getActiveOrders(Patient patient,
Visit visit,
List<OrderType> orderTypes,
CareSetting careSetting,
Date asOfDate) |
List<Order> |
OrderDAO.getOrders(Patient patient,
CareSetting careSetting,
List<OrderType> orderTypes,
boolean includeVoided,
boolean includeDiscontinuationOrders) |
List<Order> |
OrderDAO.getOrders(Patient patient,
Visit visit,
CareSetting careSetting,
List<OrderType> orderTypes,
boolean includeVoided,
boolean includeDiscontinuationOrders) |
Modifier and Type | Method and Description |
---|---|
CareSetting |
HibernateOrderDAO.getCareSetting(Integer careSettingId) |
CareSetting |
HibernateOrderDAO.getCareSettingByName(String name) |
CareSetting |
HibernateOrderDAO.getCareSettingByUuid(String uuid) |
Modifier and Type | Method and Description |
---|---|
List<CareSetting> |
HibernateOrderDAO.getCareSettings(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
List<Order> |
HibernateOrderDAO.getActiveOrders(Patient patient,
List<OrderType> orderTypes,
CareSetting careSetting,
Date asOfDate) |
List<Order> |
HibernateOrderDAO.getActiveOrders(Patient patient,
Visit visit,
List<OrderType> orderTypes,
CareSetting careSetting,
Date asOfDate) |
List<Order> |
HibernateOrderDAO.getOrders(Patient patient,
CareSetting careSetting,
List<OrderType> orderTypes,
boolean includeVoided,
boolean includeDiscontinuationOrders) |
List<Order> |
HibernateOrderDAO.getOrders(Patient patient,
Visit visit,
CareSetting careSetting,
List<OrderType> orderTypes,
boolean includeVoided,
boolean includeDiscontinuationOrders) |
Modifier and Type | Method and Description |
---|---|
CareSetting |
OrderServiceImpl.getCareSetting(Integer careSettingId) |
CareSetting |
OrderServiceImpl.getCareSettingByName(String name) |
CareSetting |
OrderServiceImpl.getCareSettingByUuid(String uuid) |
Modifier and Type | Method and Description |
---|---|
List<CareSetting> |
OrderServiceImpl.getCareSettings(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
List<Order> |
OrderServiceImpl.getActiveOrders(Patient patient,
OrderType orderType,
CareSetting careSetting,
Date asOfDate) |
List<Order> |
OrderServiceImpl.getActiveOrders(Patient patient,
Visit visit,
OrderType orderType,
CareSetting careSetting,
Date asOfDate) |
List<Order> |
OrderServiceImpl.getOrders(Patient patient,
CareSetting careSetting,
OrderType orderType,
boolean includeVoided) |
List<Order> |
OrderServiceImpl.getOrders(Patient patient,
Visit visit,
CareSetting careSetting,
OrderType orderType,
boolean includeVoided) |
Modifier and Type | Method and Description |
---|---|
CareSetting |
OrderSearchCriteria.getCareSetting() |
Modifier and Type | Method and Description |
---|---|
OrderSearchCriteriaBuilder |
OrderSearchCriteriaBuilder.setCareSetting(CareSetting careSetting) |
Constructor and Description |
---|
OrderSearchCriteria(Patient patient,
CareSetting careSetting,
Collection<Concept> concepts,
Collection<OrderType> orderTypes,
Date activatedOnOrBeforeDate,
Date activatedOnOrAfterDate,
boolean isStopped,
Date autoExpireOnOrBeforeDate,
Date canceledOrExpiredOnOrBeforeDate,
Order.Action action,
Order.FulfillerStatus fulfillerStatus,
Boolean includeNullFulfillerStatus,
boolean excludeCanceledAndExpired,
boolean excludeDiscontinueOrders,
boolean includeVoided)
Deprecated.
|
OrderSearchCriteria(Patient patient,
CareSetting careSetting,
Collection<Concept> concepts,
Collection<OrderType> orderTypes,
String accessionNumber,
String orderNumber,
Date activatedOnOrBeforeDate,
Date activatedOnOrAfterDate,
boolean isStopped,
Date autoExpireOnOrBeforeDate,
Date canceledOrExpiredOnOrBeforeDate,
Order.Action action,
Order.FulfillerStatus fulfillerStatus,
Boolean includeNullFulfillerStatus,
boolean excludeCanceledAndExpired,
boolean excludeDiscontinueOrders,
boolean includeVoided)
Instead of calling this constructor directly, it is recommended to use
OrderSearchCriteriaBuilder . |
OrderSearchCriteria(Patient patient,
CareSetting careSetting,
Collection<Concept> concepts,
Collection<OrderType> orderTypes,
String accessionNumber,
String orderNumber,
Date activatedOnOrBeforeDate,
Date activatedOnOrAfterDate,
boolean isStopped,
Date autoExpireOnOrBeforeDate,
Date canceledOrExpiredOnOrBeforeDate,
Order.Action action,
Order.FulfillerStatus fulfillerStatus,
Boolean includeNullFulfillerStatus,
boolean excludeCanceledAndExpired,
boolean excludeDiscontinueOrders,
boolean includeVoided,
Visit visit) |
Copyright © 2024 OpenMRS Inc.. All rights reserved.