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

IBCNERTC.m

Go to the documentation of this file.
  1. IBCNERTC ;AITC/HN - Covered by Health Insurance ;03-MAR-2017
  1. ;;2.0;INTEGRATED BILLING;**593**;21-MAR-94;Build 31
  1. ;;Per VA Directive 6402, this routine should not be modified.
  1. ;
  1. ;**Program Description**
  1. ; This program will loop through the ACHI Index of the Patient (2) file to update the
  1. ; Covered by Health Insurance (2.3192) field based on current active policies.
  1. ;
  1. ; This option is designed to run through TaskMan after midnight. It shouldn't take long since there
  1. ; should not be many entries in the ACHI index per day.
  1. ;
  1. ; UPATF should be used with care since it will process the entire Patient File
  1. ;
  1. Q
  1. ;
  1. EN(IBDT) ;From Taskman nightly job. Call from label TASK.
  1. N DFN
  1. S DFN=""
  1. F S DFN=$O(^DPT("ACHI",IBDT,DFN)) Q:'DFN D INS(DFN,IBDT)
  1. Q
  1. ;
  1. INS(DFN,IBDT) ;Check insurance
  1. N DA,DIE,IBCOV,IBIND,IBINS,IBNCOV,DR,IBINSD,IENS,EFFDT,IBIENS,DEFIND,IBIEN,IBSYM
  1. S (IBCOV,IBNCOV)=$$GET1^DIQ(2,DFN_",","COVERED BY HEALTH INSURANCE?","I")
  1. D ALL^IBCNS1(DFN,"IBINS",2,IBDT) S IBINSD=+$G(IBINS(0))
  1. ;
  1. ; -- initial value ="" or Unknown
  1. I $TR(IBCOV,"U","")']"" S IBNCOV=$S('$O(^DPT(DFN,.312,0)):"U",IBINSD:"Y",1:"N")
  1. ; -- initial value = YES or NO (treat the same)
  1. I "YN"[IBCOV S IBNCOV=$S('$O(^DPT(DFN,.312,0)):"N",IBINSD:"Y",1:"N")
  1. ;
  1. I IBCOV'=IBNCOV S DIE="^DPT(",DR=".3192///"_IBNCOV,DA=DFN D ^DIE
  1. ;
  1. ; Create Buffer entry for those whose Effective Date = IBDT
  1. ;
  1. S DA=0 F S DA=$O(IBINS(DA)) Q:'DA D
  1. . S IBIEN=+IBINS(DA,0)
  1. . S IBIENS=DA_","_DFN_","
  1. . S EFFDT=$$GET1^DIQ(2.312,IBIENS,8,"I")
  1. . I EFFDT'=IBDT Q
  1. . ; Add check to see if already in buffer
  1. . S DEFIND=$$BFEXIST(DFN,IBIEN) Q:DEFIND=1
  1. . S IBSYM=$P($$INSERROR^IBCNEUT3("I",IBIEN),"^",1)
  1. . D PT^IBCNEBF(DFN,DA,IBSYM,,1)
  1. Q
  1. ;
  1. UPATF ;Update the entire Patient File
  1. ; This should be tasked for late evening since it will take awhile to run.
  1. N DFN,IENS
  1. S DFN=0
  1. F S DFN=$O(^DPT(DFN)) Q:'DFN D
  1. . D INS(DFN,DT)
  1. Q
  1. ;
  1. BFEXIST(DFN,INSNAME) ; Function returns 1 if an Entered Ins Buffer File
  1. ; entry exists with the same DFN and INSNAME, otherwise it returns a 0
  1. ;
  1. ; DFN - Patient DFN
  1. ; INSNAME - Insurance Company Name File 36 - Field .01
  1. ;
  1. NEW EXIST,IEN,EDATE
  1. S EXIST=0
  1. S INSNAME=$P($G(^DIC(36,IBIEN,0)),U) ;$$TRIM^XLFSTR(INSNAME) ; trimmed
  1. I ('DFN)!(INSNAME="") G BFEXIT
  1. ;
  1. S IEN=0
  1. F S IEN=$O(^IBA(355.33,"C",DFN,IEN)) Q:'IEN!EXIST D
  1. . ; Quit if status is NOT 'Entered'
  1. . I $$GET1^DIQ(355.33,IEN_",","STATUS","I")'="E" Q
  1. . ; Quit if Ins Buffer Ins Co Name (trimmed) is NOT EQUAL to
  1. . ; the Ins Co Name parameter (trimmed)
  1. . I $$TRIM^XLFSTR($$GET1^DIQ(355.33,IEN_",","INSURANCE COMPANY NAME"))'=INSNAME Q
  1. . ; Quit if Date Enterd Matches
  1. . S EDATE=$P($$GET1^DIQ(355.33,IEN_",","DATE ENTERED","I"),".")
  1. . I IBDT'=EDATE Q
  1. . ; Match found
  1. . S EXIST=1
  1. . Q
  1. BFEXIT ;
  1. Q EXIST
  1. ;
  1. XREF ;Build the "ACHI" cross reference
  1. N CNT,DA,DFN,FILE,DIK,X,Y
  1. S DFN=0
  1. F S DFN=$O(^DPT(DFN)) Q:'DFN D
  1. . I $$GET1^DIQ(2,DFN_","_"DATE OF DEATH") Q ;Patient Deceased
  1. . S DA(1)=DFN
  1. . S DIK="^DPT("_DA(1)_",.312,"
  1. . S DIK(1)="3^ACHI"
  1. . D ENALL^DIK
  1. . S DIK(1)="8^ACHI"
  1. . D ENALL^DIK
  1. Q