2008-07-03 21:02:47 -04:00
|
|
|
CCRUTIL ;CCRCCD/SMH - Various Utilites for generating the CCR/CCD;06/15/08
|
|
|
|
;;0.1;CCRCCD;;Jun 15, 2008;
|
2008-07-17 15:55:07 -04:00
|
|
|
;Copyright 2008 WorldVistA. Licensed under the terms of the GNU
|
|
|
|
;General Public License See attached copy of the License.
|
|
|
|
;
|
|
|
|
;This program is free software; you can redistribute it and/or modify
|
|
|
|
;it under the terms of the GNU General Public License as published by
|
|
|
|
;the Free Software Foundation; either version 2 of the License, or
|
|
|
|
;(at your option) any later version.
|
|
|
|
;
|
|
|
|
;This program is distributed in the hope that it will be useful,
|
|
|
|
;but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;GNU General Public License for more details.
|
|
|
|
;
|
|
|
|
;You should have received a copy of the GNU General Public License along
|
|
|
|
;with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
;51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
;
|
2008-07-03 21:02:47 -04:00
|
|
|
W "No Entry at Top!" Q
|
2008-07-17 15:55:07 -04:00
|
|
|
|
2008-07-03 21:02:47 -04:00
|
|
|
FMDTOUTC(DATE,FORMAT) ; Convert Fileman Date to UTC Date Format; PUBLIC; Extrinsic
|
|
|
|
; FORMAT is Format of Date. Can be either D (Day) or DT (Date and Time)
|
|
|
|
; If not passed, or passed incorrectly, it's assumed that it is D.
|
|
|
|
; FM Date format is "YYYMMDD.HHMMSS" HHMMSS may not be supplied.
|
|
|
|
; UTC date is formatted as follows: YYYY-MM-DDThh:mm:ss_offsetfromUTC
|
|
|
|
; UTC, Year, Month, Day, Hours, Minutes, Seconds, Time offset (obtained from Mailman Site Parameters)
|
2008-07-17 15:55:07 -04:00
|
|
|
N UTC,Y,M,D,H,MM,S,OFF
|
2008-07-03 21:02:47 -04:00
|
|
|
S Y=1700+$E(DATE,1,3)
|
|
|
|
S M=$E(DATE,4,5)
|
|
|
|
S D=$E(DATE,6,7)
|
|
|
|
S H=$E(DATE,9,10)
|
2008-08-29 15:33:43 -04:00
|
|
|
I $L(H)=1 S H="0"_H
|
2008-07-03 21:02:47 -04:00
|
|
|
S MM=$E(DATE,11,12)
|
2008-08-29 15:19:16 -04:00
|
|
|
I $L(MM)=1 S MM="0"_MM
|
2008-07-03 21:02:47 -04:00
|
|
|
S S=$E(DATE,13,14)
|
2008-08-29 15:19:16 -04:00
|
|
|
I $L(S)=1 S S="0"_S
|
2008-07-03 21:02:47 -04:00
|
|
|
S OFF=$$TZ^XLFDT ; See Kernel Manual for documentation.
|
|
|
|
; If H, MM and S are empty, it means that the FM date didn't supply the time.
|
|
|
|
; In this case, set H, MM and S to "00"
|
2008-08-29 14:40:24 -04:00
|
|
|
; S:('$L(H)&'$L(MM)&'$L(S)) (H,MM,S)="00" ; IF ONLY SOME ARE MISSING?
|
|
|
|
S:'$L(H) H="00"
|
|
|
|
S:'$L(MM) MM="00"
|
|
|
|
S:'$L(S) S="00"
|
2008-07-16 13:34:54 -04:00
|
|
|
S UTC=Y_"-"_M_"-"_D_"T"_H_":"_MM_$S(S="":":00",1:":"_S)_OFF ; Skip's code to fix hanging colon if no seconds
|
2008-07-03 21:02:47 -04:00
|
|
|
I $L($G(FORMAT)),FORMAT="DT" Q UTC ; Date with time.
|
2008-07-17 15:55:07 -04:00
|
|
|
E Q $P(UTC,"T")
|
2008-07-03 21:02:47 -04:00
|
|
|
;
|