Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: PXRMLPHS

PXRMLPHS.m

Go to the documentation of this file.
  1. PXRMLPHS ; SLC/PJH,PKR - Run Health Summaries from Patient List ;03/26/2007
  1. ;;2.0;CLINICAL REMINDERS;**4,6**;Feb 04, 2005;Build 123
  1. ;
  1. ;External Ref DBIA #398
  1. ;
  1. HSA(LISTIEN) ;Run health summary for all patients on this patient list.
  1. N HSIEN,PLNODE
  1. ;Initialise
  1. D FULL^VALM1
  1. ;Reset screen mode
  1. W IORESET
  1. ;
  1. ;Select Health Summary
  1. D HSEL(.HSIEN) Q:$D(DTOUT)!$D(DUOUT)
  1. ;
  1. S PLNODE="PXRMLPHS"_$J_$$NOW^XLFDT
  1. K ^XTMP(PLNODE)
  1. S ^XTMP(PLNODE,0)=$$FMADD^XLFDT(DT,2)_U_DT_"HSI LIST"
  1. D SORT(LISTIEN,PLNODE)
  1. D QUE(HSIEN,PLNODE)
  1. Q
  1. ;
  1. HSEL(IEN) ;Select Health Summary Type
  1. N X,Y,DIC
  1. HS1 S DIC=142,DIC(0)="QAEMZ"
  1. S DIC("A")="Select HEALTH SUMMARY TYPE: "
  1. W !
  1. D ^DIC
  1. I X="" W !,"A health summary type name must be entered" G HS1
  1. I X=(U_U) S DTOUT=1
  1. I Y=-1 S DUOUT=1
  1. I $D(DTOUT)!$D(DUOUT) Q
  1. ;Return HS ien
  1. S IEN=$P(Y,U)
  1. Q
  1. ;
  1. HSI(PLNODE) ;Print health summary for selected patients.
  1. N HSIEN
  1. ;Initialise
  1. D FULL^VALM1
  1. ;Reset screen mode
  1. W IORESET
  1. ;
  1. ;Select Health Summary
  1. D HSEL(.HSIEN) Q:$D(DTOUT)!$D(DUOUT)
  1. D QUE(HSIEN,PLNODE)
  1. Q
  1. ;
  1. PRINT(HSIEN,PLNODE) ;Print HS for Patient List IEN
  1. N DFN,DIROUT,SUB
  1. ;Print HS for each patient
  1. S SUB=0
  1. F S SUB=$O(^XTMP(PLNODE,SUB)) Q:(SUB="")!$D(DIROUT) D
  1. .S DFN=^XTMP(PLNODE,SUB)
  1. .D ENX^GMTSDVR(DFN,HSIEN,"","") ; DBIA #398
  1. ;
  1. ;Clear workfile
  1. K ^XTMP(PLNODE)
  1. Q
  1. ;
  1. QUE(HSIEN,PLNODE) ;Determine whether the report should be queued.
  1. N PXRMQUE,%ZIS,ZTDESC,ZTRTN,ZTSK,ZTSAVE
  1. S %ZIS="M"
  1. S ZTDESC="Patient List Health Summaries - print"
  1. S ZTRTN="PRINT^PXRMLPHS(HSIEN,PLNODE)"
  1. S ZTSAVE("HSIEN")=""
  1. S ZTSAVE("PLNODE")=""
  1. S PXRMQUE=$$DEVICE^PXRMXQUE(ZTRTN,ZTDESC,.ZTSAVE,.%ZIS,1)
  1. S VALMBCK="R"
  1. Q
  1. ;
  1. SORT(LISTIEN,PLNODE) ;Sort workfile as required
  1. N DATA,DFN,IND,PNAME
  1. ;Build the list in alphabetical order.
  1. S IND=0
  1. F S IND=$O(^PXRMXP(810.5,LISTIEN,30,IND)) Q:'IND D
  1. .S DATA=$G(^PXRMXP(810.5,LISTIEN,30,IND,0)) Q:DATA=""
  1. .S DFN=$P(DATA,U) Q:'DFN
  1. .;DBIA #10035
  1. .S PNAME=$P(^DPT(DFN,0),U,1) Q:PNAME=""
  1. .S ^XTMP(PLNODE,PNAME)=DFN
  1. Q
  1. ;