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

IBEMTSCR.m

Go to the documentation of this file.
  1. IBEMTSCR ;ALB/RFJ-print billable types for visit copay ;23 Nov 01
  1. ;;2.0;INTEGRATED BILLING;**167,187,351**;21-MAR-94;Build 4
  1. ;;Per VHA Directive 2004-038, this routine should not be modified.
  1. ;
  1. W !!,"This option will print the billable types for copay visits."
  1. W !,"You have the option to deliver the report to yourself in MailMan"
  1. W !,"or print the report to a printer or on your screen."
  1. ;
  1. N IBFMAIL,%ZIS,IBFPOST,POP,ZTDESC,ZTQUEUED,ZTRTN,ZTSAVE
  1. S IBFMAIL=$$ASKPRINT
  1. I IBFMAIL<0 Q
  1. ;
  1. ; select device
  1. I 'IBFMAIL D I $D(IO("Q"))!(POP) K IO("Q"),ZTSK Q
  1. . W ! S %ZIS="Q" D ^%ZIS Q:POP
  1. . I $D(IO("Q")) D D ^%ZTLOAD Q
  1. . . S ZTDESC="IB Visit Copay Billing Types",ZTRTN="DQ^IBEMTSCR"
  1. . . S ZTSAVE("IBFMAIL")="",ZTSAVE("ZTREQ")="@"
  1. ;
  1. W !!,"<*> please wait <*>"
  1. ;
  1. ;
  1. DQ ; print report
  1. ; variable ibfmail=1 to print to a mail message
  1. ; variable ibfpost=1 if from post init
  1. N IBDA,IBDATA,IBLINE,IBSTOP,X,XMY
  1. ;
  1. ; *** build the report in tmp ***
  1. ;
  1. ; report line counter
  1. S IBLINE=0
  1. ;
  1. D SET("This message is a summary of the Visit Copay Billing Types defined")
  1. D SET("for your station.")
  1. ;D SET("IB MEANS TEST.")
  1. D SET(" ")
  1. ;
  1. D SET("The following Visit Copay Billing Types are defined for your station:")
  1. D SET("Stop Code Description Effective Date Billable Type")
  1. D SET("--------- ----------------------------- -------------- -------------")
  1. S IBSTOP="" F S IBSTOP=$O(^IBE(352.5,"B",IBSTOP)) Q:IBSTOP="" D
  1. . S IBDA=0 F S IBDA=$O(^IBE(352.5,"B",IBSTOP,IBDA)) Q:'IBDA S IBDATA=^IBE(352.5,IBDA,0) D
  1. . . ; stop code
  1. . . S X=$J($P(IBDATA,"^"),9)
  1. . . ; description
  1. . . S X=X_" "_$P(IBDATA,"^",4)_$J("",35-$L($P(IBDATA,"^",4)))
  1. . . ; effective date
  1. . . I '$P(IBDATA,"^",2) S $P(IBDATA,"^",2)="???????"
  1. . . S X=X_$E($P(IBDATA,"^",2),4,5)_"/"_$E($P(IBDATA,"^",2),6,7)_"/"_$E($P(IBDATA,"^",2),2,3)
  1. . . ; billable type
  1. . . D SET(X_$J("",8)_$$TYPE($P(IBDATA,"^",3)))
  1. ;
  1. ; *** print or deliver the report from tmp ***
  1. ;
  1. ; print the report
  1. I '$G(IBFMAIL) D
  1. . N %,%I,IBFLAG,IBNOW,IBPAGE,IBSCREEN,X,Y
  1. . D NOW^%DTC S Y=% D DD^%DT S IBNOW=Y
  1. . S IBPAGE=1
  1. . S IBSCREEN=0 I '$D(ZTQUEUED),IO=IO(0),$E(IOST)="C" S IBSCREEN=1
  1. . U IO D H
  1. . ;
  1. . S IBLINE=0 F S IBLINE=$O(^TMP($J,"IBEMTSCR",IBLINE)) Q:'IBLINE!($G(IBFLAG)) S IBDATA=^(IBLINE) D
  1. . . I $Y>(IOSL-4) D:IBSCREEN PAUSE Q:$G(IBFLAG) D H
  1. . . W !,IBDATA
  1. . ;
  1. . D ^%ZISC
  1. ;
  1. ; deliver the report in mailman
  1. I $G(IBFMAIL) D
  1. . I $G(IBFPOST) S XMY("G.IB MEANS TEST")=""
  1. . S XMY(DUZ)=""
  1. . S X=$$SENDMSG("IB Visit Copay Billing Types",.XMY)
  1. ;
  1. K ^TMP($J,"IBEMTSCR")
  1. Q
  1. ;
  1. ;
  1. SET(DATA) ; store report
  1. S IBLINE=IBLINE+1,^TMP($J,"IBEMTSCR",IBLINE)=DATA
  1. Q
  1. ;
  1. ;
  1. SENDMSG(XMSUB,XMY) ; send message with subject and recipients
  1. N %X,D0,D1,D2,DIC,DICR,DIW,X,XCNP,XMDISPI,XMDUN,XMDUZ,XMTEXT,XMZ,ZTPAR
  1. S XMDUZ="IB PACKAGE",XMTEXT="^TMP($J,""IBEMTSCR"","
  1. D ^XMD
  1. Q +$G(XMZ)
  1. ;
  1. ;
  1. TYPE(CODE) ; return the billable type based on set of codes
  1. I CODE=1 Q "Basic Care"
  1. I CODE=2 Q "Specialty Care"
  1. Q "Non-Billable"
  1. ;
  1. ;
  1. ASKPRINT() ; ask to print in mail or printer
  1. ; 1 is yes, otherwise no
  1. N DIR,DIQ2,DIRUT,DTOUT,DUOUT,X,Y
  1. S DIR(0)="YO",DIR("B")="NO"
  1. S DIR("A")=" Do you want to deliver the report in MailMan"
  1. W ! D ^DIR
  1. I $G(DTOUT)!($G(DUOUT)) S Y=-1
  1. Q Y
  1. ;
  1. ;
  1. PAUSE ; pause at end of page
  1. N X U IO(0) W !!,"Press RETURN to continue, '^' to exit:" R X:DTIME S:'$T X="^" S:X["^" IBFLAG=1 U IO Q
  1. ;
  1. ;
  1. H ; header
  1. S %=IBNOW_" PAGE "_IBPAGE,IBPAGE=IBPAGE+1 I IBPAGE'=2!(IBSCREEN) W @IOF
  1. W $C(13),"IB VISIT COPAY BILLING TYPES",?(80-$L(%)),%
  1. W !,$TR($J("",79)," ","-")
  1. Q