source: FOIAVistA/tag/r/PAID-PRS/PRS8CR.m@ 628

Last change on this file since 628 was 628, checked in by George Lilly, 14 years ago

initial load of FOIAVistA 6/30/08 version

File size: 3.1 KB
Line 
1PRS8CR ;HISC/MRL-DECOMPOSITION, CREATE STRING ;01/17/07
2 ;;4.0;PAID;**2,6,45,69,112**;Sep 21, 1995;Build 54
3 ;;Per VHA Directive 2004-038, this routine should not be modified.
4 ;
5 ;This routine take the information contained in the WK array
6 ;and creates the activity string to be passed to Austin. The
7 ;WK(1) node contains those items pertaining to Week 1 activity,
8 ;WK(2) contains those items pertaining to Week 2 activity and
9 ;WK(3) contains the Miscellaneous information shown on the bottom
10 ;of the timecard.
11 ;
12 ;Called by Routines: PRS8DR
13 ;
14 ;Variable S contains the lengths of each of the Values for the
15 ;different time codes. Used to format values with leading and
16 ;trailing zero's
17 N MLINHRS
18 S MLINHRS=$$MLINHRS^PRSAENT(DFN)
19 S S="333333333333333333333333333333333443623233333333333"
20 S E(1)="ANSKWDNOAURTCECUUNNANBSPSASBSCDADBDCTFOAOBOCYAOKOMRARBRCHAHBHCPTPAONYDHDVCEA EB TATCFAFCADNTRSSRSDND"
21 S E(2)="ALSLWPNPABRLCTCOUSNRNSSQSESFSGDEDFDGTGOEOFOGYEOSOURERFRGHLHMHNPHPBCLYHHOVSEC ED TBTDFBFDAFNHRNSSSHNU"
22 S E(3)="NLDWINTLLULNLDDTTOLAMLCAPCCYRRFFFECD"
23 K V S V="" F I=1,2,3 S V(I)=""
24 ;
25 ;Next section gets Week 1 and Week 2 data and stores in V(WK)
26 F J=1,2 F I=1:1:38,40,42:1:51 S X=+$P(WK(J),"^",I) I X]"" D
27 .; Don't report PT/PT for nurses on AWS schedules
28 .Q:$E(AC,2)=1&($P(C0,U,16)=72)&(I=32) ; 36/40 AWS
29 .Q:$E(AC,2)=2&($P(C0,U,16)=80)&(I=32) ; 9month AWS
30 .;
31 .I TYP'["D",I'=38,I'=40 D QH
32 .I TYP["D" S X=+X_"0"
33 .I TYP["Pd",$E(ENT,2)'="D",$P(WK(J),"^",32)="",V(J)="" S V(J)=V(J)_$S(J=1:"PT000",J=2:"PH000",1:"") ;for p/t drs put PT,PH in 8B string even if they are 0 (PT+PH=NH)
34 .I I=32,TYP["P",TYP["N",TYP'["B"!(TYP["H"),'X D Q
35 ..S X=$E("0000000",0,+$E(S,I)-$L(X))_X
36 ..S V(J)=V(J)_$E(E(J),I+(I-1),I*2)_X
37 ..Q
38 .I I=37,$P(C0,"^",20)="P",$P(C0,"^",21)="U" D
39 ..S X=$E("0000000",0,+$E(S,I)-$L(X))_X
40 ..I 'X S V(J)=V(J)_$E(E(J),I+(I-1),I*2)_X
41 ..Q
42 .S X=+X I I=32,TYP["Pd",X=0 S X=1
43 .Q:'X
44 .I I=32,TYP["Pd",X=1 S X=0
45 .I I=38!(I=40) D
46 ..S Z=X,X=4*$P(WK(J),"^",I+1) D QH
47 ..S X=($E("00",0,$E(S,I)-$L(Z))_+Z)_($E("000",0,$E(S,I+1)-$L(+X))_+X) ;combine env. diff. % and hours
48 ..Q
49 .E S X=$E("0000000",0,+$E(S,I)-$L(X))_+X
50 .I +X S V(J)=V(J)_$E(E(J),I+(I-1),I*2)_X,V=V+X
51 ;
52 ;Now we get miscellaneous data
53 ;
54 S S="22134446114423146"
55 F I=1:1:17 S X=$P(WK(3),"^",I) I X'="" D
56 .I I=11 D
57 . . I MLINHRS D QH ; Convert to 1/4 hours.
58 . . I MLINHRS=0 S X=X_"0" ; Convert to 1/4 hours.
59 .S X=$E("000000",0,+$E(S,I)-$L(X))_X
60 .I $D(X) S V(3)=V(3)_$E(E(3),I+(I-1),I*2)_X,V=V+X
61 ;
62 ;finish up
63 ;
64 S VAL="" I $L(V(1))!($L(V(2)))!($L(V(3))) S X=V(1)_V(2)_V(3)_"CD"_$E("000000",0,6-$L(+V))_+V,VAL=X
65 ;
66STUB ; --- enter here to create stub only
67 I '($D(VAL)#2) S VAL=""
68 ; code below to add CP field to STUB record (32nd position)
69 S CPFX=""
70 S CPFX=$P($G(^PRST(458,PY,"E",DFN,0)),"^",6) ;get CP from 458
71 I CPFX="" S CPFX=$P($G(^PRSPC(DFN,1)),"^",7) ;if 458 null get from 450
72 I "0"[CPFX S CPFX=" " ;if it is 0 or "" set CPFX = " "
73 S PPE=$G(^PRST(458,+PY,0)),PPE=$P(PPE,"^",1),PPI=+PY D ^PRSAXSR
74 S VAL=HDR_CPFX_VAL ;decomp no longer saves 8B in 5 node (6/95)
75 K I,J,S Q
76 ;
77QH ; --- for persons paid hourly/convert to Quarter Hours
78 ;
79 I I'=37 S X1=X#4,X=X\4_+X1 K X1
80 Q
Note: See TracBrowser for help on using the repository browser.