BSDXAPI1 ; VEN/SMH - SCHEDULING APIs - Continued!!! ; 7/3/12 12:37pm ;;1.7T1;BSDX;;Aug 31, 2011;Build 18 ; Licensed under LGPL ; ; Change History (BSDXAPI and BSDXAPI1) ; Pre 1.42: ; - Simplified entry points (MAKE1, CANCEL1, CHECKIN1) ; 2010-11-5: (1.42) ; - Fixed errors having to do uncanceling patient appointments if it was ; a patient cancelled appointment. ; - Use new style Fileman API for storing appointments in file 44 in ; $$MAKE due to problems with legacy API. ; 2010-11-12: (1.42) ; - Changed ="C" to ["C" in SCIEN. Cancelled appointments can be "PC" as ; well. ; 2010-12-5 (1.42) ; Added an entry point to update the patient note in file 44. ; 2010-12-6 (1.42) ; MAKE1 incorrectly put info field in BSDR("INFO") rather than BSDR("OI") ; 2010-12-8 (1.42) ; Removed restriction on max appt length. Even though this restriction ; exists in fileman (120 minutes), PIMS ignores it. Therefore, I ; will ignore it here too. ; 2011-01-25 (v.1.5) ; Added entry point $$RMCI to remove checked in appointments. ; In $$CANCEL, if the appointment is checked in, delete check-in rather than ; spitting an error message to the user saying 'Delete the check-in' ; Changed all lines that look like this: ; I $G(BSDR("ADT"))'?7N1".".4N Q 1_U_"Appt Date/Time error: "_$G(BSDR("ADT")) ; to: ; I $G(BSDR("ADT"))'?7N.1".".4N Q 1_U_"Appt Date/Time error: "_$G(BSDR("ADT")) ; to allow for date at midnight which does not have a dot at the end. ; 2011-01-26 (v.1.5) ; More user friendly message if patient already has appointment in $$MAKE: ; Spits out pt name and user friendly date. ; 2012-06-18 (v 1.7) ; Removing transacions. Means that code SHOULD NOT fail. Took all checks ; out for making an appointment to MAKECK. We call this first to make sure ; that the appointment is okay to make before committing to make it. We ; still have the provision to delete the data though if we fail when we ; actually make the appointment. ; CANCELCK exists for the same purpose. ; CHECKINK ditto ; New API: $$NOWSHOW^BSDXAPI1 for no-showing patients ; Moved RMCI from BSDXAPI to BSDXAPI1 because BSDXAPI1 is getting larger ; than 20000 characters. ; NOSHOW(PAT,CLINIC,DATE,NSFLAG) ; $$ PEP; No-show Patient at appt date (new in v1.7) ; PAT = DFN ; CLINIC = SC IEN ; DATE = FM Date/Time of Appointment ; NSFLAG = truthy value to add no-show, or falsy to remove (use 1 or 0 pls!) ; 1^error for failure, 0 for success ; Code follows EN1^SDN ; ; Check for failure conditions first before doing this. No globals set here N NOSHOWCK S NOSHOWCK=$$NOSHOWCK(PAT,CLINIC,DATE,NSFLAG) I NOSHOWCK Q NOSHOWCK ; ; Set up Protocol Driver N SDNSHDL,SDDA S SDNSHDL=$$HANDLE^SDAMEVT(1) S SDDA=$$SCIEN^BSDXAPI(PAT,CLINIC,DATE) N SDATA D BEFORE^SDAMEVT(.SDATA,PAT,DATE,CLINIC,SDDA,SDNSHDL) ; Only ^TMP set here. ; ; Simulated Errors Q:$D(BSDXSIMERR2) 1_U_"Simulated Error" ; ; Edit the ^DPT( "S" node entry - Noshow or undo noshow ; Failure analysis: if we fail here, we presume no change happened in ; ^DPT(DA,"S", and so we just have to roll back ^BSDXAPPT N BSDXIENS S BSDXIENS=DATE_","_PAT_"," N BSDXFDA I +NSFLAG D . S BSDXFDA(2.98,BSDXIENS,3)="N" . S BSDXFDA(2.98,BSDXIENS,14)=DUZ . S BSDXFDA(2.98,BSDXIENS,15)=$$NOW^XLFDT() E D . S BSDXFDA(2.98,BSDXIENS,3)="@" . S BSDXFDA(2.98,BSDXIENS,14)="@" . S BSDXFDA(2.98,BSDXIENS,15)="@" N BSDXMSG D FILE^DIE("","BSDXFDA","BSDXMSG") Q:$D(BSDXMSG) 1_U_"Fileman edit to DPT error: Patient="_PAT_" Appt="_DATE_" Error="_BSDXMSG("DIERR",1,"TEXT",1) ; ; This M error trigger tests if ^BSDXAPPT rolls back. ; I won't try to roll back ^DPT(,"S" because ; the M error is caused here, so if I try to rollback, I can cause another ; error. Infinite Errors then. I $D(BSDXSIMERR3) N X S X=1/0 ; ; Run the event driver D NOSHOW^SDAMEVT(.SDATA,PAT,DATE,CLINIC,SDDA,0,SDNSHDL) Q 0 ; NOSHOWCK(PAT,CLINIC,DATE,NSFLAG) ; $$ PEP; No-show Check ; TODO: Not all appointments can be no showed. ; Check the code in SDAMN ; S SDSTB=$$STATUS^SDAM1(DFN,SDT,SDCL,$G(^DPT(DFN,"S",SDT,0))) ; before status ; Q:'$$CHK ; Checks $D(^SD(409.63,"ANS",1,+SDSTB)) QUIT 0 ; RMCI(PAT,CLINIC,DATE) ;PEP; -- Remove Check-in; $$ ; PAT = DFN ; CLINIC = SC IEN ; DATE = FM Date/Time of Appointment ; ; Returns: ; 0 if okay ; -1 if failure ; ; Call like this: $$RMCI(233,33,3110102.1130) ; ; Check to see if we can remove the check-in N BSDXERR S BSDXERR=$$RMCICK(PAT,CLINIC,DATE) I BSDXERR Q BSDXERR ; ; Move my variables into the ones used by SDAPIs (just a convenience) NEW SDATA,DFN,SDT,SDCL,SDDA,SDCIHDL,SDMODE S DFN=PAT,SDT=DATE,SDCL=CLINIC,SDMODE=2,SDDA=$$SCIEN^BSDXAPI(DFN,SDCL,SDT) ; I SDDA<1 QUIT 0 ; Appt cancelled; cancelled appts rm'ed from file 44 ; ; remember before status S SDCIHDL=$$HANDLE^SDAMEVT(1),SDATA=SDDA_U_DFN_U_SDT_U_SDCL D BEFORE^SDAMEVT(.SDATA,DFN,SDT,SDCL,SDDA,SDCIHDL) ; ; remove check-in using filer. N BSDXIENS S BSDXIENS=SDDA_","_DATE_","_CLINIC_"," N BSDXFDA S BSDXFDA(44.003,BSDXIENS,309)="@" ; CHECKED-IN S BSDXFDA(44.003,BSDXIENS,302)="@" ; CHECK IN USER S BSDXFDA(44.003,BSDXIENS,305)="@" ; CHECK IN ENTERED N BSDXERR D FILE^DIE("","BSDXFDA","BSDXERR") I $D(BSDXERR) QUIT "-1~Can't file for Pat "_PAT_" in Clinic "_CLINIC_" at "_DATE_". Fileman reported an error: "_BSDXERR("DIERR",1,"TEXT",1) ; ; set after status ; S SDDA=$$SCIEN(DFN,SDCL,SDT) ;smh -why is this here? SDDA won't change. S SDCIHDL=$$HANDLE^SDAMEVT(1),SDATA=SDDA_U_DFN_U_SDT_U_SDCL D AFTER^SDAMEVT(.SDATA,DFN,SDT,SDCL,SDDA,SDCIHDL) ; ; call event driver D EVT^SDAMEVT(.SDATA,4,SDMODE,SDCIHDL) QUIT 0 ; RMCICK(PAT,CLINIC,DATE) ;PEP; Can you remove a check-in for this patient? ; PAT - DFN by value ; CLINIC - ^SC ien by value ; DATE - Appointment Date ; Output: 0 if okay or 1 if error ; ; Get appointment IEN in ^SC(DA(2),"S",DA(1),1, N SCIEN S SCIEN=$$SCIEN^BSDXAPI(PAT,CLINIC,DATE) ; ; If not there, it has been cancelled. I 'SCIEN QUIT 0 ; ; Check if checked out I $$CO^BSDXAPI(PAT,CLINIC,DATE,SCIEN) Q 1_U_"Appointment Already Checked Out" ; QUIT 0 ; UPDATENT(PAT,CLINIC,DATE,NOTE) ; PEP; Update Note in ^SC for patient's appointment @ DATE ; PAT = DFN ; CLINIC = SC IEN ; DATE = FM Date/Time of Appointment ; ; Returns: ; 0 if okay ; -1 if failure ; ; ERROR SIMULATION I $G(BSDXSIMERR1) QUIT "-1~Simulated Error" ; N SCIEN S SCIEN=$$SCIEN^BSDXAPI(PAT,CLINIC,DATE) ; ien of appt in ^SC I SCIEN<1 QUIT 0 ; Appt cancelled; cancelled appts rm'ed from file 44 N BSDXIENS S BSDXIENS=SCIEN_","_DATE_","_CLINIC_"," N BSDXFDA S BSDXFDA(44.003,BSDXIENS,3)=$E(NOTE,1,150) N BSDXERR D FILE^DIE("","BSDXFDA","BSDXERR") I $D(BSDXERR) QUIT "-1~Can't file for Pat "_PAT_" in Clinic "_CLINIC_" at "_DATE_". Fileman reported an error: "_BSDXERR("DIERR",1,"TEXT",1) QUIT 0 ;