BBahmni 한국어 매뉴얼검색
한국어 번역 완료
한국어English

Setup PACS Integration module

Purpose and Benefits

Bahmni pacs-integration is Bahmni's Radiology System that can send Radiology Orders to digital X-Ray machines and in turn receive X-Ray images that can be viewed in Bahmni. This is the first step in the process, namely setting up the PACS Integration Webapp module to create a Radiology order and send it to the digital X-Ray machines (Modality).

Steps

Ensure that pacs-integration service is installed. The steps for installation is mentioned in Install Bahmni guide.관련 문서: Install Bahmni on CentOS

If the service is installed it will create a database schema called bahmni_pacs in postgres. Following data setup needs to be done to have the pacs-integration working so that it picks up radiology orders and converts them into HL7 ORM messages to be sent further to a PACS or a modality.

Data Setup

Set up data in tables modality, order_type and markers in the bahmni_pacs postgres database.

  • modality table should have the details of HL7 server listening to ORM message - IP address, port, AE Title. If you are using dcm4chee as the modality worklist server the default values pertaining to dcm4chee will have to be added. The default AE Title and ports are DCM4CHEE and 2575 sqlSample entry when sending orders to dcm4chee
    Sample entry when sending orders to dcm4chee
    INSERT into modality VALUES (1, 'DCM4CHEE','DCM4CHEE PACS', '192.168.33.10', 2575, 3000);
  • In order_type table, order_type name should be the same as order_type  in the OpenMRS database. The modality id from modality table is used to send the particular order type orders to the given modality.sqlSample order_type entry for sending Radiology orders
    Sample order_type entry for sending Radiology orders
    insert into order_type values(1, 'Radiology Order', 1);
  • markers table should be set with the latest markers and feed details to avoid it reading from the start. A sample query for the same would look likesql Please enter the right values for  last_read_entry_id and feed_uri_for_last_read_entry. 
    insert into markers (feed_uri,last_read_entry_id, feed_uri_for_last_read_entry) values ('http://localhost:8050/openmrs/ws/atomfeed/encounter/recent', 'tag:atomfeed.ict4h.org:889f9b69-83f5-4ee8-8f4c-e65df761b423','http://localhost:8050/openmrs/ws/atomfeed/encounter/59593');

Set up Procedure Codes for mapping the Bahmni X-Rays to Digital X-Ray Machine's X-Rays

원문 정보

Bahmni Wiki · CC BY-SA 4.0

원문 보기 ↗