|
Revision 5779, 1.6 kB
(checked in by tmdugan, 2 months ago)
|
-- chica
* updated rule tester to search on mrn instead of patient_id
* added additional error handling
* combined statistics tables into one
* fixed problems with LogicChicaObsDAO
* updated some rules
|
| Line | |
|---|
| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
<!DOCTYPE hibernate-mapping PUBLIC |
|---|
| 3 |
"-//Hibernate/Hibernate Mapping DTD 3.0//EN" |
|---|
| 4 |
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" > |
|---|
| 5 |
|
|---|
| 6 |
<hibernate-mapping package="org.openmrs.module.chica"> |
|---|
| 7 |
|
|---|
| 8 |
<class name="org.openmrs.module.chica.hibernateBeans.Statistics" table="chica_statistics"> |
|---|
| 9 |
|
|---|
| 10 |
<id name="statisticsId" type="java.lang.Integer" column="statistics_id"> |
|---|
| 11 |
<generator class="native" /> |
|---|
| 12 |
</id> |
|---|
| 13 |
|
|---|
| 14 |
<property name="patientId" type="java.lang.Integer" column="patient_id" /> |
|---|
| 15 |
<property name="formName" type="java.lang.String" column="form_name" /> |
|---|
| 16 |
<property name="ruleId" type="java.lang.Integer" column="rule_id" /> |
|---|
| 17 |
<property name="formInstanceId" type="java.lang.Integer" column="form_instance_id" /> |
|---|
| 18 |
<property name="encounterId" type="java.lang.Integer" column="encounter_id" /> |
|---|
| 19 |
<property name="position" type="java.lang.Integer" column="position" /> |
|---|
| 20 |
<property name="answer" type="java.lang.String" column="answer" /> |
|---|
| 21 |
<property name="answerErr" type="java.lang.String" column="answer_err" /> |
|---|
| 22 |
<property name="printedTimestamp" type="java.util.Date" column="printed_timestamp" /> |
|---|
| 23 |
<property name="scannedTimestamp" type="java.util.Date" column="scanned_timestamp" /> |
|---|
| 24 |
<property name="priority" type="java.lang.Integer" column="priority" /> |
|---|
| 25 |
<property name="obsvId" type="java.lang.Integer" column="obsv_id" /> |
|---|
| 26 |
<property name="languageResponse" type="java.lang.String" column="language_response" /> |
|---|
| 27 |
<property name="ageAtVisit" type="java.lang.String" column="age_at_visit" /> |
|---|
| 28 |
|
|---|
| 29 |
</class> |
|---|
| 30 |
|
|---|
| 31 |
</hibernate-mapping> |
|---|