61 lines
1.4 KiB
Plaintext
61 lines
1.4 KiB
Plaintext
maintenance:
|
|
|
|
title: DOC_PRINT_ED_DCINST;;
|
|
mlmname: DOC_PRINT_ED_DCINST;;
|
|
arden: version 2;;
|
|
version: 4.00;;
|
|
institution: St Clair Memorial Hospital;;
|
|
author: Shawn Head;;
|
|
specialist: ;;
|
|
date: 2014-01-23;;
|
|
validation: testing;;
|
|
|
|
library:
|
|
purpose: This MLM calls an Objects+ DLL which processes SCM report requests.
|
|
|
|
|
|
This MLM will autoprint the ED Discharge instructions AND also send a PDF copy to the PDFHL7 folder
|
|
for Dan to process to an HL7 message and send it back into SCM documents tab.
|
|
|
|
;;
|
|
explanation:
|
|
|
|
|
|
Change history
|
|
|
|
1.23.2014 STH CSR#: 32009 - Created
|
|
|
|
;;
|
|
keywords:
|
|
;;
|
|
knowledge:
|
|
type: data-driven;;
|
|
data:
|
|
|
|
log_execution_info:=FALSE;
|
|
|
|
Report_Print_MLM := mlm {{{SINGLE-QUOTE}}}SCH_FUNC_PRINT{{{SINGLE-QUOTE}}};
|
|
|
|
|
|
// New report version "may" be needed. Consult with report team.
|
|
|
|
reportname := "ED Discharge Instructions_AP"; logicalprinter := "Ed logicare printer"; physicalprinter:= "";
|
|
void := call Report_Print_MLM with(reportname, logicalprinter, physicalprinter);
|
|
|
|
reportname := "ED Discharge Instructions_Text"; logicalprinter := "PDF-EDDCINST"; physicalprinter:= "";
|
|
void := call Report_Print_MLM with(reportname, logicalprinter, physicalprinter);
|
|
|
|
;;
|
|
evoke:
|
|
;;
|
|
logic:
|
|
|
|
conclude true;
|
|
|
|
;;
|
|
action: //all of the action is done by the call to the FFI
|
|
|
|
;;
|
|
Urgency: 50;;
|
|
end:
|