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

RORX005.m

Go to the documentation of this file.
  1. RORX005 ;HCIOFO/BH,SG - INPATIENT UTILIZATION ;10/14/05 1:53pm
  1. ;;1.5;CLINICAL CASE REGISTRIES;**21,31**;Feb 17, 2006;Build 62
  1. ;
  1. ;******************************************************************************
  1. ; --- ROUTINE MODIFICATION LOG ---
  1. ;
  1. ;PKG/PATCH DATE DEVELOPER MODIFICATION
  1. ;----------- ---------- ----------- ----------------------------------------
  1. ;ROR*1.5*21 SEP 2013 T KOPP Add ICN column if Additional Identifier
  1. ; requested.
  1. ;ROR*1.5*31 MAY 2017 M FERRARESE Adding PACT, PCP, and AGE/DOB as additional
  1. ; identifiers.
  1. ;******************************************************************************
  1. ;
  1. Q
  1. ;
  1. ;***** OUTPUTS THE REPORT HEADER
  1. ;
  1. ; PARTAG Reference (IEN) to the parent tag
  1. ;
  1. ; Return Values:
  1. ; <0 Error code
  1. ; >0 IEN of the HEADER element
  1. ;
  1. ;;HU_DAYS(#,NAME,LAST4,AGE,NST,ND,NSS,ICN,PACT,PCP)^I $$PARAM^RORTSK01("AGE_RANGE","TYPE")="AGE"
  1. ;;HU_DAYS(#,NAME,LAST4,DOB,NST,ND,NSS,ICN,PACT,PCP)^I $$PARAM^RORTSK01("AGE_RANGE","TYPE")="DOB"
  1. ;;HU_DAYS(#,NAME,LAST4,NST,ND,NSS,ICN,PACT,PCP)^I $$PARAM^RORTSK01("AGE_RANGE","TYPE")="ALL"
  1. ;;HU_STAYS(#,NAME,LAST4,AGE,NST,ND,NSS,ICN,PACT,PCP)^I $$PARAM^RORTSK01("AGE_RANGE","TYPE")="AGE"
  1. ;;HU_STAYS(#,NAME,LAST4,DOB,NST,ND,NSS,ICN,PACT,PCP)^I $$PARAM^RORTSK01("AGE_RANGE","TYPE")="DOB"
  1. ;;HU_STAYS(#,NAME,LAST4,NST,ND,NSS,ICN,PACT,PCP)^I $$PARAM^RORTSK01("AGE_RANGE","TYPE")="ALL"
  1. ;;BEDSECTIONS(#,NAME,NP,NST,ND,MLOS,NSS)
  1. ;;NOBS(#,NAME,LAST4,AGE,DATE,PTF,ICN,PACT,PCP)^I $$PARAM^RORTSK01("AGE_RANGE","TYPE")="AGE"
  1. ;;NOBS(#,NAME,LAST4,DOB,DATE,PTF,ICN,PACT,PCP)^I $$PARAM^RORTSK01("AGE_RANGE","TYPE")="DOB"
  1. ;;NOBS(#,NAME,LAST4,DATE,PTF,ICN,PACT,PCP)^I $$PARAM^RORTSK01("AGE_RANGE","TYPE")="ALL"
  1. ;;STAYS(NP,NST)
  1. ;
  1. N HEADER,RC
  1. S HEADER=$$HEADER^RORXU002(.RORTSK,PARTAG)
  1. Q:HEADER<0 HEADER
  1. S RC=$$TBLDEF^RORXU002("HEADER^RORX005",HEADER)
  1. Q $S(RC<0:RC,1:HEADER)
  1. ;
  1. ;
  1. ;***** COMPILES THE "INPATIENT UTILIZATION" REPORT
  1. ; REPORT CODE: 005
  1. ;
  1. ; .RORTSK Task number and task parameters
  1. ;
  1. ; The ^TMP("RORX005",$J) global node is used by this function.
  1. ;
  1. ; ^TMP("RORX005",$J,
  1. ;
  1. ; "IP", Number of inpatients
  1. ; DFN, Last 4 digits of SSN^National ICN^Patient care team PACT^Primary Care provider PCP^Age/DOB
  1. ; "D") Number of days
  1. ; "S") Number of overnight stays
  1. ; "V") Number of short stays
  1. ;
  1. ; "IPB",
  1. ;# BedSectID,
  1. ; "D") Number of days
  1. ; "P", Number of patients
  1. ; DFN)
  1. ; "S") Number of overnight stays
  1. ; "V") Number of short stays
  1. ; "B",
  1. ; BedSectName,
  1. ;% BedSectID)
  1. ;
  1. ; "IPD", Total number of days
  1. ; NumOfDays, Number of patients
  1. ; PatientName,
  1. ; DFN)
  1. ;
  1. ; "IPMLOS", Median Length Of Stay
  1. ;* BedSectID, Median Length Of Stay
  1. ; NumOfDays,
  1. ; Seq#)
  1. ;
  1. ; "IPNOBS",
  1. ; PatientName,
  1. ; Date,
  1. ; PTF#,
  1. ; DFN)
  1. ;
  1. ; "IPS", Total number of stays
  1. ; NumOfStays, Number of patients
  1. ; PatientName,
  1. ; DFN)
  1. ;
  1. ; "IPV") Total number of short stays
  1. ;
  1. ; Bed section IDs (BedSectID):
  1. ; -1 No bed section [#%*]
  1. ; 0 Whole patient's stays [ *]
  1. ; >0 Bed section ID (IEN;File#) [# *]
  1. ;
  1. ; Return Values:
  1. ; <0 Error code
  1. ; 0 Ok
  1. ;
  1. IPUTL(RORTSK) ;
  1. N ROREDT ; End date
  1. N RORREG ; Registry IEN
  1. N RORSDT ; Start date
  1. ;
  1. N ECNT,RC,REPORT,SFLAGS,TMP
  1. S (ECNT,RC)=0
  1. K ^TMP("RORX005",$J)
  1. ;--- Root node of the report
  1. S REPORT=$$ADDVAL^RORTSK11(RORTSK,"REPORT")
  1. Q:REPORT<0 REPORT
  1. ;
  1. ;--- Get and prepare the report parameters
  1. S RORREG=$$PARAM^RORTSK01("REGIEN")
  1. S RC=$$PARAMS(REPORT,.RORSDT,.ROREDT,.SFLAGS) Q:RC<0 RC
  1. ;
  1. ;--- Report header
  1. S RC=$$HEADER(REPORT) Q:RC<0 RC
  1. ;
  1. D
  1. . ;--- Query the registry
  1. . D TPPSETUP^RORTSK01(70)
  1. . S RC=$$QUERY^RORX005A(SFLAGS)
  1. . I RC Q:RC<0 S ECNT=ECNT+RC
  1. . ;--- Sort the data
  1. . D TPPSETUP^RORTSK01(15)
  1. . S RC=$$SORT^RORX005B()
  1. . I RC Q:RC<0 S ECNT=ECNT+RC
  1. . ;--- Store the results
  1. . D TPPSETUP^RORTSK01(15)
  1. . S RC=$$STORE^RORX005C(REPORT)
  1. . I RC Q:RC<0 S ECNT=ECNT+RC
  1. ;
  1. ;--- Cleanup
  1. K ^TMP("RORX005",$J)
  1. Q $S(RC<0:RC,ECNT>0:-43,1:0)
  1. ;
  1. ;***** OUTPUTS THE PARAMETERS TO THE REPORT
  1. ;
  1. ; PARTAG Reference (IEN) to the parent tag
  1. ;
  1. ; [.STDT] Start and end dates of the report
  1. ; [.ENDT] are returned via these parameters
  1. ;
  1. ; [.FLAGS] Flags for the $$SKIP^RORXU005 are
  1. ; returned via this parameter
  1. ;
  1. ; Return Values:
  1. ; <0 Error code
  1. ; >0 IEN of the PARAMETERS element
  1. ;
  1. PARAMS(PARTAG,STDT,ENDT,FLAGS) ;
  1. N NAME,PARAMS,TMP
  1. S PARAMS=$$PARAMS^RORXU002(.RORTSK,PARTAG,.STDT,.ENDT,.FLAGS)
  1. Q:PARAMS<0 PARAMS
  1. ;--- Process the list of divisions
  1. S TMP=$$DIVLST^RORXU006(.RORTSK,PARAMS)
  1. Q:TMP<0 TMP
  1. ;--- Additional parameters
  1. F NAME="MAXUTNUM" D
  1. . S TMP=$$PARAM^RORTSK01(NAME)
  1. . D:TMP'="" ADDVAL^RORTSK11(RORTSK,NAME,TMP,PARAMS)
  1. ;---
  1. Q PARAMS