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

EASWTAPI.m

Go to the documentation of this file.
  1. EASWTAPI ; ALB/SCK - ENROLLMENT DATE API - ; 7-12-2002
  1. ;;1.0;ENROLLMENT APPLICATION SYSTEM;**17**;MAR 15, 2001
  1. ;
  1. ENROLL(DFN) ; Find enrollement date for patient
  1. ; Input
  1. ; DFN - IEN of the patient file
  1. ;
  1. ; Output
  1. ; 0 - If an enrollment date cannot be determined
  1. ; 1^IEN^date^type - If an enrollment date can be determined
  1. ;
  1. ; 1 - Flag that an enrollment date was determined
  1. ; IEN - IEN of the PATIENT ENROLLMENT File entry returned
  1. ; date - Date in FileMan internal format
  1. ; type - "E" for an ENROLLMENT DATE
  1. ; "A" for an ENROLLMENT APPLICATION DATE
  1. ;
  1. N RSLT,EAIEN,EAIEN1,EAX,DONE,EAVER,EASTAT,EANODE
  1. ;
  1. S RSLT=0
  1. S DFN=$G(DFN) I 'DFN Q RSLT
  1. I '$D(^DPT(DFN,0)) Q RSLT
  1. ;
  1. ;; Retrieve last enrollment record for patient
  1. S EAIEN="Z",EAIEN=$O(^DGEN(27.11,"C",DFN,EAIEN),-1)
  1. I 'EAIEN Q RSLT
  1. ;; If last enrollment record is Cancel/Decline, return 0
  1. I $$GET1^DIQ(27.11,EAIEN,.04,"I")=7 Q $G(RSLT)
  1. ;
  1. S RSLT=$$VERIFY(EAIEN)
  1. I 'RSLT S RSLT=$$UNVERIFY(EAIEN)
  1. Q RSLT
  1. ;
  1. VERIFY(EAIEN) ; Find latest verified record
  1. N EAX,EANODE,EAVER,RSLT,DONE
  1. ;
  1. S EANODE=EAIEN_"~"_$G(^DGEN(27.11,EAIEN,0))
  1. S RSLT=0
  1. S EAVER=$$SEARCH(EANODE,2)
  1. I +$P($G(EAVER),"~",1)>0 D
  1. . S RSLT="1^"_$P(EAVER,"~",1)_U_$P(EAVER,U,10)_"^E"
  1. Q RSLT
  1. ;
  1. UNVERIFY(EAIEN) ; Find an un-verified record
  1. N EAX,EANODE,EAUNV,RSLT,DONE
  1. ;
  1. S RSLT=0
  1. S EANODE=EAIEN_"~"_$G(^DGEN(27.11,EAIEN,0))
  1. S EAUNV=$$SEARCH(EANODE,1)
  1. I +$P($G(EAUNV),"~",1)>0 D
  1. . S RSLT="1^"_$P(EAUNV,"~",1)_U_$P($P(EAUNV,"~",2),U,1)_"^A"
  1. Q RSLT
  1. ;
  1. N EACUR,DONE,EAX,EAIEN
  1. ;
  1. I $P(EANODE,U,4)=STAT S EACUR=EANODE
  1. F EAX=1:1 D Q:$G(DONE)
  1. . S EAIEN=$P(EANODE,U,9)
  1. . I 'EAIEN S DONE=1 Q
  1. . S EANODE=$G(^DGEN(27.11,EAIEN,0))
  1. . I $P(EANODE,U,4)=STAT S EACUR=EAIEN_"~"_$G(^DGEN(27.11,EAIEN,0))
  1. . I $P(EANODE,U,4)=7 S DONE=1
  1. Q $G(EACUR)
  1. ;
  1. CHECK(DFN) ;
  1. N EAX,EAIEN,EANODE,DONE
  1. ;
  1. S DFN=$G(DFN) I 'DFN Q
  1. Q:'$D(^DPT(DFN,0))
  1. ;
  1. S EAIEN="Z"
  1. S EAIEN=$O(^DGEN(27.11,"C",DFN,EAIEN),-1)
  1. Q:'EAIEN
  1. S EANODE=$G(^DGEN(27.11,EAIEN,0))
  1. W !,EAIEN_" | "_EANODE
  1. ;
  1. F EAX=1:1 D Q:$G(DONE)
  1. . S EAIEN=$P(EANODE,U,9)
  1. . I 'EAIEN S DONE=1 Q
  1. . S EANODE=$G(^DGEN(27.11,EAIEN,0))
  1. . W !,EAIEN_" | "_EANODE
  1. Q