BAREV810 ; IHS/SD/LSL - ENVIRONMENT CHECK V1.8 PATCH 10; 12/24/2008
;;1.8;IHS ACCOUNTS RECEIVABLE;**10**;APR 27,2007
;NEW ROUTINE BAR*1.8*10
;
K XPDQUIT ;CLEAR FLAG
I '$G(DUZ) D Q
. W !,"DUZ UNDEFINED OR 0"
. D SORRY(2)
;
I '$L($G(DUZ(0))) D Q
. W !,"DUZ(0) UNDEFINED OR NULL"
. D SORRY(2)
;
S X=$P(^VA(200,DUZ,0),U) ;User's name
W !!,$$CJ^XLFSTR("Hello, "_$P(X,",",2)_" "_$P(X,","),IOM)
W !!,$$CJ^XLFSTR("Checking Environment for "_$P($T(+2),";",4)_" V "_$P($T(+2),";",3),IOM)
;
N BARXU
S BARXU=$$INSTALLD("XU","8.0",1011) ;Find current Kernel version and patch
I $P(BARXU,"*",2)<8 S BARXU=0
I $P(BARXU,"*",3)'=1011 S BARXU=0
W !,$$CJ^XLFSTR("Need at least XU v8.0 Patch 1011..... "_$S(BARXU=0:"NOT ",1:"")_"Present",IOM)
I BARXU=0 D SORRY(2)
;
I $$VCHK("DI","21.0",2) ;FileMan V21.0
;
N BARXB
S BARXB=$$INSTALLD("XB","3.0",11) ;Find current IHS utilities version and patch
I $P(BARXB,"*",2)<3 S BARXB=0
I $P(BARXU,"*",3)'=11 S BARXU=0
W !,$$CJ^XLFSTR("Need at least XB v3.0 Patch 11..... "_$S(BARXB=0:"NOT ",1:"")_"Present",IOM)
I BARXB=0 D SORRY(2)
;
I $$VCHK("BAR","1.8",2) ;Accounts Receivable V1.8
;
N BARABM
S BARABM=$$INSTALLD("ABM","2.5",13)
I $P(BARABM,"*",2)<2.5 S BARABM=0
I $P(BARABM,"*",3)'=13 S BARABM=0
W !,$$CJ^XLFSTR("Need at least Third Party Billing v2.5 Patch 13..... "_$S(BARABM=0:"NOT ",1:"")_"Present",IOM)
I BARABM=0 D SORRY(2)
;
N DA,DIC
S X="BAR"
S DIC="^DIC(9.4,"
S DIC(0)=""
S D="C"
D IX^DIC
I Y<0,$D(^DIC(9.4,"C","BAR")) D
. W !!,*7,*7,$$CJ^XLFSTR("You Have More Than One Entry In The",IOM)
. W !,$$CJ^XLFSTR("PACKAGE File with an ""BAR"" prefix.",IOM)
. W !,$$CJ^XLFSTR("One entry needs to be deleted.",IOM)
. D SORRY(2)
. Q
;
;A/R IS NO LONGER CUMULATIVE AFTER PATCH 6
;LAST CUMULATIVE PATCH WAS PATCH 6
N BAR,I
F I=6:1:7,9 D ;BAR*1.8*8 WAS REPLACED WITH BAR*1.8*9
.S BAR=$$INSTALLD("BAR","1.8",I)
.I $P(BAR,"*",3)'=I S BAR=0 D
..W !,$$CJ^XLFSTR("Need Accounts Receivable v1.8 Patch "_I_"..... "_$S(BAR=0:"NOT ",1:"")_"Present",IOM)
I BAR=0 D SORRY(2)
;
I $G(XPDQUIT) W !,$$CJ^XLFSTR("FIX IT! Before Proceeding.",IOM),!!,*7,*7,*7 Q
;
W !!,$$CJ^XLFSTR("ENVIRONMENT OK.",IOM)
D HELP^XBHELP("INTROE","BAREV810")
;
I $G(XPDENV)=1 D
. ; The following line prevents the "Disable Options..." and "Move
. ; Routines..." questions from being asked during the install.
. S (XPDDIQ("XPZ1"),XPDDIQ("XPZ2"))=0
. D HELP^XBHELP("INTROI","BAREV810")
. Q
;
I '$$DIR^XBDIR("E","","","","","",1) D SORRY(2)
Q
;
SORRY(X) ;
KILL DIFQ
S XPDQUIT=X
W *7,!,$$CJ^XLFSTR("Sorry....FIX IT!",IOM)
Q
; ***
VCHK(BARPRE,BARVER,BARQUIT) ; Check versions needed.
;
N BARV
S BARV=$$VERSION^XPDUTL(BARPRE)
W !,$$CJ^XLFSTR("Need at least "_BARPRE_" v "_BARVER_"....."_BARPRE_" v "_BARV_" Present",IOM)
I BARV<BARVER KILL DIFQ S XPDQUIT=BARQUIT D SORRY(BARQUIT) Q 0
Q 1
; ***
INSTALLD(BARNM,BARVR,BARPT) ;EP ;RLT
; RLT - 04/05/05 - Per Don Jackson, modified this tag to use
; PATCH^XPDUTL. Removed the reverse $O, problem
; with XU patch numbers. VA (lower than 1000) and
; IHS patch numers (1000 and higher) not loaded
; in numerical order. No longer
; verifies that a lower version did not get
; reinstalled over a higher version.
N BARVNUM,BARPATCH
;1 get current version
S BARVNUM=$$VERSION^XPDUTL(BARNM)
I '+BARVNUM Q 0
;2 is needed patch loaded
S BARPATCH=$$PATCH^XPDUTL(BARNM_"*"_BARVR_"*"_BARPT)
I '+BARPATCH Q 0
Q BARNM_"*"_BARVNUM_"*"_BARPT
;
; ********************************************************************
INTROE ; Intro text during KIDS Environment check.
;;This distribution Modifies Accounts Receivable and does not contain
;;previous patch modifications for version 1.8.
;;
;; This patch is **not** cumulative.
;;
;;###
;;
;
INTROI ; Intro text during KIDS Install.
;;If you run interactively, results will be displayed on your screen,
;;and recorded in the entry in the INSTALL file.
;;If you queue to TaskMan, remember not to Q to the HOME device.
;;###
BAREV810 ; IHS/SD/LSL - ENVIRONMENT CHECK V1.8 PATCH 10; 12/24/2008
+1 ;;1.8;IHS ACCOUNTS RECEIVABLE;**10**;APR 27,2007
+2 ;NEW ROUTINE BAR*1.8*10
+3 ;
+4 ;CLEAR FLAG
KILL XPDQUIT
+5 IF '$GET(DUZ)
Begin DoDot:1
+6 WRITE !,"DUZ UNDEFINED OR 0"
+7 DO SORRY(2)
End DoDot:1
QUIT
+8 ;
+9 IF '$LENGTH($GET(DUZ(0)))
Begin DoDot:1
+10 WRITE !,"DUZ(0) UNDEFINED OR NULL"
+11 DO SORRY(2)
End DoDot:1
QUIT
+12 ;
+13 ;User's name
SET X=$PIECE(^VA(200,DUZ,0),U)
+14 WRITE !!,$$CJ^XLFSTR("Hello, "_$PIECE(X,",",2)_" "_$PIECE(X,","),IOM)
+15 WRITE !!,$$CJ^XLFSTR("Checking Environment for "_$PIECE($TEXT(+2),";",4)_" V "_$PIECE($TEXT(+2),";",3),IOM)
+16 ;
+17 NEW BARXU
+18 ;Find current Kernel version and patch
SET BARXU=$$INSTALLD("XU","8.0",1011)
+19 IF $PIECE(BARXU,"*",2)<8
SET BARXU=0
+20 IF $PIECE(BARXU,"*",3)'=1011
SET BARXU=0
+21 WRITE !,$$CJ^XLFSTR("Need at least XU v8.0 Patch 1011..... "_$SELECT(BARXU=0:"NOT ",1:"")_"Present",IOM)
+22 IF BARXU=0
DO SORRY(2)
+23 ;
+24 ;FileMan V21.0
IF $$VCHK("DI","21.0",2)
+25 ;
+26 NEW BARXB
+27 ;Find current IHS utilities version and patch
SET BARXB=$$INSTALLD("XB","3.0",11)
+28 IF $PIECE(BARXB,"*",2)<3
SET BARXB=0
+29 IF $PIECE(BARXU,"*",3)'=11
SET BARXU=0
+30 WRITE !,$$CJ^XLFSTR("Need at least XB v3.0 Patch 11..... "_$SELECT(BARXB=0:"NOT ",1:"")_"Present",IOM)
+31 IF BARXB=0
DO SORRY(2)
+32 ;
+33 ;Accounts Receivable V1.8
IF $$VCHK("BAR","1.8",2)
+34 ;
+35 NEW BARABM
+36 SET BARABM=$$INSTALLD("ABM","2.5",13)
+37 IF $PIECE(BARABM,"*",2)<2.5
SET BARABM=0
+38 IF $PIECE(BARABM,"*",3)'=13
SET BARABM=0
+39 WRITE !,$$CJ^XLFSTR("Need at least Third Party Billing v2.5 Patch 13..... "_$SELECT(BARABM=0:"NOT ",1:"")_"Present",IOM)
+40 IF BARABM=0
DO SORRY(2)
+41 ;
+42 NEW DA,DIC
+43 SET X="BAR"
+44 SET DIC="^DIC(9.4,"
+45 SET DIC(0)=""
+46 SET D="C"
+47 DO IX^DIC
+48 IF Y<0
IF $DATA(^DIC(9.4,"C","BAR"))
Begin DoDot:1
+49 WRITE !!,*7,*7,$$CJ^XLFSTR("You Have More Than One Entry In The",IOM)
+50 WRITE !,$$CJ^XLFSTR("PACKAGE File with an ""BAR"" prefix.",IOM)
+51 WRITE !,$$CJ^XLFSTR("One entry needs to be deleted.",IOM)
+52 DO SORRY(2)
+53 QUIT
End DoDot:1
+54 ;
+55 ;A/R IS NO LONGER CUMULATIVE AFTER PATCH 6
+56 ;LAST CUMULATIVE PATCH WAS PATCH 6
+57 NEW BAR,I
+58 ;BAR*1.8*8 WAS REPLACED WITH BAR*1.8*9
FOR I=6:1:7,9
Begin DoDot:1
+59 SET BAR=$$INSTALLD("BAR","1.8",I)
+60 IF $PIECE(BAR,"*",3)'=I
SET BAR=0
Begin DoDot:2
+61 WRITE !,$$CJ^XLFSTR("Need Accounts Receivable v1.8 Patch "_I_"..... "_$SELECT(BAR=0:"NOT ",1:"")_"Present",IOM)
End DoDot:2
End DoDot:1
+62 IF BAR=0
DO SORRY(2)
+63 ;
+64 IF $GET(XPDQUIT)
WRITE !,$$CJ^XLFSTR("FIX IT! Before Proceeding.",IOM),!!,*7,*7,*7
QUIT
+65 ;
+66 WRITE !!,$$CJ^XLFSTR("ENVIRONMENT OK.",IOM)
+67 DO HELP^XBHELP("INTROE","BAREV810")
+68 ;
+69 IF $GET(XPDENV)=1
Begin DoDot:1
+70 ; The following line prevents the "Disable Options..." and "Move
+71 ; Routines..." questions from being asked during the install.
+72 SET (XPDDIQ("XPZ1"),XPDDIQ("XPZ2"))=0
+73 DO HELP^XBHELP("INTROI","BAREV810")
+74 QUIT
End DoDot:1
+75 ;
+76 IF '$$DIR^XBDIR("E","","","","","",1)
DO SORRY(2)
+77 QUIT
+78 ;
SORRY(X) ;
+1 KILL DIFQ
+2 SET XPDQUIT=X
+3 WRITE *7,!,$$CJ^XLFSTR("Sorry....FIX IT!",IOM)
+4 QUIT
+5 ; ***
VCHK(BARPRE,BARVER,BARQUIT) ; Check versions needed.
+1 ;
+2 NEW BARV
+3 SET BARV=$$VERSION^XPDUTL(BARPRE)
+4 WRITE !,$$CJ^XLFSTR("Need at least "_BARPRE_" v "_BARVER_"....."_BARPRE_" v "_BARV_" Present",IOM)
+5 IF BARV<BARVER
KILL DIFQ
SET XPDQUIT=BARQUIT
DO SORRY(BARQUIT)
QUIT 0
+6 QUIT 1
+7 ; ***
INSTALLD(BARNM,BARVR,BARPT) ;EP ;RLT
+1 ; RLT - 04/05/05 - Per Don Jackson, modified this tag to use
+2 ; PATCH^XPDUTL. Removed the reverse $O, problem
+3 ; with XU patch numbers. VA (lower than 1000) and
+4 ; IHS patch numers (1000 and higher) not loaded
+5 ; in numerical order. No longer
+6 ; verifies that a lower version did not get
+7 ; reinstalled over a higher version.
+8 NEW BARVNUM,BARPATCH
+9 ;1 get current version
+10 SET BARVNUM=$$VERSION^XPDUTL(BARNM)
+11 IF '+BARVNUM
QUIT 0
+12 ;2 is needed patch loaded
+13 SET BARPATCH=$$PATCH^XPDUTL(BARNM_"*"_BARVR_"*"_BARPT)
+14 IF '+BARPATCH
QUIT 0
+15 QUIT BARNM_"*"_BARVNUM_"*"_BARPT
+16 ;
+17 ; ********************************************************************
INTROE ; Intro text during KIDS Environment check.
+1 ;;This distribution Modifies Accounts Receivable and does not contain
+2 ;;previous patch modifications for version 1.8.
+3 ;;
+4 ;; This patch is **not** cumulative.
+5 ;;
+6 ;;###
+7 ;;
+8 ;
INTROI ; Intro text during KIDS Install.
+1 ;;If you run interactively, results will be displayed on your screen,
+2 ;;and recorded in the entry in the INSTALL file.
+3 ;;If you queue to TaskMan, remember not to Q to the HOME device.
+4 ;;###