Advertisement
Apurv

config.xml

May 16th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE module PUBLIC "-//OpenMRS//DTD OpenMRS Config 1.2//EN" "http://resources.openmrs.org/doctype/config-1.2.dtd">
  3.  
  4. <module configVersion="1.2">
  5.  
  6. <!-- Base Module Properties -->
  7. <id>@MODULE_ID@</id>
  8. <name>@MODULE_NAME@</name>
  9. <version>@MODULE_VERSION@</version>
  10. <package>@MODULE_PACKAGE@</package>
  11. <author>Viet Nguyen, Chuyen Nguyen</author>
  12. <description>
  13. Hospital core module, contains common api for hospital management system project in Shimla, India
  14. </description>
  15.  
  16. <activator>@MODULE_PACKAGE@.HospitalCoreActivator</activator>
  17.  
  18. <!-- <updateURL>https://dev.openmrs.org/modules/download/@MODULE_ID@/update.rdf</updateURL> -->
  19. <!-- /Base Module Properties -->
  20.  
  21. <require_version>1.6.1</require_version>
  22.  
  23.  
  24. <extension>
  25. <point>org.openmrs.admin.list</point>
  26. <class>@MODULE_PACKAGE@.extension.html.AdminList</class>
  27. </extension>
  28.  
  29.  
  30. <!-- AOP
  31. <advice>
  32. <point>org.openmrs.api.FormService</point>
  33. <class>@MODULE_PACKAGE@.advice.DuplicateFormAdvisor</class>
  34. </advice>
  35. /AOP -->
  36.  
  37.  
  38. <!--Required Global Properties -->
  39.  
  40. <!--
  41. <dwr>
  42. <allow>
  43. <create creator="new" javascript="DWRFormEntryService">
  44. <param name="class" value="org.openmrs.module.@MODULE_ID@.web.DWRFormEntryService"/>
  45. <include method="enterForm"/>
  46. </create>
  47. </allow>
  48.  
  49. <signatures>
  50. <![CDATA[
  51. import @MODULE_PACKAGE@.web.DWRFormEntryService;
  52. DWRFormEntryService.enterForm(Integer patientId, Integer formId, boolean useEncounter, List<String> fields);
  53. ]]>
  54. </signatures>
  55. </dwr>
  56. -->
  57.  
  58. <!-- Servlets -->
  59. <!-- Accessed through the url /pageContext()/moduleServlet/<moduleId>/<servlet-name>
  60. <servlet>
  61. <servlet-name>formDownload</servlet-name>
  62. <servlet-class>@MODULE_PACKAGE@.web.FormDownloadServlet</servlet-class>
  63. </servlet>
  64. -->
  65. <!-- /Servlets -->
  66.  
  67. <globalProperty>
  68. <property>@MODULE_ID@.obsGroup</property>
  69. <defaultValue>Global Obs</defaultValue>
  70. <description>Global obs group for a patient</description>
  71. </globalProperty>
  72.  
  73.  
  74. <globalProperty>
  75. <property>@MODULE_ID@.ipdEncounter</property>
  76. <defaultValue>IPDENCOUNTER</defaultValue>
  77. <description>IPD ENCOUNTER</description>
  78. </globalProperty>
  79.  
  80. <globalProperty>
  81. <property>@MODULE_ID@.hospitalName</property>
  82. <defaultValue>DDU</defaultValue>
  83. <description>This using when we show name of hospital</description>
  84. </globalProperty>
  85.  
  86. <globalProperty>
  87. <property>@MODULE_ID@.identifier_prefix</property>
  88. <defaultValue>SHDDU</defaultValue>
  89. <description>Patient identifier prefixt</description>
  90. </globalProperty>
  91.  
  92. <globalProperty>
  93. <property>@MODULE_ID@.ageCategory</property>
  94. <defaultValue>0-12:CHILD;13-19:ADLOSCENT;20-59:ADULT;60-120:SENIOR CITIZEN</defaultValue>
  95. <description>Age categories for patient and its ranges</description>
  96. </globalProperty>
  97.  
  98. <globalProperty>
  99. <property>@MODULE_ID@.medicalExamination</property>
  100. <defaultValue>9</defaultValue>
  101. <description>
  102. Concept class id to tell a concept is for a medical examination.
  103. </description>
  104. </globalProperty>
  105.  
  106. <!-- Internationalization -->
  107. <!-- All message codes should start with @MODULE_ID@.* -->
  108. <messages>
  109. <lang>en</lang>
  110. <file>messages.properties</file>
  111. </messages>
  112. <messages>
  113. <lang>fr</lang>
  114. <file>messages_fr.properties</file>
  115. </messages>
  116. <messages>
  117. <lang>es</lang>
  118. <file>messages_es.properties</file>
  119. </messages>
  120. <!-- /Internationalization -->
  121.  
  122. <mappingFiles>
  123. Tender.hbm.xml
  124. Company.hbm.xml
  125. Driver.hbm.xml
  126. TenderBill.hbm.xml
  127. TenderBillItem.hbm.xml
  128. Ambulance.hbm.xml
  129. AmbulanceBill.hbm.xml
  130. AmbulanceBillItem.hbm.xml
  131. BillableService.hbm.xml
  132. PatientServiceBill.hbm.xml
  133. PatientServiceBillItem.hbm.xml
  134. MiscellaneousService.hbm.xml
  135. MiscellaneousServiceBill.hbm.xml
  136. BillingReceipt.hbm.xml
  137. Lab.hbm.xml
  138. LabTest.hbm.xml
  139. OpdPatientQueue.hbm.xml
  140. OpdPatientQueueLog.hbm.xml
  141. IpdPatientAdmission.hbm.xml
  142. IpdPatientAdmissionLog.hbm.xml
  143. IpdPatientAdmitted.hbm.xml
  144. IpdPatientAdmittedLog.hbm.xml
  145. Department.hbm.xml
  146. DepartmentConcept.hbm.xml
  147. RadiologyDepartment.hbm.xml
  148. CoreForm.hbm.xml
  149. PatientSearch.hbm.xml
  150. </mappingFiles>
  151. </module>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement