VistA-Scheduling/cs/bsdx0200GUISourceCode/CGView.cs

4293 lines
164 KiB
C#
Raw Blame History

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using System.Diagnostics;
using System.Data;
using System.Threading;
using IndianHealthService.BMXNet;
using System.Runtime.InteropServices;
using System.Drawing.Printing;
using System.Linq;
using System.Text;
using System.Net.Mail;
using System.Configuration;
using System.Net;
using System.IO;
namespace IndianHealthService.ClinicalScheduling
{
/// <summary>
/// Main Form: Shows Tree of Clinics and Calendar Grid
/// </summary>
public class CGView : System.Windows.Forms.Form
{
private System.Windows.Forms.MainMenu mainMenu1;
private System.Windows.Forms.MenuItem mnuFile;
private System.Windows.Forms.MenuItem mnuTest;
private System.Windows.Forms.MenuItem mnuAppointment;
private System.Windows.Forms.MenuItem mnuNewAppointment;
private System.Windows.Forms.MenuItem mnu1Day;
private System.Windows.Forms.MenuItem mnu7Day;
private System.Windows.Forms.MenuItem menuItem4;
private System.Windows.Forms.MenuItem mnu5Day;
private System.Windows.Forms.MenuItem mnu10Minute;
private System.Windows.Forms.MenuItem mnu20Minute;
private System.Windows.Forms.MenuItem mnu30Minute;
private System.Windows.Forms.MenuItem mnuTimeScale;
private System.Windows.Forms.MenuItem mnu15Minute;
private System.Windows.Forms.MenuItem mnuOpenSchedule;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.TreeView tvSchedules;
private System.Windows.Forms.MenuItem mnuViewScheduleTree;
private System.Windows.Forms.MenuItem mnuDeleteAppointment;
private System.Windows.Forms.MenuItem mnuTest1;
private System.Windows.Forms.Splitter splitter1;
private System.Windows.Forms.Splitter splitter2;
private System.Windows.Forms.StatusBar statusBar1;
private System.Windows.Forms.DateTimePicker dateTimePicker1;
private System.Windows.Forms.MenuItem mnuViewRightPanel;
private System.Windows.Forms.Panel panelRight;
private System.Windows.Forms.Panel panelTop;
private System.Windows.Forms.Panel panelCenter;
private System.Windows.Forms.Panel panelBottom;
private System.Windows.Forms.Label lblResource;
private System.Windows.Forms.ContextMenu ctxResourceTree;
private System.Windows.Forms.MenuItem ctxOpenSchedule;
private System.Windows.Forms.MenuItem ctxEditAvailability;
private System.Windows.Forms.MenuItem ctxProperties;
private System.Windows.Forms.MenuItem mnuSchedulingManagment;
private System.Windows.Forms.MenuItem ctxFindAppt;
private System.Windows.Forms.MenuItem mnuFindAppt;
internal System.Windows.Forms.MenuItem mnuRPMSServer;
internal System.Windows.Forms.MenuItem mnuRPMSLogin;
private System.Windows.Forms.MenuItem mnuCheckIn;
private System.Windows.Forms.MenuItem menuItem3;
private System.Windows.Forms.MenuItem mnuHelpAbout;
private System.Windows.Forms.MenuItem mnuCalendar;
private System.Windows.Forms.MenuItem mnuHelp;
private System.Windows.Forms.MenuItem mnuClose;
private System.Windows.Forms.MenuItem mnuViewPatientAppts;
private IndianHealthService.ClinicalScheduling.CalendarGrid calendarGrid1;
private System.Windows.Forms.MenuItem mnuCopyAppointment;
private System.Windows.Forms.Panel panelClip;
private System.Windows.Forms.ListBox lstClip;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ContextMenu ctxApptClipMenu;
private System.Windows.Forms.MenuItem mnuRemoveClipItem;
private System.Windows.Forms.MenuItem mnuClearClipItems;
private System.Windows.Forms.MenuItem mnuEditAppointment;
private System.Windows.Forms.ContextMenu ctxCalendarGrid;
private System.Windows.Forms.MenuItem ctxCalGridAdd;
private System.Windows.Forms.MenuItem ctxCalGridEdit;
private System.Windows.Forms.MenuItem ctxCalGridDelete;
private System.Windows.Forms.MenuItem ctxCalGridCheckIn;
private System.Windows.Forms.MenuItem menuItem6;
private System.Windows.Forms.MenuItem menuItem7;
private System.Windows.Forms.MenuItem mnuPrintReminderLetters;
private System.Windows.Forms.MenuItem mnuPrintPatientLetter;
private System.Windows.Forms.MenuItem mnuPrintClinicSchedules;
private System.Windows.Forms.MenuItem ctxCalGridNoShow;
private System.Windows.Forms.MenuItem ctxCalGridNoShowUndo;
private System.Windows.Forms.MenuItem mnuNoShow;
private System.Windows.Forms.MenuItem mnuNoShowUndo;
private System.Windows.Forms.MenuItem mnuPrintRebookLetters;
private System.Windows.Forms.MenuItem mnuPrintCancellationLetters;
private System.Windows.Forms.MenuItem mnuWalkIn;
private System.Windows.Forms.MenuItem sepApptMenu1;
private System.Windows.Forms.MenuItem sepApptMenu2;
private System.Windows.Forms.MenuItem ctxCalGridWalkin;
private System.Windows.Forms.MenuItem ctxCalGridSep2;
private System.Windows.Forms.MenuItem mnuOpenMultipleSchedules;
private System.Windows.Forms.MenuItem mnuDisplayWalkIns;
private System.Windows.Forms.MenuItem mnuRPMSDivision;
private MenuItem ctxCalGridSep3;
private MenuItem ctxCalGridReprintApptSlip;
private MenuItem ctxCalGridUndoCheckin;
private MenuItem ctxPrintScheduleT0;
private MenuItem ctxPrintScheduleT1;
private MenuItem ctxPrintScheduleT3;
private MenuItem menuItem12;
private MenuItem mnuRefresh;
private MenuItem ctxCalGridMkRadAppt;
private MenuItem ctxCalGridCancelRadAppt;
private MenuItem mnuMkRadAppt;
private MenuItem mnuCancelRadAppt;
private MenuItem mnuUndoCheckin;
private MenuItem sepApptMenu3;
private MenuItem mnuReprintApptSlip;
private MenuItem mnuViewBrokerLog;
private MenuItem ctxCalGridSep1;
private MenuItem ctxCalGridCloneForward;
private MenuItem ctxCalGridExportInvite;
private MenuItem ctxCopyAppointment;
private IContainer components;
#region Initialization
public CGView()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
m_nSlots = 0;
m_alSelectedTreeResourceArray = new ArrayList();
m_ClipList = new CGAppointments();
}
public void InitializeDocView(string sText)
{
this.Text = CGDocumentManager.Current.RemoteSession.User.Name;
if (sText != null)
this.Text += " - " + sText;
if (CGDocumentManager.Current.RemoteSession.User.Division.Name != null)
this.Text += " - " + CGDocumentManager.Current.RemoteSession.User.Division.Name;
}
public void InitializeDocView(CGDocument doc,
CGDocumentManager docMgr,
DateTime dStartDate,
string sText)
{
System.IntPtr pHandle = this.Handle;
this.DocManager = docMgr;
this.StartDate = dStartDate;
this.Document = doc;
//Rather strangely, this line is needed for God knows Why...
//Without it, the Grid tries to draw appointments, but can't.
//Making a constructor in the Calendar Grid itself didn't work. Don't know why.
//XXX: For later investigation.
this.Appointments = new CGAppointments();
// Set username and division up top
this.Text = CGDocumentManager.Current.RemoteSession.User.Name;
if (sText != null)
this.Text += " - " + sText;
if (CGDocumentManager.Current.RemoteSession.User.Division.Name != null)
this.Text += " - " + CGDocumentManager.Current.RemoteSession.User.Division.Name;
CGDocumentManager.Current.RemoteSession.EventServices.RpmsEvent += BMXNetEventHandler;
}
#endregion initialization
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CGView));
this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components);
this.mnuFile = new System.Windows.Forms.MenuItem();
this.mnuOpenSchedule = new System.Windows.Forms.MenuItem();
this.mnuOpenMultipleSchedules = new System.Windows.Forms.MenuItem();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.mnuRPMSServer = new System.Windows.Forms.MenuItem();
this.mnuRPMSLogin = new System.Windows.Forms.MenuItem();
this.mnuRPMSDivision = new System.Windows.Forms.MenuItem();
this.menuItem3 = new System.Windows.Forms.MenuItem();
this.mnuSchedulingManagment = new System.Windows.Forms.MenuItem();
this.menuItem6 = new System.Windows.Forms.MenuItem();
this.mnuPrintClinicSchedules = new System.Windows.Forms.MenuItem();
this.mnuPrintReminderLetters = new System.Windows.Forms.MenuItem();
this.mnuPrintRebookLetters = new System.Windows.Forms.MenuItem();
this.mnuPrintCancellationLetters = new System.Windows.Forms.MenuItem();
this.mnuPrintPatientLetter = new System.Windows.Forms.MenuItem();
this.menuItem7 = new System.Windows.Forms.MenuItem();
this.mnuClose = new System.Windows.Forms.MenuItem();
this.mnuAppointment = new System.Windows.Forms.MenuItem();
this.mnuNewAppointment = new System.Windows.Forms.MenuItem();
this.mnuWalkIn = new System.Windows.Forms.MenuItem();
this.mnuMkRadAppt = new System.Windows.Forms.MenuItem();
this.mnuEditAppointment = new System.Windows.Forms.MenuItem();
this.mnuDeleteAppointment = new System.Windows.Forms.MenuItem();
this.mnuCancelRadAppt = new System.Windows.Forms.MenuItem();
this.sepApptMenu1 = new System.Windows.Forms.MenuItem();
this.mnuNoShow = new System.Windows.Forms.MenuItem();
this.mnuNoShowUndo = new System.Windows.Forms.MenuItem();
this.sepApptMenu2 = new System.Windows.Forms.MenuItem();
this.mnuCheckIn = new System.Windows.Forms.MenuItem();
this.mnuUndoCheckin = new System.Windows.Forms.MenuItem();
this.sepApptMenu3 = new System.Windows.Forms.MenuItem();
this.mnuFindAppt = new System.Windows.Forms.MenuItem();
this.mnuCopyAppointment = new System.Windows.Forms.MenuItem();
this.mnuViewPatientAppts = new System.Windows.Forms.MenuItem();
this.mnuReprintApptSlip = new System.Windows.Forms.MenuItem();
this.mnuCalendar = new System.Windows.Forms.MenuItem();
this.mnuDisplayWalkIns = new System.Windows.Forms.MenuItem();
this.mnu1Day = new System.Windows.Forms.MenuItem();
this.mnu5Day = new System.Windows.Forms.MenuItem();
this.mnu7Day = new System.Windows.Forms.MenuItem();
this.menuItem4 = new System.Windows.Forms.MenuItem();
this.mnuTimeScale = new System.Windows.Forms.MenuItem();
this.mnu10Minute = new System.Windows.Forms.MenuItem();
this.mnu15Minute = new System.Windows.Forms.MenuItem();
this.mnu20Minute = new System.Windows.Forms.MenuItem();
this.mnu30Minute = new System.Windows.Forms.MenuItem();
this.mnuViewScheduleTree = new System.Windows.Forms.MenuItem();
this.mnuViewRightPanel = new System.Windows.Forms.MenuItem();
this.menuItem12 = new System.Windows.Forms.MenuItem();
this.mnuRefresh = new System.Windows.Forms.MenuItem();
this.mnuHelp = new System.Windows.Forms.MenuItem();
this.mnuHelpAbout = new System.Windows.Forms.MenuItem();
this.mnuViewBrokerLog = new System.Windows.Forms.MenuItem();
this.mnuTest = new System.Windows.Forms.MenuItem();
this.mnuTest1 = new System.Windows.Forms.MenuItem();
this.tvSchedules = new System.Windows.Forms.TreeView();
this.ctxResourceTree = new System.Windows.Forms.ContextMenu();
this.ctxOpenSchedule = new System.Windows.Forms.MenuItem();
this.ctxEditAvailability = new System.Windows.Forms.MenuItem();
this.ctxProperties = new System.Windows.Forms.MenuItem();
this.ctxFindAppt = new System.Windows.Forms.MenuItem();
this.ctxPrintScheduleT0 = new System.Windows.Forms.MenuItem();
this.ctxPrintScheduleT1 = new System.Windows.Forms.MenuItem();
this.ctxPrintScheduleT3 = new System.Windows.Forms.MenuItem();
this.panelRight = new System.Windows.Forms.Panel();
this.panelClip = new System.Windows.Forms.Panel();
this.lstClip = new System.Windows.Forms.ListBox();
this.ctxApptClipMenu = new System.Windows.Forms.ContextMenu();
this.mnuRemoveClipItem = new System.Windows.Forms.MenuItem();
this.mnuClearClipItems = new System.Windows.Forms.MenuItem();
this.label1 = new System.Windows.Forms.Label();
this.panelTop = new System.Windows.Forms.Panel();
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
this.lblResource = new System.Windows.Forms.Label();
this.panelCenter = new System.Windows.Forms.Panel();
this.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid();
this.ctxCalendarGrid = new System.Windows.Forms.ContextMenu();
this.ctxCalGridAdd = new System.Windows.Forms.MenuItem();
this.ctxCalGridMkRadAppt = new System.Windows.Forms.MenuItem();
this.ctxCalGridEdit = new System.Windows.Forms.MenuItem();
this.ctxCalGridDelete = new System.Windows.Forms.MenuItem();
this.ctxCalGridCancelRadAppt = new System.Windows.Forms.MenuItem();
this.ctxCalGridCloneForward = new System.Windows.Forms.MenuItem();
this.ctxCopyAppointment = new System.Windows.Forms.MenuItem();
this.ctxCalGridCheckIn = new System.Windows.Forms.MenuItem();
this.ctxCalGridUndoCheckin = new System.Windows.Forms.MenuItem();
this.ctxCalGridNoShow = new System.Windows.Forms.MenuItem();
this.ctxCalGridNoShowUndo = new System.Windows.Forms.MenuItem();
this.ctxCalGridSep1 = new System.Windows.Forms.MenuItem();
this.ctxCalGridExportInvite = new System.Windows.Forms.MenuItem();
this.ctxCalGridSep2 = new System.Windows.Forms.MenuItem();
this.ctxCalGridWalkin = new System.Windows.Forms.MenuItem();
this.ctxCalGridSep3 = new System.Windows.Forms.MenuItem();
this.ctxCalGridReprintApptSlip = new System.Windows.Forms.MenuItem();
this.panelBottom = new System.Windows.Forms.Panel();
this.statusBar1 = new System.Windows.Forms.StatusBar();
this.splitter1 = new System.Windows.Forms.Splitter();
this.splitter2 = new System.Windows.Forms.Splitter();
this.panelRight.SuspendLayout();
this.panelClip.SuspendLayout();
this.panelTop.SuspendLayout();
this.panelCenter.SuspendLayout();
this.panelBottom.SuspendLayout();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuFile,
this.mnuAppointment,
this.mnuCalendar,
this.mnuHelp,
this.mnuTest});
//
// mnuFile
//
this.mnuFile.Index = 0;
this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuOpenSchedule,
this.mnuOpenMultipleSchedules,
this.menuItem1,
this.mnuRPMSServer,
this.mnuRPMSLogin,
this.mnuRPMSDivision,
this.menuItem3,
this.mnuSchedulingManagment,
this.menuItem6,
this.mnuPrintClinicSchedules,
this.mnuPrintReminderLetters,
this.mnuPrintRebookLetters,
this.mnuPrintCancellationLetters,
this.mnuPrintPatientLetter,
this.menuItem7,
this.mnuClose});
this.mnuFile.Text = "&File";
this.mnuFile.Popup += new System.EventHandler(this.mnuFile_Popup);
//
// mnuOpenSchedule
//
this.mnuOpenSchedule.Enabled = false;
this.mnuOpenSchedule.Index = 0;
this.mnuOpenSchedule.Text = "&Open Schedule";
this.mnuOpenSchedule.Visible = false;
this.mnuOpenSchedule.Click += new System.EventHandler(this.mnuOpenSchedule_Click);
//
// mnuOpenMultipleSchedules
//
this.mnuOpenMultipleSchedules.Index = 1;
this.mnuOpenMultipleSchedules.Shortcut = System.Windows.Forms.Shortcut.CtrlM;
this.mnuOpenMultipleSchedules.Text = "Open M&ultiple Schedules";
this.mnuOpenMultipleSchedules.Click += new System.EventHandler(this.mnuOpenMultipleSchedules_Click);
//
// menuItem1
//
this.menuItem1.Index = 2;
this.menuItem1.Text = "-";
//
// mnuRPMSServer
//
this.mnuRPMSServer.Index = 3;
this.mnuRPMSServer.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftS;
this.mnuRPMSServer.Text = "Change VistA &Server";
this.mnuRPMSServer.Click += new System.EventHandler(this.mnuRPMSServer_Click);
//
// mnuRPMSLogin
//
this.mnuRPMSLogin.Index = 4;
this.mnuRPMSLogin.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftL;
this.mnuRPMSLogin.Text = "Change VistA &Login";
this.mnuRPMSLogin.Click += new System.EventHandler(this.mnuRPMSLogin_Click);
//
// mnuRPMSDivision
//
this.mnuRPMSDivision.Index = 5;
this.mnuRPMSDivision.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftD;
this.mnuRPMSDivision.Text = "Change VistA &Division";
this.mnuRPMSDivision.Click += new System.EventHandler(this.mnuRPMSDivision_Click);
//
// menuItem3
//
this.menuItem3.Index = 6;
this.menuItem3.Text = "-";
//
// mnuSchedulingManagment
//
this.mnuSchedulingManagment.Index = 7;
this.mnuSchedulingManagment.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftM;
this.mnuSchedulingManagment.Text = "Scheduling &Management";
this.mnuSchedulingManagment.Click += new System.EventHandler(this.mnuSchedulingManagment_Click);
//
// menuItem6
//
this.menuItem6.Index = 8;
this.menuItem6.Text = "-";
//
// mnuPrintClinicSchedules
//
this.mnuPrintClinicSchedules.Index = 9;
this.mnuPrintClinicSchedules.Shortcut = System.Windows.Forms.Shortcut.CtrlP;
this.mnuPrintClinicSchedules.Text = "&Print Clinic Schedules";
this.mnuPrintClinicSchedules.Click += new System.EventHandler(this.mnuPrintClinicSchedules_Click);
//
// mnuPrintReminderLetters
//
this.mnuPrintReminderLetters.Index = 10;
this.mnuPrintReminderLetters.Shortcut = System.Windows.Forms.Shortcut.CtrlE;
this.mnuPrintReminderLetters.Text = "Print Rem&inder Letters";
this.mnuPrintReminderLetters.Click += new System.EventHandler(this.mnuPrintReminderLetters_Click);
//
// mnuPrintRebookLetters
//
this.mnuPrintRebookLetters.Index = 11;
this.mnuPrintRebookLetters.Shortcut = System.Windows.Forms.Shortcut.CtrlR;
this.mnuPrintRebookLetters.Text = "Print &Rebook Letters";
this.mnuPrintRebookLetters.Click += new System.EventHandler(this.mnuPrintRebookLetters_Click);
//
// mnuPrintCancellationLetters
//
this.mnuPrintCancellationLetters.Index = 12;
this.mnuPrintCancellationLetters.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftC;
this.mnuPrintCancellationLetters.Text = "Print C&ancellation Letters";
this.mnuPrintCancellationLetters.Click += new System.EventHandler(this.mnuPrintCancellationLetters_Click);
//
// mnuPrintPatientLetter
//
this.mnuPrintPatientLetter.Index = 13;
this.mnuPrintPatientLetter.Shortcut = System.Windows.Forms.Shortcut.CtrlL;
this.mnuPrintPatientLetter.Text = "Print Patient Le&tter";
this.mnuPrintPatientLetter.Click += new System.EventHandler(this.mnuPrintPatientLetter_Click);
//
// menuItem7
//
this.menuItem7.Index = 14;
this.menuItem7.Text = "-";
//
// mnuClose
//
this.mnuClose.Index = 15;
this.mnuClose.Shortcut = System.Windows.Forms.Shortcut.CtrlW;
this.mnuClose.Text = "&Close Schedule";
this.mnuClose.Click += new System.EventHandler(this.mnuClose_Click);
//
// mnuAppointment
//
this.mnuAppointment.Index = 1;
this.mnuAppointment.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuNewAppointment,
this.mnuWalkIn,
this.mnuMkRadAppt,
this.mnuEditAppointment,
this.mnuDeleteAppointment,
this.mnuCancelRadAppt,
this.sepApptMenu1,
this.mnuNoShow,
this.mnuNoShowUndo,
this.sepApptMenu2,
this.mnuCheckIn,
this.mnuUndoCheckin,
this.sepApptMenu3,
this.mnuFindAppt,
this.mnuCopyAppointment,
this.mnuViewPatientAppts,
this.mnuReprintApptSlip});
this.mnuAppointment.Text = "&Appointment";
this.mnuAppointment.Popup += new System.EventHandler(this.mnuAppointment_Popup);
//
// mnuNewAppointment
//
this.mnuNewAppointment.Index = 0;
this.mnuNewAppointment.Shortcut = System.Windows.Forms.Shortcut.Ins;
this.mnuNewAppointment.Text = "&New Appointment";
this.mnuNewAppointment.Click += new System.EventHandler(this.mnuNewAppointment_Click);
//
// mnuWalkIn
//
this.mnuWalkIn.Index = 1;
this.mnuWalkIn.Shortcut = System.Windows.Forms.Shortcut.ShiftIns;
this.mnuWalkIn.Text = "Create Wal&k-In Appointment";
this.mnuWalkIn.Click += new System.EventHandler(this.mnuWalkIn_Click);
//
// mnuMkRadAppt
//
this.mnuMkRadAppt.Index = 2;
this.mnuMkRadAppt.Shortcut = System.Windows.Forms.Shortcut.CtrlIns;
this.mnuMkRadAppt.Text = "Make Radiology Appointment";
this.mnuMkRadAppt.Click += new System.EventHandler(this.mnuMkRadAppt_Click);
//
// mnuEditAppointment
//
this.mnuEditAppointment.Index = 3;
this.mnuEditAppointment.Shortcut = System.Windows.Forms.Shortcut.F2;
this.mnuEditAppointment.Text = "&Edit Appointment";
this.mnuEditAppointment.Click += new System.EventHandler(this.mnuEditAppointment_Click);
//
// mnuDeleteAppointment
//
this.mnuDeleteAppointment.Index = 4;
this.mnuDeleteAppointment.Shortcut = System.Windows.Forms.Shortcut.Del;
this.mnuDeleteAppointment.Text = "Cance&l Appointment";
this.mnuDeleteAppointment.Click += new System.EventHandler(this.mnuDeleteAppointment_Click);
//
// mnuCancelRadAppt
//
this.mnuCancelRadAppt.Index = 5;
this.mnuCancelRadAppt.Shortcut = System.Windows.Forms.Shortcut.CtrlDel;
this.mnuCancelRadAppt.Text = "Cancel Radiology Appointment";
this.mnuCancelRadAppt.Click += new System.EventHandler(this.mnuCancelRadAppt_Click);
//
// sepApptMenu1
//
this.sepApptMenu1.Index = 6;
this.sepApptMenu1.Text = "-";
//
// mnuNoShow
//
this.mnuNoShow.Index = 7;
this.mnuNoShow.Shortcut = System.Windows.Forms.Shortcut.CtrlN;
this.mnuNoShow.Text = "Mark as No Sho&w";
this.mnuNoShow.Click += new System.EventHandler(this.mnuNoShow_Click);
//
// mnuNoShowUndo
//
this.mnuNoShowUndo.Index = 8;
this.mnuNoShowUndo.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftN;
this.mnuNoShowUndo.Text = "&Undo No Show";
this.mnuNoShowUndo.Click += new System.EventHandler(this.mnuNoShowUndo_Click);
//
// sepApptMenu2
//
this.sepApptMenu2.Index = 9;
this.sepApptMenu2.Text = "-";
//
// mnuCheckIn
//
this.mnuCheckIn.Index = 10;
this.mnuCheckIn.Shortcut = System.Windows.Forms.Shortcut.CtrlI;
this.mnuCheckIn.Text = "Check &In Patient";
this.mnuCheckIn.Click += new System.EventHandler(this.mnuCheckIn_Click);
//
// mnuUndoCheckin
//
this.mnuUndoCheckin.Index = 11;
this.mnuUndoCheckin.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftI;
this.mnuUndoCheckin.Text = "Undo Checkin";
this.mnuUndoCheckin.Click += new System.EventHandler(this.mnuUndoCheckin_Click);
//
// sepApptMenu3
//
this.sepApptMenu3.Index = 12;
this.sepApptMenu3.Text = "-";
//
// mnuFindAppt
//
this.mnuFindAppt.Index = 13;
this.mnuFindAppt.Shortcut = System.Windows.Forms.Shortcut.CtrlF;
this.mnuFindAppt.Text = "&Find Empty Slots";
this.mnuFindAppt.Click += new System.EventHandler(this.mnuFindAppt_Click);
//
// mnuCopyAppointment
//
this.mnuCopyAppointment.Index = 14;
this.mnuCopyAppointment.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
this.mnuCopyAppointment.Text = "&Copy Appointment to Clipboard";
this.mnuCopyAppointment.Click += new System.EventHandler(this.mnuCopyAppointment_Click);
//
// mnuViewPatientAppts
//
this.mnuViewPatientAppts.Index = 15;
this.mnuViewPatientAppts.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftZ;
this.mnuViewPatientAppts.Text = "&View Patient Appointments";
this.mnuViewPatientAppts.Click += new System.EventHandler(this.mnuViewPatientAppts_Click);
//
// mnuReprintApptSlip
//
this.mnuReprintApptSlip.Index = 16;
this.mnuReprintApptSlip.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftP;
this.mnuReprintApptSlip.Text = "Reprint Appointment Slip";
this.mnuReprintApptSlip.Click += new System.EventHandler(this.mnuReprintApptSlip_Click);
//
// mnuCalendar
//
this.mnuCalendar.Index = 2;
this.mnuCalendar.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuDisplayWalkIns,
this.mnu1Day,
this.mnu5Day,
this.mnu7Day,
this.menuItem4,
this.mnuTimeScale,
this.mnuViewScheduleTree,
this.mnuViewRightPanel,
this.menuItem12,
this.mnuRefresh});
this.mnuCalendar.Text = "&View";
//
// mnuDisplayWalkIns
//
this.mnuDisplayWalkIns.Checked = true;
this.mnuDisplayWalkIns.Index = 0;
this.mnuDisplayWalkIns.Shortcut = System.Windows.Forms.Shortcut.F12;
this.mnuDisplayWalkIns.Text = "&Display Walk-Ins";
this.mnuDisplayWalkIns.Click += new System.EventHandler(this.mnuDisplayWalkIns_Click);
//
// mnu1Day
//
this.mnu1Day.Index = 1;
this.mnu1Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl1;
this.mnu1Day.Text = "&1-Day View";
this.mnu1Day.Click += new System.EventHandler(this.mnu1Day_Click);
//
// mnu5Day
//
this.mnu5Day.Index = 2;
this.mnu5Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl5;
this.mnu5Day.Text = "&5-Day View";
this.mnu5Day.Click += new System.EventHandler(this.mnu5Day_Click);
//
// mnu7Day
//
this.mnu7Day.Index = 3;
this.mnu7Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl7;
this.mnu7Day.Text = "&7-Day View";
this.mnu7Day.Click += new System.EventHandler(this.mnu7Day_Click);
//
// menuItem4
//
this.menuItem4.Index = 4;
this.menuItem4.Text = "-";
//
// mnuTimeScale
//
this.mnuTimeScale.Index = 5;
this.mnuTimeScale.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnu10Minute,
this.mnu15Minute,
this.mnu20Minute,
this.mnu30Minute});
this.mnuTimeScale.Text = "&Time Scale";
//
// mnu10Minute
//
this.mnu10Minute.Enabled = false;
this.mnu10Minute.Index = 0;
this.mnu10Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl0;
this.mnu10Minute.Text = "&10-Minute";
this.mnu10Minute.Click += new System.EventHandler(this.mnu10Minute_Click);
//
// mnu15Minute
//
this.mnu15Minute.Enabled = false;
this.mnu15Minute.Index = 1;
this.mnu15Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl4;
this.mnu15Minute.Text = "1&5-Minute";
this.mnu15Minute.Click += new System.EventHandler(this.mnu15Minute_Click);
//
// mnu20Minute
//
this.mnu20Minute.Enabled = false;
this.mnu20Minute.Index = 2;
this.mnu20Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl3;
this.mnu20Minute.Text = "&20-Minute";
this.mnu20Minute.Click += new System.EventHandler(this.mnu20Minute_Click);
//
// mnu30Minute
//
this.mnu30Minute.Enabled = false;
this.mnu30Minute.Index = 3;
this.mnu30Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl2;
this.mnu30Minute.Text = "&30-Minute";
this.mnu30Minute.Click += new System.EventHandler(this.mnu30Minute_Click);
//
// mnuViewScheduleTree
//
this.mnuViewScheduleTree.Checked = true;
this.mnuViewScheduleTree.Index = 6;
this.mnuViewScheduleTree.Shortcut = System.Windows.Forms.Shortcut.F4;
this.mnuViewScheduleTree.Text = "&Schedule Tree";
this.mnuViewScheduleTree.Click += new System.EventHandler(this.mnuViewScheduleTree_Click);
//
// mnuViewRightPanel
//
this.mnuViewRightPanel.Index = 7;
this.mnuViewRightPanel.Text = "&Appointment Clipboard";
this.mnuViewRightPanel.Click += new System.EventHandler(this.mnuViewRightPanel_Click);
//
// menuItem12
//
this.menuItem12.Index = 8;
this.menuItem12.Text = "-";
//
// mnuRefresh
//
this.mnuRefresh.Index = 9;
this.mnuRefresh.Shortcut = System.Windows.Forms.Shortcut.F5;
this.mnuRefresh.Text = "Refresh Data";
this.mnuRefresh.Click += new System.EventHandler(this.mnuRefresh_Click);
//
// mnuHelp
//
this.mnuHelp.Index = 3;
this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuHelpAbout,
this.mnuViewBrokerLog});
this.mnuHelp.Text = "&Help";
//
// mnuHelpAbout
//
this.mnuHelpAbout.Index = 0;
this.mnuHelpAbout.Text = "&About";
this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);
//
// mnuViewBrokerLog
//
this.mnuViewBrokerLog.Index = 1;
this.mnuViewBrokerLog.Text = "&View Broker Log";
this.mnuViewBrokerLog.Click += new System.EventHandler(this.mnuViewBrokerLog_Click);
//
// mnuTest
//
this.mnuTest.Enabled = false;
this.mnuTest.Index = 4;
this.mnuTest.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuTest1});
this.mnuTest.Text = "&Test";
this.mnuTest.Visible = false;
//
// mnuTest1
//
this.mnuTest1.Index = 0;
this.mnuTest1.Text = "Test1";
//
// tvSchedules
//
this.tvSchedules.BackColor = System.Drawing.SystemColors.ControlLight;
this.tvSchedules.ContextMenu = this.ctxResourceTree;
this.tvSchedules.Dock = System.Windows.Forms.DockStyle.Left;
this.tvSchedules.HotTracking = true;
this.tvSchedules.Location = new System.Drawing.Point(0, 0);
this.tvSchedules.Name = "tvSchedules";
this.tvSchedules.Size = new System.Drawing.Size(128, 305);
this.tvSchedules.Sorted = true;
this.tvSchedules.TabIndex = 1;
this.tvSchedules.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvSchedules_AfterSelect);
this.tvSchedules.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.tvSchedules_NodeMouseClick);
this.tvSchedules.DoubleClick += new System.EventHandler(this.tvSchedules_DoubleClick);
this.tvSchedules.MouseEnter += new System.EventHandler(this.tvSchedules_MouseEnter);
//
// ctxResourceTree
//
this.ctxResourceTree.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.ctxOpenSchedule,
this.ctxEditAvailability,
this.ctxProperties,
this.ctxFindAppt,
this.ctxPrintScheduleT0,
this.ctxPrintScheduleT1,
this.ctxPrintScheduleT3});
this.ctxResourceTree.Popup += new System.EventHandler(this.contextMenu1_Popup);
//
// ctxOpenSchedule
//
this.ctxOpenSchedule.DefaultItem = true;
this.ctxOpenSchedule.Index = 0;
this.ctxOpenSchedule.Text = "&Open Schedule";
this.ctxOpenSchedule.Click += new System.EventHandler(this.ctxOpenSchedule_Click);
//
// ctxEditAvailability
//
this.ctxEditAvailability.Index = 1;
this.ctxEditAvailability.Text = "&Edit Resource Availability";
this.ctxEditAvailability.Click += new System.EventHandler(this.ctxEditAvailability_Click);
//
// ctxProperties
//
this.ctxProperties.Index = 2;
this.ctxProperties.Text = "P&roperties";
this.ctxProperties.Click += new System.EventHandler(this.ctxProperties_Click);
//
// ctxFindAppt
//
this.ctxFindAppt.Index = 3;
this.ctxFindAppt.Text = "&Find Empty Slots";
this.ctxFindAppt.Click += new System.EventHandler(this.ctxFindAppt_Click);
//
// ctxPrintScheduleT0
//
this.ctxPrintScheduleT0.Index = 4;
this.ctxPrintScheduleT0.Text = "Print Clinic Schedule(s) (T+&0)";
this.ctxPrintScheduleT0.Click += new System.EventHandler(this.ctxPrintScheduleT0_Click);
//
// ctxPrintScheduleT1
//
this.ctxPrintScheduleT1.Index = 5;
this.ctxPrintScheduleT1.Text = "Print Clinic Schedule(s) (T+&1)";
this.ctxPrintScheduleT1.Click += new System.EventHandler(this.ctxPrintScheduleT1_Click);
//
// ctxPrintScheduleT3
//
this.ctxPrintScheduleT3.Index = 6;
this.ctxPrintScheduleT3.Text = "Print Clinic Schedule(s) (T+&3)";
this.ctxPrintScheduleT3.Click += new System.EventHandler(this.ctxPrintScheduleT3_Click);
//
// panelRight
//
this.panelRight.Controls.Add(this.panelClip);
this.panelRight.Dock = System.Windows.Forms.DockStyle.Right;
this.panelRight.Location = new System.Drawing.Point(996, 0);
this.panelRight.Name = "panelRight";
this.panelRight.Size = new System.Drawing.Size(128, 305);
this.panelRight.TabIndex = 3;
this.panelRight.Visible = false;
//
// panelClip
//
this.panelClip.Controls.Add(this.lstClip);
this.panelClip.Controls.Add(this.label1);
this.panelClip.Dock = System.Windows.Forms.DockStyle.Top;
this.panelClip.Location = new System.Drawing.Point(0, 0);
this.panelClip.Name = "panelClip";
this.panelClip.Size = new System.Drawing.Size(128, 448);
this.panelClip.TabIndex = 0;
//
// lstClip
//
this.lstClip.AllowDrop = true;
this.lstClip.ContextMenu = this.ctxApptClipMenu;
this.lstClip.DisplayMember = "PatientName";
this.lstClip.Dock = System.Windows.Forms.DockStyle.Fill;
this.lstClip.Location = new System.Drawing.Point(0, 32);
this.lstClip.Name = "lstClip";
this.lstClip.Size = new System.Drawing.Size(128, 416);
this.lstClip.TabIndex = 0;
this.lstClip.SelectedIndexChanged += new System.EventHandler(this.lstClip_SelectedIndexChanged);
this.lstClip.DragDrop += new System.Windows.Forms.DragEventHandler(this.lstClip_DragDrop);
this.lstClip.DragEnter += new System.Windows.Forms.DragEventHandler(this.lstClip_DragEnter);
this.lstClip.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lstClip_MouseDown);
this.lstClip.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lstClip_MouseMove);
//
// ctxApptClipMenu
//
this.ctxApptClipMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuRemoveClipItem,
this.mnuClearClipItems});
this.ctxApptClipMenu.Popup += new System.EventHandler(this.ctxApptClipMenu_Popup);
//
// mnuRemoveClipItem
//
this.mnuRemoveClipItem.Index = 0;
this.mnuRemoveClipItem.Text = "Remove Item";
this.mnuRemoveClipItem.Click += new System.EventHandler(this.mnuRemoveClipItem_Click);
//
// mnuClearClipItems
//
this.mnuClearClipItems.Index = 1;
this.mnuClearClipItems.Text = "Clear All";
this.mnuClearClipItems.Click += new System.EventHandler(this.mnuClearClipItems_Click);
//
// label1
//
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
this.label1.Location = new System.Drawing.Point(0, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(128, 32);
this.label1.TabIndex = 1;
this.label1.Text = "Appointment Clipboard";
this.label1.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
//
// panelTop
//
this.panelTop.Controls.Add(this.dateTimePicker1);
this.panelTop.Controls.Add(this.lblResource);
this.panelTop.Dock = System.Windows.Forms.DockStyle.Top;
this.panelTop.Location = new System.Drawing.Point(128, 0);
this.panelTop.Name = "panelTop";
this.panelTop.Size = new System.Drawing.Size(868, 24);
this.panelTop.TabIndex = 6;
//
// dateTimePicker1
//
this.dateTimePicker1.Dock = System.Windows.Forms.DockStyle.Right;
this.dateTimePicker1.DropDownAlign = System.Windows.Forms.LeftRightAlignment.Right;
this.dateTimePicker1.Location = new System.Drawing.Point(662, 0);
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(206, 20);
this.dateTimePicker1.TabIndex = 1;
this.dateTimePicker1.CloseUp += new System.EventHandler(this.dateTimePicker1_CloseUp);
this.dateTimePicker1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.dateTimePicker1_KeyPress);
this.dateTimePicker1.Leave += new System.EventHandler(this.dateTimePicker1_Leave);
//
// lblResource
//
this.lblResource.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblResource.ForeColor = System.Drawing.SystemColors.Highlight;
this.lblResource.Location = new System.Drawing.Point(8, 5);
this.lblResource.Name = "lblResource";
this.lblResource.Size = new System.Drawing.Size(456, 19);
this.lblResource.TabIndex = 2;
//
// panelCenter
//
this.panelCenter.Controls.Add(this.calendarGrid1);
this.panelCenter.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelCenter.Location = new System.Drawing.Point(136, 24);
this.panelCenter.Name = "panelCenter";
this.panelCenter.Size = new System.Drawing.Size(857, 257);
this.panelCenter.TabIndex = 7;
//
// calendarGrid1
//
this.calendarGrid1.AllowDrop = true;
this.calendarGrid1.Appointments = null;
this.calendarGrid1.ApptDragSource = null;
this.calendarGrid1.AutoScroll = true;
this.calendarGrid1.AutoScrollMinSize = new System.Drawing.Size(600, 1898);
this.calendarGrid1.AvailabilityArray = null;
this.calendarGrid1.BackColor = System.Drawing.SystemColors.Window;
this.calendarGrid1.Columns = 5;
this.calendarGrid1.ContextMenu = this.ctxCalendarGrid;
this.calendarGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
this.calendarGrid1.DrawWalkIns = true;
this.calendarGrid1.GridBackColor = null;
this.calendarGrid1.GridEnter = false;
this.calendarGrid1.Location = new System.Drawing.Point(0, 0);
this.calendarGrid1.Name = "calendarGrid1";
this.calendarGrid1.Resources = ((System.Collections.ArrayList)(resources.GetObject("calendarGrid1.Resources")));
this.calendarGrid1.SelectedAppointment = 0;
this.calendarGrid1.Size = new System.Drawing.Size(857, 257);
this.calendarGrid1.StartDate = new System.DateTime(2003, 1, 27, 0, 0, 0, 0);
this.calendarGrid1.TabIndex = 0;
this.calendarGrid1.TimeScale = 20;
this.calendarGrid1.CGAppointmentChanged += new IndianHealthService.ClinicalScheduling.CalendarGrid.CGAppointmentChangedHandler(this.calendarGrid1_CGAppointmentChanged);
this.calendarGrid1.CGAppointmentAdded += new IndianHealthService.ClinicalScheduling.CalendarGrid.CGAppointmentChangedHandler(this.calendarGrid1_CGAppointmentAdded);
this.calendarGrid1.CGSelectionChanged += new IndianHealthService.ClinicalScheduling.CalendarGrid.CGSelectionChangedHandler(this.calendarGrid1_CGSelectionChanged);
this.calendarGrid1.DoubleClick += new System.EventHandler(this.calendarGrid1_DoubleClick);
this.calendarGrid1.MouseEnter += new System.EventHandler(this.calendarGrid1_MouseEnter);
//
// ctxCalendarGrid
//
this.ctxCalendarGrid.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.ctxCalGridAdd,
this.ctxCalGridMkRadAppt,
this.ctxCalGridEdit,
this.ctxCalGridDelete,
this.ctxCalGridCancelRadAppt,
this.ctxCalGridCloneForward,
this.ctxCopyAppointment,
this.ctxCalGridCheckIn,
this.ctxCalGridUndoCheckin,
this.ctxCalGridNoShow,
this.ctxCalGridNoShowUndo,
this.ctxCalGridSep1,
this.ctxCalGridExportInvite,
this.ctxCalGridSep2,
this.ctxCalGridWalkin,
this.ctxCalGridSep3,
this.ctxCalGridReprintApptSlip});
this.ctxCalendarGrid.Popup += new System.EventHandler(this.ctxCalendarGrid_Popup);
//
// ctxCalGridAdd
//
this.ctxCalGridAdd.Index = 0;
this.ctxCalGridAdd.Text = "Add Appointment";
this.ctxCalGridAdd.Click += new System.EventHandler(this.ctxCalGridAdd_Click);
//
// ctxCalGridMkRadAppt
//
this.ctxCalGridMkRadAppt.Index = 1;
this.ctxCalGridMkRadAppt.Text = "Make Radiology Appointment";
this.ctxCalGridMkRadAppt.Click += new System.EventHandler(this.ctxCalGridMkRadAppt_Click);
//
// ctxCalGridEdit
//
this.ctxCalGridEdit.Index = 2;
this.ctxCalGridEdit.Text = "Edit Appointment";
this.ctxCalGridEdit.Click += new System.EventHandler(this.ctxCalGridEdit_Click);
//
// ctxCalGridDelete
//
this.ctxCalGridDelete.Index = 3;
this.ctxCalGridDelete.Text = "Cancel Appointment";
this.ctxCalGridDelete.Click += new System.EventHandler(this.ctxCalGridDelete_Click);
//
// ctxCalGridCancelRadAppt
//
this.ctxCalGridCancelRadAppt.Index = 4;
this.ctxCalGridCancelRadAppt.Text = "Cancel Radiology Appointment";
this.ctxCalGridCancelRadAppt.Click += new System.EventHandler(this.ctxCalGridCancelRadAppt_Click);
//
// ctxCalGridCloneForward
//
this.ctxCalGridCloneForward.Index = 5;
this.ctxCalGridCloneForward.Text = "Copy/Forward Appointment";
this.ctxCalGridCloneForward.Click += new System.EventHandler(this.ctxCalGridCloneForward_Click);
//
// ctxCopyAppointment
//
this.ctxCopyAppointment.Index = 6;
this.ctxCopyAppointment.Text = "Copy to Clipboard";
this.ctxCopyAppointment.Click += new System.EventHandler(this.ctxCopyAppointment_Click);
//
// ctxCalGridCheckIn
//
this.ctxCalGridCheckIn.Index = 7;
this.ctxCalGridCheckIn.Text = "Check In Patient";
this.ctxCalGridCheckIn.Click += new System.EventHandler(this.ctxCalGridCheckIn_Click);
//
// ctxCalGridUndoCheckin
//
this.ctxCalGridUndoCheckin.Index = 8;
this.ctxCalGridUndoCheckin.Text = "&Undo Check In";
this.ctxCalGridUndoCheckin.Click += new System.EventHandler(this.ctxCalGridUndoCheckin_Click);
//
// ctxCalGridNoShow
//
this.ctxCalGridNoShow.Index = 9;
this.ctxCalGridNoShow.Text = "Mark as No Show";
this.ctxCalGridNoShow.Click += new System.EventHandler(this.ctxCalGridNoShow_Click);
//
// ctxCalGridNoShowUndo
//
this.ctxCalGridNoShowUndo.Index = 10;
this.ctxCalGridNoShowUndo.Text = "Undo NoShow";
this.ctxCalGridNoShowUndo.Click += new System.EventHandler(this.ctxCalGridNoShowUndo_Click);
//
// ctxCalGridSep1
//
this.ctxCalGridSep1.Index = 11;
this.ctxCalGridSep1.Text = "-";
//
// ctxCalGridExportInvite
//
this.ctxCalGridExportInvite.Index = 12;
this.ctxCalGridExportInvite.Text = "Export Canendar Invite";
this.ctxCalGridExportInvite.Click += new System.EventHandler(this.ctxExportInvite_Click);
//
// ctxCalGridSep2
//
this.ctxCalGridSep2.Index = 13;
this.ctxCalGridSep2.Text = "-";
//
// ctxCalGridWalkin
//
this.ctxCalGridWalkin.Index = 14;
this.ctxCalGridWalkin.Text = "Create Wal&k-In Appointment";
this.ctxCalGridWalkin.Click += new System.EventHandler(this.ctxCalGridWalkin_Click);
//
// ctxCalGridSep3
//
this.ctxCalGridSep3.Index = 15;
this.ctxCalGridSep3.Text = "-";
//
// ctxCalGridReprintApptSlip
//
this.ctxCalGridReprintApptSlip.Index = 16;
this.ctxCalGridReprintApptSlip.Text = "&Reprint Appointment Slip";
this.ctxCalGridReprintApptSlip.Click += new System.EventHandler(this.ctxCalGridReprintApptSlip_Click);
//
// panelBottom
//
this.panelBottom.Controls.Add(this.statusBar1);
this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panelBottom.Location = new System.Drawing.Point(136, 281);
this.panelBottom.Name = "panelBottom";
this.panelBottom.Size = new System.Drawing.Size(857, 24);
this.panelBottom.TabIndex = 8;
//
// statusBar1
//
this.statusBar1.Dock = System.Windows.Forms.DockStyle.Fill;
this.statusBar1.Location = new System.Drawing.Point(0, 0);
this.statusBar1.Name = "statusBar1";
this.statusBar1.Size = new System.Drawing.Size(857, 24);
this.statusBar1.SizingGrip = false;
this.statusBar1.TabIndex = 0;
//
// splitter1
//
this.splitter1.Location = new System.Drawing.Point(128, 24);
this.splitter1.Name = "splitter1";
this.splitter1.Size = new System.Drawing.Size(8, 281);
this.splitter1.TabIndex = 9;
this.splitter1.TabStop = false;
//
// splitter2
//
this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
this.splitter2.Location = new System.Drawing.Point(993, 24);
this.splitter2.Name = "splitter2";
this.splitter2.Size = new System.Drawing.Size(3, 281);
this.splitter2.TabIndex = 10;
this.splitter2.TabStop = false;
//
// CGView
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(1124, 305);
this.Controls.Add(this.panelCenter);
this.Controls.Add(this.panelBottom);
this.Controls.Add(this.splitter2);
this.Controls.Add(this.splitter1);
this.Controls.Add(this.panelTop);
this.Controls.Add(this.panelRight);
this.Controls.Add(this.tvSchedules);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Menu = this.mainMenu1;
this.Name = "CGView";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "CGView";
this.Activated += new System.EventHandler(this.CGView_Activated);
this.Closing += new System.ComponentModel.CancelEventHandler(this.CGView_Closing);
this.Load += new System.EventHandler(this.CGView_Load);
this.CursorChanged += new System.EventHandler(this.CGView_CursorChanged);
this.panelRight.ResumeLayout(false);
this.panelClip.ResumeLayout(false);
this.panelTop.ResumeLayout(false);
this.panelCenter.ResumeLayout(false);
this.panelBottom.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
#region Fields
private CGDocument m_Document;
private CGDocumentManager m_DocManager;
private int m_nSlots;
private ArrayList m_alSelectedTreeResourceArray = new ArrayList();
private string m_sDocName;
private CGAppointments m_ClipList;
private bool m_bDragDropStart = false;
private Hashtable m_htOverbook;
private Hashtable m_htModifySchedule;
private Hashtable m_htChangeAppts;
#endregion Fields
#region Properties
/// <summary>
/// Access the CalendarGrid associated with this view
/// </summary>
public CalendarGrid CGrid
{
get
{
return this.calendarGrid1;
}
}
/// <summary>
/// Accesses the document associated with this view
/// </summary>
public CGDocument Document
{
get
{
return this.m_Document;
}
set
{
this.m_Document = value;
}
}
public CGDocumentManager DocManager
{
get
{
return m_DocManager;
}
set
{
m_DocManager = value;
}
}
public DateTime StartDate
{
get
{
return this.calendarGrid1.StartDate;
}
set
{
this.calendarGrid1.StartDate = value;
}
}
public CGAppointments Appointments
{
get
{
return this.calendarGrid1.Appointments;
}
set
{
this.calendarGrid1.Appointments = value;
}
}
#endregion
#region AppointmentMenu Handlers
private void mnuAppointment_Popup(object sender, System.EventArgs e)
{
// our flags
bool _findApptsEnabled = (this.Document.Resources.Count > 0)? true : false ;
bool _addApptsEnabled = AddAppointmentEnabled();
bool _editApptsEnabled = EditAppointmentEnabled();
bool _isRadAppt = IsThisARadiologyResource();
bool _noShowEnabled = NoShowEnabled();
bool _undoCheckinEnabled = UndoCheckinEnabled();
//end flags
mnuNewAppointment.Enabled = _addApptsEnabled && !_isRadAppt;
mnuWalkIn.Enabled = _addApptsEnabled && !_isRadAppt;
mnuMkRadAppt.Enabled = _isRadAppt && _addApptsEnabled;
mnuEditAppointment.Enabled = _editApptsEnabled && !_isRadAppt;
mnuDeleteAppointment.Enabled = _editApptsEnabled && !_isRadAppt;
mnuCancelRadAppt.Enabled = _isRadAppt && _editApptsEnabled;
mnuNoShow.Enabled = _noShowEnabled && _editApptsEnabled;
mnuNoShowUndo.Enabled = !_noShowEnabled && _editApptsEnabled;
mnuCheckIn.Enabled = _editApptsEnabled && !_isRadAppt;
mnuUndoCheckin.Enabled = _undoCheckinEnabled && !_isRadAppt;
mnuFindAppt.Enabled = _findApptsEnabled;
mnuCopyAppointment.Enabled = _editApptsEnabled && !_isRadAppt;
mnuViewPatientAppts.Enabled = true;
mnuReprintApptSlip.Enabled = _editApptsEnabled;
}
private void mnuCheckIn_Click(object sender, System.EventArgs e)
{
AppointmentCheckIn();
}
private void mnuCopyAppointment_Click(object sender, System.EventArgs e)
{
//For each appointment in the grid's selected list,
//add to the clip list
//and add to m_ClipList
try
{
foreach (CGAppointment a in this.calendarGrid1.SelectedAppointments.AppointmentTable.Values)
{
if (m_ClipList.AppointmentTable.Contains((int)a.AppointmentKey))
{
return;
}
m_ClipList.AddAppointment(a);
lstClip.Items.Add(a);
}
copyAppointmentToClipBoard();
}
catch (Exception ex)
{
string s = ex.Message;
Debug.Write(s);
return;
}
}
private void mnuDeleteAppointment_Click(object sender, System.EventArgs e)
{
AppointmentDelete();
}
private void mnuEditAppointment_Click(object sender, System.EventArgs e)
{
AppointmentEdit();
}
private void mnuNewAppointment_Click(object sender, System.EventArgs e)
{
AppointmentAddNew();
}
private void mnuNoShow_Click(object sender, System.EventArgs e)
{
AppointmentNoShow(true);
}
private void mnuNoShowUndo_Click(object sender, System.EventArgs e)
{
AppointmentNoShow(false);
}
private void ctxCalGridUndoCheckin_Click(object sender, EventArgs e)
{
AppointmentUndoCheckin();
}
private void mnuMkRadAppt_Click(object sender, EventArgs e)
{
AppointmentAddNewRadiology();
}
private void mnuCancelRadAppt_Click(object sender, EventArgs e)
{
AppointmentDeleteOneRadiology();
}
private void mnuUndoCheckin_Click(object sender, EventArgs e)
{
AppointmentUndoCheckin();
}
private void mnuReprintApptSlip_Click(object sender, EventArgs e)
{
int apptID = this.CGrid.SelectedAppointment;
if (apptID <= 0) return;
CGAppointment a = (CGAppointment)this.Appointments.AppointmentTable[apptID];
PrintAppointmentSlip(a);
}
#endregion AppointmentMenu Handlers
#region ContextMenu1 Handlers
private void contextMenu1_Popup(object sender, System.EventArgs e)
{
//Enable/disable OpenSchedule and Find Appointment options
bool bEnabled = (m_alSelectedTreeResourceArray.Count > 0)? true : false ;
this.ctxOpenSchedule.Enabled = bEnabled;
this.ctxFindAppt.Enabled = bEnabled;
this.ctxPrintScheduleT0.Enabled = bEnabled;
this.ctxPrintScheduleT1.Enabled = bEnabled;
this.ctxPrintScheduleT3.Enabled = bEnabled;
//properties not supported now
this.ctxProperties.Enabled = false;
this.ctxProperties.Visible = false;
//Enable/disable Availability menu option
if (m_alSelectedTreeResourceArray.Count != 1)
{
this.ctxEditAvailability.Enabled = false;
return;
}
if (this.DocManager.ScheduleManager == true)
{
ctxEditAvailability.Enabled = true;
return;
}
string sResource = (string) m_alSelectedTreeResourceArray[0];
DataTable dt = this.DocManager.GlobalDataSet.Tables["ResourceUser"];
DataView dv = new DataView(dt, "", "RESOURCENAME ASC", DataViewRowState.OriginalRows);
string sDuz = CGDocumentManager.Current.RemoteSession.User.Duz;
bool bModSchedule = false;
DataRowView[] drvA = dv.FindRows(sResource);
if (drvA.Length == 0)
{
this.ctxEditAvailability.Enabled = false;
}
else
{
string sModSchedule = "NO";
foreach (DataRowView drv in drvA)
{
if (drv["USERID"].ToString() == sDuz)
{
sModSchedule = drv["MODIFY_SCHEDULE"].ToString();
break;
}
}
bModSchedule = (sModSchedule == "YES")?true:false;
this.ctxEditAvailability.Enabled = bModSchedule;
}
}
private void ctxEditAvailability_Click(object sender, System.EventArgs e)
{
this.EditScheduleAvailability();
}
private void ctxOpenSchedule_Click(object sender, System.EventArgs e)
{
OpenSelectedSchedule(m_alSelectedTreeResourceArray, DateTime.Today);
}
private void ctxPrintScheduleT0_Click(object sender, EventArgs e)
{
PrintClinicSchedule(DateTime.Today, DateTime.Today);
}
private void ctxPrintScheduleT1_Click(object sender, EventArgs e)
{
PrintClinicSchedule(DateTime.Today.AddDays(1), DateTime.Today.AddDays(1));
}
private void ctxPrintScheduleT3_Click(object sender, EventArgs e)
{
PrintClinicSchedule(DateTime.Today.AddDays(3), DateTime.Today.AddDays(3));
}
private void ctxProperties_Click(object sender, System.EventArgs e)
{
//TODO: Implement Properties dialog
MessageBox.Show("TODO: Implement Properties dialog");
}
private void ctxFindAppt_Click(object sender, System.EventArgs e)
{
FindAvailableAppointment(m_alSelectedTreeResourceArray);
}
#endregion ContextMenu1 Handlers
#region ctxApptClipMenu Handlers
private void mnuClearClipItems_Click(object sender, System.EventArgs e)
{
this.m_ClipList.ClearAllAppointments();
lstClip.Items.Clear();
}
private void mnuRemoveClipItem_Click(object sender, System.EventArgs e)
{
int i = lstClip.SelectedIndex;
CGAppointment a = (CGAppointment) lstClip.SelectedItem;
int nKey = a.AppointmentKey;
if (i > -1)
{
m_ClipList.RemoveAppointment(nKey);
lstClip.Items.RemoveAt(i);
}
}
private void ctxApptClipMenu_Popup(object sender, System.EventArgs e)
{
mnuClearClipItems.Enabled = (m_ClipList.AppointmentTable.Count > 0);
mnuRemoveClipItem.Enabled = (lstClip.SelectedIndex > -1);
}
#endregion ctxApptClipMenu Handlers
#region ctxCalGridMenu Handlers
private Configuration GetConfiguration() {
Configuration conf = null;
var fileName = Path.Combine(Environment.GetFolderPath(
Environment.SpecialFolder.ApplicationData), "ClinicalScheduling.exe.config");
if (!File.Exists(fileName))
{
try
{
Configuration temp = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
File.Copy(temp.FilePath, fileName);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return conf;
}
}
if (!File.Exists(fileName))
{
MessageBox.Show("Unable to locate the app.config file.");
return conf;
}
ExeConfigurationFileMap mapping = new ExeConfigurationFileMap();
mapping.ExeConfigFilename = fileName;
conf = ConfigurationManager.OpenMappedExeConfiguration(mapping, ConfigurationUserLevel.None);
return conf;
}
private void ctxCalendarGrid_Popup(object sender, System.EventArgs e)
{
// our flags
bool _findApptsEnabled = (this.Document.Resources.Count > 0) ? true : false;
bool _addApptsEnabled = AddAppointmentEnabled();
bool _editApptsEnabled = EditAppointmentEnabled();
bool _isRadAppt = IsThisARadiologyResource();
bool _noShowEnabled = NoShowEnabled();
bool _undoCheckinEnabled = UndoCheckinEnabled();
bool _cloneForwardEnabled = CloneForwardEnabled();
bool _exportCalendarInviteEnabled = ExportCalendarInviteEnabled();
bool _copyAppointmentEnabled = CopyAppointmentEnabled();
//end flags
if (_isRadAppt)//this is a radiology resource
{
ctxCalGridAdd.Visible = false;
ctxCalGridDelete.Visible = false;
ctxCalGridEdit.Visible = false;
ctxCalGridCheckIn.Visible = false;
ctxCalGridNoShow.Visible = false;
ctxCalGridNoShowUndo.Visible = false;
ctxCalGridWalkin.Visible = false;
ctxCalGridUndoCheckin.Visible = false;
ctxCalGridSep2.Visible = false;
ctxCalGridCloneForward.Visible = false;
ctxCalGridExportInvite.Visible = false;
ctxCalGridSep1.Visible = false;
ctxCopyAppointment.Visible = false;
ctxCalGridMkRadAppt.Visible = true;
ctxCalGridCancelRadAppt.Visible = true;
}
else // this is a normal resource
{
ctxCalGridAdd.Visible = true;
ctxCalGridDelete.Visible = true;
ctxCalGridEdit.Visible = true;
ctxCalGridCheckIn.Visible = true;
ctxCalGridNoShow.Visible = true;
ctxCalGridNoShowUndo.Visible = true;
ctxCalGridWalkin.Visible = true;
ctxCalGridUndoCheckin.Visible = true;
ctxCalGridSep2.Visible = true;
ctxCalGridCloneForward.Visible = true;
ctxCalGridExportInvite.Visible = true;
ctxCalGridSep1.Visible = true;
ctxCopyAppointment.Visible = true;
ctxCalGridMkRadAppt.Visible = false;
ctxCalGridCancelRadAppt.Visible = false;
}
//Toggle availability of make, edit, checkin and delete appointments etc
//based on whether appropriate element is selected.
ctxCalGridAdd.Enabled = _addApptsEnabled && !_isRadAppt;
ctxCalGridWalkin.Enabled = _addApptsEnabled && !_isRadAppt;
ctxCalGridEdit.Enabled = _editApptsEnabled && !_isRadAppt;;
ctxCalGridDelete.Enabled = _editApptsEnabled && !_isRadAppt;
ctxCalGridCheckIn.Enabled = _editApptsEnabled && !_isRadAppt;
ctxCalGridUndoCheckin.Enabled = _undoCheckinEnabled && !_isRadAppt;
ctxCalGridNoShow.Enabled = _noShowEnabled && _editApptsEnabled;
ctxCalGridNoShowUndo.Enabled = !_noShowEnabled && _editApptsEnabled;
ctxCalGridReprintApptSlip.Enabled = _editApptsEnabled;
//if the rad ones are visible, then these apply
ctxCalGridMkRadAppt.Enabled = _isRadAppt && _addApptsEnabled;
ctxCalGridCancelRadAppt.Enabled = _isRadAppt && _editApptsEnabled;
ctxCalGridCloneForward.Enabled = !_isRadAppt && _cloneForwardEnabled;
ctxCalGridExportInvite.Enabled = !_isRadAppt && _exportCalendarInviteEnabled;
ctxCopyAppointment.Enabled = !_isRadAppt && _copyAppointmentEnabled;
//Configuration conf = GetConfiguration();
//MessageBox.Show(conf.ConnectionStrings["useEmail"]);
Configuration conf = GetConfiguration();
if (conf.AppSettings.Settings["useEmail"].Value == "true")
{
ctxCalGridExportInvite.Text = "Email Canlendar Invite";
}
}
private void ctxCalGridAdd_Click(object sender, System.EventArgs e)
{
AppointmentAddNew();
}
private void calendarGrid1_DoubleClick(object sender, System.EventArgs e)
{
if (calendarGrid1.SelectedAppointment > 0)
AppointmentEdit();
}
private void ctxCalGridEdit_Click(object sender, System.EventArgs e)
{
AppointmentEdit();
}
private void ctxCalGridDelete_Click(object sender, System.EventArgs e)
{
AppointmentDelete();
}
private void ctxCalGridCheckIn_Click(object sender, System.EventArgs e)
{
AppointmentCheckIn();
}
private void ctxCalGridNoShow_Click(object sender, System.EventArgs e)
{
AppointmentNoShow(true);
}
private void ctxCalGridNoShowUndo_Click(object sender, System.EventArgs e)
{
AppointmentNoShow(false);
}
private void ctxCalGridMkRadAppt_Click(object sender, EventArgs e)
{
AppointmentAddNewRadiology();
}
private void ctxCalGridCancelRadAppt_Click(object sender, EventArgs e)
{
AppointmentDeleteOneRadiology();
}
private void ctxCalGridReprintApptSlip_Click(object sender, EventArgs e)
{
int apptID = this.CGrid.SelectedAppointment;
if (apptID <= 0) return;
CGAppointment a = (CGAppointment) this.Appointments.AppointmentTable[apptID];
PrintAppointmentSlip(a);
}
#endregion ctxCalGridMenu Handlers
#region Methods
/// <summary>
/// Decides whether this is a Radiology Resource. Local Helper to decide what menu items to enable/display
/// </summary>
/// <returns></returns>
private bool IsThisARadiologyResource()
{
//I don't like this logic!!! but works for now!
//Note: I use banana peeling model below
//If no cell is selected AND no appointment is selected, then it's false
if (this.calendarGrid1.SelectedRange.Cells.CellCount < 1 && this.calendarGrid1.SelectedAppointment < 1)
return false;
//If an appointment is selected then...
if (this.calendarGrid1.SelectedAppointment > 0)
{
CGAppointment appt = this.Appointments.AppointmentTable[this.calendarGrid1.SelectedAppointment] as CGAppointment;
if (appt == null) return false; //appt doesn't exist; old appointment and grid wasn't refreshed yet
if (appt.RadiologyExamIEN.HasValue && appt.RadiologyExamIEN.Value > 0) return true; //this appointment is a radiology appointment since it has that member
else return false;
}
//Otherwise, we are for sure dealing with a cell.
//We need to determine if the cell resource is mapped to a Radiology Hospital Location.
DateTime dStart;
DateTime dEnd;
string sResource;
// Get resource
bool bRet = this.calendarGrid1.GetSelectedTime(out dStart, out dEnd, out sResource);
// If we fail, return false (but this is not supposed to ever happen)
if (bRet == false)
{
return false;
}
// see if resource is mapped to a Radiology Hospital Location.
return IsThisARadiologyResource(sResource);
}
private bool IsThisARadiologyResource(string sResource)
{
//smh - change in v 1.7... if the resource is not linked to a PIMS clinic, this method fails.
//This happens if there is just one resource that is not linked, which makes it impossible to
//make any appointments, because this method gets called at any time a menu is opened.
//So we change res.Field<int> to res.Field<int?>
// see if resource is mapped to a Radiology Hospital Location.
return ( //select all Hospital Locations which are radiology locations
from hl in CGDocumentManager.Current.GlobalDataSet.Tables["HospitalLocation"].AsEnumerable()
where hl.Field<string>("IS_RADIOLOGY_LOCATION") == "1"
//join this to the resources table using the foreign ID (plain jane relational join)
join res in CGDocumentManager.Current.GlobalDataSet.Tables["Resources"].AsEnumerable()
//on hl.Field<int>("HOSPITAL_LOCATION_ID") equals res.Field<int>("HOSPITAL_LOCATION_ID") //change in 1.7
on hl.Field<int>("HOSPITAL_LOCATION_ID") equals res.Field<int?>("HOSPITAL_LOCATION_ID")
//then filter this down to the resource that we have
where res.Field<string>("RESOURCE_NAME") == sResource
//if we have any row left, then it is true.
select hl).Any();
}
private bool EditAppointmentEnabled()
{
try
{
//Call here if there is a selected appointment in the grid
if (calendarGrid1.SelectedAppointment < 1)
return false;
CGAppointment appt = (CGAppointment)this.Appointments.AppointmentTable[calendarGrid1.SelectedAppointment];
string sResource = appt.Resource;
return EditAppointmentEnabled(sResource);
}
catch (Exception ex)
{
string sMsg = ex.Message;
return false;
}
}
private bool EditAppointmentEnabled(string sResource)
{
bool bManager = this.DocManager.ScheduleManager;
if (bManager == true)
{
return (true);
}
else
{
bool bModAppts;
bModAppts = (bool)this.m_htChangeAppts[sResource];
return bModAppts;
}
}
private bool AddAppointmentEnabled()
{
//new in 1.7: If there are no resources in the resource group, just say false.
//otherwise, we end up with being able to add appointments to empty resource groups.
if (this.Document.Resources.Count == 0)
return false;
//No cells selected for appointment. False.
if (this.calendarGrid1.SelectedRange.Cells.CellCount < 1)
return false;
//If manager, can always make appointment
bool bManager = this.DocManager.ScheduleManager;
if (bManager == true)
{
return (true);
}
// otherwise, check permissions, then check slots.
else
{
DateTime dStart = DateTime.Today;
DateTime dEnd = DateTime.Today;
string sResource = "";
bool bRet = this.calendarGrid1.GetSelectedTime(out dStart, out dEnd, out sResource);
if (bRet == false)
{
return false;
}
bool bSlotsAvailable;
bool bOverbook;
bool bModSchedule;
bool bModAppts;
bOverbook = (bool)this.m_htOverbook[sResource];
bModSchedule = (bool)this.m_htModifySchedule[sResource];
bModAppts = (bool)this.m_htChangeAppts[sResource];
if (bModAppts == false)
return false;
CGAvailability resultantAvail;
m_nSlots = m_Document.SlotsAvailable(dStart, dEnd, sResource, this.calendarGrid1.TimeScale, out resultantAvail);
bSlotsAvailable = (this.m_nSlots > 0);
return ((bSlotsAvailable) || (bModSchedule) || (bOverbook));
}
}
private bool NoShowEnabled()
{
if (calendarGrid1.SelectedAppointment < 1)
return false;
CGAppointment appt = (CGAppointment)this.Appointments.AppointmentTable[calendarGrid1.SelectedAppointment];
return !appt.NoShow;
}
private bool CloneForwardEnabled() {
if (calendarGrid1.SelectedAppointment < 1)
return false;
return true;
}
private bool CopyAppointmentEnabled()
{
return EditAppointmentEnabled();
}
private bool ExportCalendarInviteEnabled()
{
if (calendarGrid1.SelectedAppointment < 1)
return false;
CGAppointment appt = (CGAppointment)this.Appointments.AppointmentTable[calendarGrid1.SelectedAppointment];
if (appt.StartTime < DateTime.Now)
{
return false;
}
if (appt.Patient.Email == null)
{
try
{
string sSql;
sSql = "BSDX GET BASIC REG INFO^" + appt.PatientID.ToString();
DataTable tb = m_DocManager.RPMSDataTable(sSql, "PatientRegInfo");
Debug.Assert(tb.Rows.Count == 1);
DataRow r = tb.Rows[0];
appt.Patient.Email = r["EMAIL ADDRESS"].ToString();
}
catch (Exception e)
{
MessageBox.Show("DAppointPage::InitializePage -- Unable to retrieve patient information from VistA. " + e.Message);
}
if (appt.Patient.Email == "")
{
return false;
}
}
return true;
}
private bool UndoCheckinEnabled()
{
if (calendarGrid1.SelectedAppointment < 1) return false;
CGAppointment appt = (CGAppointment)this.Appointments.AppointmentTable[calendarGrid1.SelectedAppointment];
return appt.CheckInTime.Ticks > 0;
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
void UpdateStatusBar(DateTime dStart, DateTime dEnd, CGAvailability av)
{
System.Text.StringBuilder sbMsg = new System.Text.StringBuilder(100);
sbMsg.Append(dStart.ToShortTimeString() + " to " + dEnd.ToShortTimeString());
if (av != null && m_nSlots > 0)
{
sbMsg.Append(String.Format(" has {0} slot(s) available for {1}. ", m_nSlots.ToString(), av.AccessTypeName));
}
else
{
sbMsg.Append(": No appointment slots available. ");
}
if (av != null)
{
sbMsg.Append(String.Format("Source Block: {0} to {1} with {2} slot(s) of type {3}",
av.StartTime.ToShortTimeString(),
av.EndTime.ToShortTimeString(),
av.Slots.ToString(),
av.AccessTypeName));
sbMsg.Append(". ");
if (av.Note.Trim().Length > 0) sbMsg.Append("Note: " + av.Note + ".");
}
this.statusBar1.Text = sbMsg.ToString();
}
private void EditScheduleAvailability()
{
CGAVDocument doc = new CGAVDocument();
try
{
//If resource already open, then navigate to its window
CGAVView v =this.DocManager.GetAVViewByResource(m_alSelectedTreeResourceArray);
if (v != null)
{
v.Activate();
}
else
{
//If not already open, get a lock and open it
doc.DocManager = this.DocManager;
for (int j=0; j < m_alSelectedTreeResourceArray.Count; j++)
{
doc.AddResource((string) m_alSelectedTreeResourceArray[j]);
}
doc.DocName = this.m_sDocName;
//Get preferred time scale from resource info
DataTable dt = this.DocManager.GlobalDataSet.Tables["Resources"];
DataView dv = new DataView(dt, "", "RESOURCE_NAME ASC", DataViewRowState.OriginalRows);
int nScale = 60;
int nTest=0;
string sResource;
int nDataRow;
DataRowView drv;
string sResourceID="";
for (int j=0; j < m_alSelectedTreeResourceArray.Count; j++)
{
sResource = (string) m_alSelectedTreeResourceArray[j];
nDataRow = dv.Find(sResource);
Debug.Assert(nDataRow != -1);
drv = dv[nDataRow];
if (drv["TIMESCALE"].ToString() == "")
{
nTest = 15; //15 minute default
}
else
{
nTest = (int) drv["TIMESCALE"];
}
nScale = (nTest < nScale)?nTest : nScale ;
sResourceID = drv["RESOURCEID"].ToString();
}
doc.ResourceID = Convert.ToInt32(sResourceID);
bool bLock = CGDocumentManager.Current.RemoteSession.Lock("^BSDXRES(" + sResourceID + ")", "+");
if (bLock == false)
{
throw new BMXNetException("Another user is currently editing availability for this resource. Try later.");
}
doc.OnOpenDocument();
v =this.DocManager.GetAVViewByResource(m_alSelectedTreeResourceArray);
CalendarGrid cg = v.CGrid;
cg.TimeScale = nScale;
//Position grid to 0700
cg.PositionGrid(7);
}
}
catch (Exception ex)
{
MessageBox.Show("Unable to edit availability for " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling");
this.m_DocManager.CloseAllViews(doc);
return;
}
}
/// <summary>
/// Opens a view of the Schedule a user requested to open at a specific date
/// </summary>
/// <param name="sSelectedTreeResourceArray">A set of resources to open (?pending more investigation)</param>
/// <param name="dDate">Date at which to show the Grid</param>
private void OpenSelectedSchedule(ArrayList sSelectedTreeResourceArray, DateTime dDate)
{
//If resource already open, then navigate to its window
CGView v = this.DocManager.GetViewByResource(sSelectedTreeResourceArray);
if (v != null)
{
v.Activate();
v.dateTimePicker1.Value = dDate;
v.RequestRefreshGrid();
return;
}
//So if it is not a view that's already open, it means we have to grab the data for
//So we tell the user to wait wait wait
this.Cursor = Cursors.WaitCursor;
this.LoadSplash(); //Open "Loading" splash
//If this Document has no resources then use it (happens when the GUI has nothing open, typically after log-in)
//Else, create a new document
CGDocument doc;
if (this.Document.m_sResourcesArray.Count == 0)
{
doc = this.Document;
}
else
{
doc = new CGDocument();
doc.DocManager = this.DocManager;
}
//Add resources to Document
for (int j=0; j < sSelectedTreeResourceArray.Count; j++)
{
doc.AddResource((string) sSelectedTreeResourceArray[j]);
}
doc.DocName = this.m_sDocName;
try
{
doc.OnOpenDocument(dDate); //this typically creates a new view
}
catch (Exception ex)
{
MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling");
this.m_DocManager.CloseAllViews(doc);
return;
}
//We are doing this--again--to fetch the view we just opened in OnOpenDocument
//XXX: Yes, I know, this totally sucks. But I don't fully grasp the whole thing yet to refactor it.
v =this.DocManager.GetViewByResource(sSelectedTreeResourceArray);
//Position the Grid to start at a certain day.
//XXX: This must be a better way to do this.
v.dateTimePicker1.Value = dDate;
v.StartDate = doc.StartDate;
//Get preferred time scale from resource info
//If more than one resource, get smallest time scale
CalendarGrid cg = v.CGrid;
DataTable dt = this.DocManager.GlobalDataSet.Tables["Resources"];
DataView dv = new DataView(dt, "", "RESOURCE_NAME ASC", DataViewRowState.OriginalRows);
int nScale = 60;
int nTest=0;
string sResource;
int nDataRow;
DataRowView drv;
for (int j=0; j < sSelectedTreeResourceArray.Count; j++)
{
sResource = (string) sSelectedTreeResourceArray[j];
nDataRow = dv.Find(sResource);
Debug.Assert(nDataRow != -1);
drv = dv[nDataRow];
if (drv["TIMESCALE"].ToString() == "")
{
nTest = 15; //15 minute default
}
else
{
nTest = (int) drv["TIMESCALE"];
}
nScale = (nTest < nScale)?nTest : nScale ;
}
cg.TimeScale = nScale;
cg.PositionGrid(7);
//new code for v 1.5 //smh
//Disable entries that would make time scale smaller b/c users should not be able to
//make appointments for smaller time scales
if (nScale >= 10)
{
v.mnu10Minute.Enabled = true;
v.mnu15Minute.Enabled = true;
v.mnu20Minute.Enabled = true;
v.mnu30Minute.Enabled = true;
}
if (nScale >= 15)
{
v.mnu10Minute.Enabled = false;
v.mnu15Minute.Enabled = true;
v.mnu20Minute.Enabled = true;
v.mnu30Minute.Enabled = true;
}
if (nScale >= 20)
{
v.mnu10Minute.Enabled = false;
v.mnu15Minute.Enabled = false;
v.mnu20Minute.Enabled = true;
v.mnu30Minute.Enabled = true;
}
if (nScale >= 30)
{
v.mnu10Minute.Enabled = false;
v.mnu15Minute.Enabled = false;
v.mnu20Minute.Enabled = false;
v.mnu30Minute.Enabled = true;
}
if (nScale >= 60)
{
v.mnu10Minute.Enabled = false;
v.mnu15Minute.Enabled = false;
v.mnu20Minute.Enabled = false;
v.mnu30Minute.Enabled = false;
}
//end new code
//Get the OverBook and ModifySchedule permissions from ResourceUser table
//and populate the hashtables
string sOverbook;
string sModSchedule;
string sModAppts;
bool bOverbook;
bool bModSchedule;
bool bModAppts;
v.m_htOverbook = new Hashtable(sSelectedTreeResourceArray.Count);
v.m_htModifySchedule = new Hashtable(sSelectedTreeResourceArray.Count);
v.m_htChangeAppts = new Hashtable(sSelectedTreeResourceArray.Count);
dt = this.DocManager.GlobalDataSet.Tables["ResourceUser"];
dv = new DataView(dt, "", "RESOURCENAME ASC", DataViewRowState.OriginalRows);
dv.RowFilter = String.Format("USERNAME = '{0}'", CGDocumentManager.Current.RemoteSession.User.Name.Replace("'", "''"));
for (int j=0; j < dv.Count; j++)
{
drv = dv[j];
sResource = drv["RESOURCENAME"].ToString();
sOverbook = drv["OVERBOOK"].ToString();
bOverbook = (sOverbook == "YES")?true:false;
sModSchedule = drv["MODIFY_SCHEDULE"].ToString();
bModSchedule = (sModSchedule == "YES")?true:false;
sModAppts = drv["MODIFY_APPOINTMENTS"].ToString();
bModAppts = (sModAppts == "YES")?true:false;
v.m_htOverbook[sResource] = bOverbook;
v.m_htModifySchedule[sResource] = bModSchedule;
v.m_htChangeAppts[sResource] = bModAppts;
}
//For programmers and scheduling managers, set all permissions for all resources
if (this.DocManager.ScheduleManager == true)
{
dt = this.DocManager.GlobalDataSet.Tables["Resources"];
foreach (DataRow dr in dt.Rows)
{
sResource = dr["RESOURCE_NAME"].ToString();
v.m_htOverbook[sResource] = true;
v.m_htModifySchedule[sResource] = true;
v.m_htChangeAppts[sResource] = true;
}
}
v.calendarGrid1.SetOverlapTable();
v.calendarGrid1.Refresh();
// Set cursor back and stop splash screen
this.Cursor = Cursors.Default;
StopSplash();
}
private void LoadTree()
{
//Navigate from ResourceGroup table to Resources table
DataRow[] arrRows;
DataRelation dr = DocManager.GlobalDataSet.Relations["GroupResource"];
string sGroup;
string sResource;
int nIndex = 0;
foreach (DataRow r in DocManager.GlobalDataSet.Tables["ResourceGroup"].Rows)
{
sGroup = r["RESOURCE_GROUP"].ToString();
TreeNode deptNode = new TreeNode(sGroup);
nIndex = this.tvSchedules.Nodes.Add(deptNode);
tvSchedules.Nodes[nIndex].Tag = "Dept";
arrRows = r.GetChildRows(dr);
for (int i=0; i< arrRows.Length; i++)
{
sResource = arrRows[i]["RESOURCE_NAME"].ToString();
TreeNode resNode = new TreeNode(sResource);
int nResIndex = deptNode.Nodes.Add(resNode);
deptNode.Nodes[nResIndex].Tag = "Resource";
}
}
}
public void CreateNewSchedule()
{
//Create a new document and open it
CGDocument doc = new CGDocument();
doc.DocManager = this.DocManager;
try
{
doc.OnOpenDocument(DateTime.Today);
}
catch (Exception ex)
{
MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling");
this.m_DocManager.CloseAllViews(doc);
return;
}
}
private void AppointmentEdit()
{
try
{
int nApptID = this.calendarGrid1.SelectedAppointment;
Debug.Assert(nApptID != 0);
CGAppointment a = (CGAppointment) this.Appointments.AppointmentTable[nApptID];
DAppointPage dAppt = new DAppointPage();
dAppt.DocManager = this.m_DocManager;
dAppt.InitializePage(a);
dAppt.HideCloneForwardTab();
calendarGrid1.CGToolTip.Active = false;
if (dAppt.ShowDialog(this) == DialogResult.Cancel)
{
calendarGrid1.CGToolTip.Active = true;
return;
}
calendarGrid1.CGToolTip.Active = true;
string sNote = dAppt.Note;
//Call Document to edit appointment
this.Document.EditAppointment(a, sNote);
if (dAppt.PrintAppointmentSlip)
{
PrintAppointmentSlip(a);
}
//Redraw appointments
this.UpdateArrays();
//Then tell RPMS that we are updated
RaiseRPMSEvent("BSDX SCHEDULE", a.Resource);
}
catch (Exception ex)
{
Debug.Write("CGView.AppointmentEdit Failed: " + ex.Message);
}
}
private void AppointmentCloneForward(ArrayList alResources)
{
try
{
int nApptID = this.calendarGrid1.SelectedAppointment;
Debug.Assert(nApptID != 0);
CGAppointment a = (CGAppointment)this.Appointments.AppointmentTable[nApptID];
DAppointPage dAppt = new DAppointPage();
dAppt.DocManager = this.m_DocManager;
dAppt.InitializePage(a);
calendarGrid1.CGToolTip.Active = false;
dAppt.SetCloneForwardable(alResources, a);
if (dAppt.ShowDialog(this) == DialogResult.Cancel)
{
calendarGrid1.CGToolTip.Active = true;
return;
}
calendarGrid1.CGToolTip.Active = true;
string sNote = dAppt.Note;
CGAppointment appt = dAppt.Appointment;
//Call Document to add a new appointment. Document adds appointment to CGAppointments array.
this.Document.CreateAppointment(appt);
if (dAppt.PrintAppointmentSlip)
{
PrintAppointmentSlip(appt);
}
//Show the new set of appointments by calling UpdateArrays. Fetches Document's CGAppointments
this.UpdateArrays();
RaiseRPMSEvent("BSDX SCHEDULE", appt.Resource);
}
catch (Exception ex)
{
string msg;
if (M.Piece(ex.Message, "~", 1) == "-10") // -10 means that BSDXAPI reported an error.
msg = M.Piece(ex.Message, "~", 4);
else
msg = ex.Message;
MessageBox.Show("VISTA says: \r\n" + msg, "Unable to Make Appointment");
return;
}
}
/// <summary>
/// Marks all selected appointments as No Show from this.calendarGrid1.SelectedAppointments
/// </summary>
/// <param name="bNoShow">True - Mark as noshow; False - undo noshow</param>
private void AppointmentNoShow(bool bNoShow)
{
//bNoShow indicates whether to mark or un-mark as noshow
bool bMarked = false; //Indicates at least one attempt to mark as noshow succeeded
bool bRebook = false; //Stores user's response to auto-rebook dialog question
CGAppointments alRebookList = new CGAppointments(); // list of appointments to rebook
DNoShow dlg = new DNoShow(); // no show dialog
if (bNoShow == true) // if noshowing, show the dialog to ask the user
{
if (dlg.ShowDialog(this) == DialogResult.Cancel)
{
return;
}
}
bRebook = dlg.AutoRebook;
foreach (CGAppointment a in this.calendarGrid1.SelectedAppointments.AppointmentTable.Values)
{
int nApptID = a.AppointmentKey;
Debug.Assert(nApptID != 0);
try
{
if ((bNoShow == true) // if no-showing
&&
(a.StartTime.Date > DateTime.Today.Date)
&&
(MessageBox.Show(this, "The appointment for " + a.PatientName + " is in the future. Are you sure you want to No-Show?", "Windows Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK))
{
}
else // otherwise, make or undo show
{
string sError = Document.AppointmentNoShow(a, bNoShow);
if (sError != "1")
throw new Exception(sError);
bMarked = true;
}
}
catch (Exception ex)
{
MessageBox.Show("Unable to mark appointment No Show: " + ex.Message, "Clinical Scheduling");
}
if (bRebook == true)
{
try
{
CGAppointment aRebook;
int nMinimumdays = dlg.RebookStartDays;
int nMaximumdays = dlg.RebookMaxDays;
int nAccessType = dlg.RebookAccessType;
//-1 means use current type
if (nAccessType == -1)
{
//Get access type from grid
int nRow = 0;
int nCol = 0;
CGCell cgCell = new CGCell();
this.calendarGrid1.GetCellFromTime(a.StartTime, ref nRow, ref nCol, true , a.Resource);
cgCell.CellColumn = nCol;
cgCell.CellRow = nRow;
this.calendarGrid1.GetTypeFromCell(cgCell, out nAccessType);
a.AccessTypeID = nAccessType;
}
string sResult = Document.AutoRebook(a, nAccessType, nMinimumdays, nMaximumdays, out aRebook);
if (sResult == "1")
{
//Add appointment to list of rebooked appointments
alRebookList.AddAppointment(a);
}
else
{
MessageBox.Show("Unable to rebook this patient: " + a.PatientName);
}
}
catch (Exception ex)
{
MessageBox.Show("Unable to rebook: " + ex.Message);
}
}
if (bMarked == true)
{
//Notify other scheduling users that this schedule has changed
try
{
//this.Document.RefreshDocument(); no need for this; event raised back and prompts refresh itself.
RaiseRPMSEvent("BSDX SCHEDULE", a.Resource);
}
catch (Exception ex)
{
Debug.Write(ex.Message);
}
this.calendarGrid1.Invalidate();
}
}
AutoRebookFromList(alRebookList);
}
/// <summary>
/// Prints Auto Rebook Letters; does nothing else to DB!!!
/// </summary>
/// <param name="alRebookList">List of appointments</param>
private void AutoRebookFromList(CGAppointments alRebookList)
{
//Print AutoRebook letters.
if (alRebookList.AppointmentCount > 0)
{
//build |-delimited list of ApptIDs to pass to BSDX REBOOK LIST
string sApptIDList = "";
System.Collections.ArrayList a = new ArrayList();
foreach (CGAppointment appt in alRebookList.AppointmentTable.Values)
{
string sApptID = appt.AppointmentKey.ToString() + "|";
sApptIDList += sApptID;
if (a.Contains(appt.Resource) == false)
a.Add(appt.Resource);
}
// Print rebooks
string sClinicList = "";
foreach (string sRes in a)
{
sClinicList = sClinicList + sRes + "|";
}
DPatientLetter dpl = new DPatientLetter();
dpl.InitializeFormRebookLetters(this.DocManager, sClinicList, sApptIDList);
dpl.ShowDialog(this);
}
}
/// <summary>
/// Delete one Radiology Appointment
/// </summary>
private void AppointmentDeleteOneRadiology()
{
Debug.Assert(this.calendarGrid1.SelectedAppointment > 0);
CGAppointment a = this.Appointments.AppointmentTable[this.calendarGrid1.SelectedAppointment] as CGAppointment;
Debug.Assert(a.RadiologyExamIEN.HasValue);
//Can we cancel the appointment?
bool _canCancel = CGDocumentManager.Current.DAL.CanCancelRadExam(a.RadiologyExamIEN.Value);
if (!_canCancel)
{
MessageBox.Show(this, "This appointment cannot be cancelled.\nReason:\nThe exam associated with this appointment is active/complete/discontinued.");
return;
}
//Prior to making expensive db calls, tell the grid nothing is selected anymore so nobody would try to pick it up later
this.calendarGrid1.SelectedAppointment = 0;
//Now, Cancel the appointment
this.Document.DeleteAppointment(a.AppointmentKey);
//Cancel Radiology Exam
CGDocumentManager.Current.DAL.CancelRadiologyExam(a.PatientID, a.RadiologyExamIEN.Value);
//redraw the grid to display new set of appointments after this appt was removed.
this.UpdateArrays();
//Tell other instances that this schedule has been updated
RaiseRPMSEvent("BSDX SCHEDULE", a.Resource);
}
/// <summary>
/// Delete appointment ApptID
/// </summary>
/// <param name="nApptID"></param>
/// <returns></returns>
private string AppointmentDeleteOne(int nApptID)
{
return Document.DeleteAppointment(nApptID);
}
/// <summary>
/// Delete all selected appointments
/// </summary>
private void AppointmentDelete()
{
calendarGrid1.CGToolTip.Active = false;
CGAppointments alRebookList = new CGAppointments();
// check to see if any appointment is checked in first
foreach (CGAppointment a in this.calendarGrid1.SelectedAppointments.AppointmentTable.Values)
{
if (a.CheckInTime.Ticks > 0)
{
MessageBox.Show("You must undo the check-in first before removing the appointment.");
return;
}
}
DCancelAppt dCancel = new DCancelAppt();
dCancel.InitializePage(this.m_DocManager);
if (dCancel.ShowDialog(this) != DialogResult.OK)
{
calendarGrid1.CGToolTip.Active = true;
return;
}
//At this point, the appointment will be deleted...
//Remove the Selected Appointment from the grid because we don't anybody to think there's still
//an appointment selected while we are still updating the grid
this.calendarGrid1.SelectedAppointment = 0;
bool bClinic = dCancel.ClinicCancelled;
int nReason = dCancel.CancelReason;
string sRemarks = dCancel.CancelRemarks;
bool bRebook = dCancel.AutoRebook;
int nRebookStart = dCancel.RebookStartDays;
int nRebookMax = dCancel.RebookMaxDays;
int nRebookAccessType = dCancel.RebookAccessType;
calendarGrid1.CGToolTip.Active = true;
foreach (CGAppointment a in this.calendarGrid1.SelectedAppointments.AppointmentTable.Values)
{
int nApptID = a.AppointmentKey;
Debug.Assert(nApptID != 0);
try
{
string sError = Document.DeleteAppointment(nApptID, bClinic, nReason, sRemarks);
if (sError != "")
throw new Exception(sError);
this.UpdateArrays(); //Redraw this calendar grid
if (bRebook == true)
{
try
{
//TODO: Parameterize or dialogize the minum and maximum rebook days
CGAppointment aRebook;
int nMinimumdays = nRebookStart;
int nMaximumdays = nRebookMax;
string sResult = Document.AutoRebook(a, nRebookAccessType, nMinimumdays, nMaximumdays, out aRebook);
if (sResult == "1")
{
//Add appointment to list of rebooked appointments
alRebookList.AddAppointment(a);
}
}
catch (Exception ex)
{
MessageBox.Show("Unable to rebook: " + ex.Message);
}
}
RaiseRPMSEvent("BSDX SCHEDULE", a.Resource);
}
catch (Exception ex)
{
MessageBox.Show("Unable to delete appointment. " + ex.Message, "Clinical Scheduling");
}
if (alRebookList.AppointmentCount > 0)
{
AutoRebookFromList(alRebookList);
}
}
}
private void AppointmentCheckIn()
{
int nApptID = this.calendarGrid1.SelectedAppointment;
Debug.Assert(nApptID != 0);
//smh
//CGAppointment a = (CGAppointment) this.Appointments.AppointmentTable[nApptID];
CGAppointment a = (CGAppointment)this.Document.Appointments.AppointmentTable[nApptID];
try
{
bool bAlreadyCheckedIn = false;
if (a.CheckInTime.Ticks > 0)
bAlreadyCheckedIn = true;
if ((bAlreadyCheckedIn == false)
&&
(a.StartTime.Date > DateTime.Today.Date))
{
MessageBox.Show(this, "It is too early to check in " + a.PatientName, "Windows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return;
}
DCheckIn dlgCheckin = new DCheckIn();
dlgCheckin.InitializePage(a);
calendarGrid1.CGToolTip.Active = false;
if (dlgCheckin.ShowDialog(this) != DialogResult.OK)
{
calendarGrid1.CGToolTip.Active = true;
return;
}
calendarGrid1.CGToolTip.Active = true;
if (bAlreadyCheckedIn != true)
{
DateTime dtCheckIn = dlgCheckin.CheckInTime;
//Tell appointment that it is checked in, for proper coloring;
//When you refresh from the DB, it will have this property.
a.CheckInTime = DateTime.Now;
//Save to Database
this.Document.CheckInAppointment(nApptID, dtCheckIn);
}
//Get Provider (XXXXXXXX: NOT SAVED TO THE DATABASE RIGHT NOW)
a.Provider = dlgCheckin.Provider;
// Print Routing Slip if user checks that box...
if (dlgCheckin.PrintRouteSlip)
this.PrintRoutingSlip(a);
//redraw grid
this.calendarGrid1.Invalidate();
}
catch (Exception ex)
{
MessageBox.Show("Error checking in patient: " + ex.Message, "Clinical Scheduling");
}
}
private void AppointmentUndoCheckin()
{
Debug.Assert(calendarGrid1.SelectedAppointment > 0);
foreach (CGAppointment a in this.calendarGrid1.SelectedAppointments.AppointmentTable.Values)
{
string msg; //out var
bool didweSucceed = Document.AppointmentUndoCheckin(a, out msg);
if (!didweSucceed)
{
MessageBox.Show("Error: " + msg);
continue;
}
RaiseRPMSEvent("BSDX SCHEDULE", a.Resource);
}
this.UpdateArrays();
}
private void AppointmentAddWalkin()
{
try
{
//Get Time and Resource from Selected Cell
DateTime dStart = DateTime.Today;
DateTime dEnd = DateTime.Today;
string sResource = "";
bool bRet = this.calendarGrid1.GetSelectedTime(out dStart, out dEnd, out sResource);
if (bRet == false)
return;
TimeSpan tsDuration = dEnd - dStart;
int nDuration = (int) tsDuration.TotalMinutes;
Debug.Assert(nDuration > 0);
/*
* 8-10-05 Added check to prevent walkin from being created
* on a date later than today.
*/
if (dStart.Date > DateTime.Today.Date)
{
MessageBox.Show(this, "You cannot create a walk-in appointment for a date in the future.\n Select today's date and try again.", "Windows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return;
}
// Added check for making Walk-ins in the past. 9/28/2010
if (dStart.Date < DateTime.Today.Date)
{
var result = MessageBox.Show("Are you sure you want to make a Walk-in in the past?", "Windows Scheduling", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button2);
if (result == DialogResult.No) return;
}
/*
* 8-10-05 Added overbook prompt for walkin
*/
//SMH: Takes too long to do.
//this.Document.RefreshDocument();
CGAvailability resultantAvail;
m_nSlots = m_Document.SlotsAvailable(dStart, dEnd, sResource, this.calendarGrid1.TimeScale, out resultantAvail);
if (m_nSlots < 1)
{
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo);
if (dr != DialogResult.Yes)
{
return;
}
}
//Display a dialog to collect Patient Name
DPatientLookup dPat = new DPatientLookup();
dPat.DocManager = m_DocManager;
int nAccessTypeID = 0;
bRet = calendarGrid1.GetSelectedType(out nAccessTypeID);
if (dPat.ShowDialog(this) == DialogResult.Cancel)
{
return;
}
CGAppointment appt = new CGAppointment();
appt.PatientID = Convert.ToInt32(dPat.PatientIEN);
appt.PatientName = dPat.PatientName;
appt.StartTime = dStart;
appt.EndTime = dEnd;
appt.Resource = sResource;
appt.HealthRecordNumber = dPat.HealthRecordNumber;
appt.Patient = new Patient
{
DFN = Convert.ToInt32(dPat.PatientIEN),
ID = dPat.PatientPID,
Name = dPat.PatientName,
HRN = dPat.HealthRecordNumber,
DOB = dPat.PatientDOB
};
//smh: Takes too long
//this.Document.RefreshDocument();
//Call Document to add a walkin appointment
int nApptID = this.Document.CreateAppointment(appt, true);
//Now check them in.
calendarGrid1.SelectedAppointment = nApptID;
AppointmentCheckIn();
//Show the new set of appointments by calling UpdateArrays.
this.UpdateArrays();
RaiseRPMSEvent("BSDX SCHEDULE", appt.Resource);
}
catch (Exception ex)
{
string msg;
if (M.Piece(ex.Message, "~", 1) == "-10") // -10 means that BSDXAPI reported an error.
msg = M.Piece(ex.Message, "~", 4);
else
msg = ex.Message;
MessageBox.Show("VISTA says: \r\n" + msg, "Unable to Make Walk-in Appointment");
return;
}
}
private void AppointmentAddNew()
{
try
{
//Get Time and Resource from Selected Cell
DateTime dStart = DateTime.Today;
DateTime dEnd = DateTime.Today;
string sResource = "";
bool bRet = this.calendarGrid1.GetSelectedTime(out dStart, out dEnd, out sResource);
if (bRet == false)
return;
// Added check for making Walk-ins in the past. 9/28/2010
if (dStart.Date < DateTime.Today.Date)
{
var result = MessageBox.Show("Are you sure you want to make an appointment in the past?", "Windows Scheduling", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button2);
if (result == DialogResult.No) return;
}
//Test dStart for Holiday
DataView dvHoliday = new DataView(this.DocManager.GlobalDataSet.Tables["HOLIDAY"]);
dvHoliday.Sort="DATE ASC";
int nFind = dvHoliday.Find(dStart.Date);
if (nFind > -1)
{
string sHoliday = "";
DataRowView drv = dvHoliday[nFind];
sHoliday = drv["NAME"].ToString();
if (MessageBox.Show(this, dStart.ToShortDateString() + " is a holiday (" + sHoliday + "). Are you sure you want to make this appointment?","Clinical Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK)
return;
}
//Sam: takes too long. Remove this call; deal with the issue of concurrent appointments another way.
//this.Document.RefreshDocument();
CGAvailability resultantAvail;
m_nSlots = m_Document.SlotsAvailable(dStart, dEnd, sResource, this.calendarGrid1.TimeScale, out resultantAvail);
/* Faisal Don't show overbood popup
if (m_nSlots < 1)
{
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo);
if (dr != DialogResult.Yes)
{
return;
}
}*/
//Display a dialog to collect Patient Name
DPatientLookup dPat = new DPatientLookup();
dPat.DocManager = m_DocManager;
int nAccessTypeID = 0;
bRet = calendarGrid1.GetSelectedType(out nAccessTypeID);
if (dPat.ShowDialog(this) == DialogResult.Cancel)
{
return;
}
//Call the appointment dialog to collect the appointment info
Debug.Assert(dPat.PatientIEN != "");
DAppointPage dAppt = new DAppointPage();
dAppt.DocManager = this.m_DocManager;
string sNote = "";
dAppt.InitializePage(dPat.PatientIEN, dStart, dEnd, sResource, sNote, nAccessTypeID);
dAppt.HideCloneForwardTab();
if (dAppt.ShowDialog(this) == DialogResult.Cancel)
{
return;
}
CGAppointment appt = dAppt.Appointment;
// old way of making an appointment
/*new CGAppointment();
appt.PatientID = Convert.ToInt32(dPat.PatientIEN);
appt.PatientName = dPat.PatientName;
appt.StartTime = dStart;
appt.EndTime = dEnd;
appt.Resource = sResource;
appt.Note = dAppt.Note;
appt.HealthRecordNumber = dPat.HealthRecordNumber;
appt.AccessTypeID = nAccessTypeID;
*/
//Call Document to add a new appointment. Document adds appointment to CGAppointments array.
this.Document.CreateAppointment(appt);
if (dAppt.PrintAppointmentSlip)
{
PrintAppointmentSlip(appt);
}
//Show the new set of appointments by calling UpdateArrays. Fetches Document's CGAppointments
this.UpdateArrays();
RaiseRPMSEvent("BSDX SCHEDULE", appt.Resource);
}
catch (Exception ex)
{
string msg;
if (M.Piece(ex.Message, "~", 1) == "-10") // -10 means that BSDXAPI reported an error.
msg = M.Piece(ex.Message, "~", 4);
else
msg = ex.Message;
MessageBox.Show("VISTA says: \r\n" + msg, "Unable to Make Appointment");
return;
}
}
/// <summary>
/// Add a new Radiology Appointment to VISTA (<28><><EFBFBD><EFBFBD> as my mom calls it)
/// </summary>
private void AppointmentAddNewRadiology()
{
try
{
DateTime dStart, dEnd; //return vales for below
string sResource; //ditto
int nAccessTypeID = 0; //ditto
this.calendarGrid1.GetSelectedTime(out dStart, out dEnd, out sResource);
this.calendarGrid1.GetSelectedType(out nAccessTypeID);
Debug.Assert(sResource != null);
Debug.Assert(dStart > DateTime.MinValue);
//Get Slots
CGAvailability resultantAvail;
m_nSlots = m_Document.SlotsAvailable(dStart, dEnd, sResource, this.calendarGrid1.TimeScale, out resultantAvail);
if (m_nSlots < 1)
{
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling", MessageBoxButtons.YesNo);
if (dr != DialogResult.Yes)
{
return;
}
}
//Display a dialog to collect Patient Name
DPatientLookup dPat = new DPatientLookup();
dPat.DocManager = m_DocManager;
if (dPat.ShowDialog(this) == DialogResult.Cancel)
{
return;
}
int DFN = Int32.Parse(dPat.PatientIEN);
// Hospital Location IEN
int hlIEN = (from resource in CGDocumentManager.Current.GlobalDataSet.Tables["Resources"].AsEnumerable()
where resource.Field<string>("RESOURCE_NAME") == sResource
select resource.Field<int>("HOSPITAL_LOCATION_ID")).FirstOrDefault();
//Get Radiology Exams from the DB
List<RadiologyExam> _radExams = CGDocumentManager.Current.DAL.GetRadiologyExamsForPatientinHL(DFN, hlIEN);
//If none found...
if (!_radExams.Any())
{
MessageBox.Show("Patient does not have any radiology exams to register.");
return;
}
//Display a form for the user to select radiology exams.
DRadExamsSelect _radform = new DRadExamsSelect(_radExams);
if (_radform.ShowDialog() == DialogResult.Cancel) return;
//Get some return values
int _examien = _radform.ExamIEN;
string _procedurename = _radform.ProcedureName;
//Now create and save the appointment
CGAppointment appt = new CGAppointment();
string _sNote = "Radiology Exam (" + _examien + "): " + _procedurename;
appt.CreateAppointment(dStart, dEnd, _sNote, 0, sResource);
appt.PatientID = Int32.Parse(dPat.PatientIEN);
appt.PatientName = dPat.PatientName;
appt.AccessTypeID = nAccessTypeID;
appt.RadiologyExamIEN = _examien;
appt.Patient = new Patient
{
DFN = Convert.ToInt32(dPat.PatientIEN),
ID = dPat.PatientPID,
Name = dPat.PatientName,
HRN = dPat.HealthRecordNumber,
DOB = dPat.PatientDOB
};
this.Document.CreateAppointment(appt);
//Save Radiology Exam Schedule Info to Radiology Package
CGDocumentManager.Current.DAL.ScheduleRadiologyExam(DFN, _examien, dStart);
//Print Appointment Slip if requested
if (_radform.PrintAppointmentSlip) this.PrintAppointmentSlip(appt);
//Now redraw the grid to display the new appointments
this.UpdateArrays();
//Raise event to other clients
RaiseRPMSEvent("BSDX SCHEDULE", appt.Resource);
}
catch (Exception ex)
{
string msg;
if (M.Piece(ex.Message, "~", 1) == "-10") // -10 means that BSDXAPI reported an error.
msg = M.Piece(ex.Message, "~", 4);
else
msg = ex.Message;
MessageBox.Show("VISTA says: \r\n" + msg, "Unable to Make Appointment");
return;
}
}
#region BMX Event Processing and Callbacks
/// <summary>
/// Loosely typed delegate used several times below.
/// </summary>
delegate void OnUpdateScheduleDelegate();
/// <summary>
/// Subscription point for each CGView to process BMX events polled from the server
/// </summary>
/// <param name="obj">Not used</param>
/// <param name="e">BMXEvent Args:
/// e.BMXEvent is free text for Event Type; e.BMXParam is free text for Event Arguments</param>
private void BMXNetEventHandler(Object obj, RemoteEventArgs e)
{
try
{
// if this class is undefined (e.g. if the user just closed the form, do nothing
if (this == null) return;
// if event is Autofire event
if (e.EventType == "BMXNet AutoFire")
{
Debug.Write("CGView caught AutoFire event.\n");
//Create a delegate to OnUpdateSchedule and call Async
//Once Async Call is done, go to OnUpdateScheduleCallback
OnUpdateScheduleDelegate ousd = new OnUpdateScheduleDelegate(OnUpdateSchedule);
ousd.BeginInvoke(OnUpdateScheduleCallback, null);
return;
}
// if event is BSDX SCHEDULE
else if (e.EventType == "BSDX SCHEDULE")
{
//See if any of the resources in the event argument matches BSDX Schedule.
//If yes, fire off the delegate
string sResourceName;
for (int j = 0; j < m_Document.m_sResourcesArray.Count; j++)
{
sResourceName = m_Document.m_sResourcesArray[j].ToString();
if (e.Details == sResourceName)
{
Debug.Write("CGView caught BSDX SCHEDULE event.\n");
//Create a delegate to OnUpdateSchedule and call Async
//Once Async Call is done, go to OnUpdateScheduleCallb
OnUpdateScheduleDelegate ousd = new OnUpdateScheduleDelegate(OnUpdateSchedule);
ousd.BeginInvoke(OnUpdateScheduleCallback, null);
break;
}
}
}
}
catch (Exception ex)
{
Debug.Write(ex.Message);
}
}
/// <summary>
/// Update Appointments and Availabilites using Document.RefreshDocumentAsync on a different thread
/// </summary>
/// <remarks>
/// This method is expected to be called asynchornously.
/// </remarks>
public void OnUpdateSchedule()
{
try
{
m_Document.RefreshDocumentAsync(); //new
}
catch (Exception ex)
{
MessageBox.Show("Unable to refresh document " + ex.Message, "Clinical Scheduling");
}
}
/// <summary>
/// Callback for when OnUpdateSchedule is done. Triggers the Grid to redraw itself by calling UpdateArrays.
/// </summary>
/// <param name="itfAR">not used</param>
/// <remarks>Calls UpdateArrays via this.Invoke to make sure that the grid is redrawn on the UI thread</remarks>
private void OnUpdateScheduleCallback(IAsyncResult itfAR)
{
OnUpdateScheduleDelegate d = new OnUpdateScheduleDelegate(UpdateArrays);
//try catch just in case that the view closed in the meantime.
try
{
this.Invoke(d);
}
catch (InvalidOperationException)
{
return;
}
}
/// <summary>
/// Create a new event in RPMS. Wrapper around BMXConnectInfo.RaiseEvent
/// </summary>
/// <param name="sEvent">Name of Event to Raise</param>
/// <param name="sParams">Parameter of Event to Raise</param>
public void RaiseRPMSEvent(string sEvent, string sParams)
{
try
{
//Signal RPMS to raise an event
CGDocumentManager.Current.RemoteSession.EventServices.TriggerEvent(sEvent, sParams, false);
}
catch (Exception ex)
{
Debug.Write(ex.Message);
}
}
#endregion
/// <summary>
/// This is how you set how the grid will look
/// </summary>
public void UpdateArrays()
{
// Make sure that we are called synchronously
Debug.Assert(this.InvokeRequired == false,"CGView.UpdateArrays InvokeRequired");
// This is where you set how the grid will look
//Create Deep copy of Availability Array
ArrayList availArrayCopy = new ArrayList();
foreach (CGAvailability av in this.m_Document.AvailabilityArray)
availArrayCopy.Add(av);
try
{
//Tell the grid about Avails, Appts, and Resources.
this.calendarGrid1.AvailabilityArray = availArrayCopy;
//Appts are cloned b/c if we tie into the class directly, we shoot off errors when we manipulate it.
this.calendarGrid1.Appointments = (CGAppointments)this.m_Document.Appointments.Clone();
this.calendarGrid1.Resources = this.m_Document.Resources;
//Redraw the calendar grid
this.calendarGrid1.OnUpdateArrays(); // this draws the Calendar
this.lblResource.Text = this.m_Document.DocName;
this.calendarGrid1.Invalidate();
}
catch (Exception ex)
{
MessageBox.Show("Unable to update arrays " + ex.Message, "Clinical Scheduling");
}
}
private void SchedulingManagement()
{
try
{
bool bLock = CGDocumentManager.Current.RemoteSession.Lock("^BSDXMGR", "+");
if (bLock == false)
{
throw new Exception("Another user is currently in Scheduling Management. Try later.");
}
DManagement dMgm = new DManagement();
dMgm.InitializeDialog(this.m_DocManager);
if (dMgm.ShowDialog(this) == DialogResult.Cancel)
{
}
m_DocManager.GlobalDataSet.Tables["ResourceUser"].Clear();
m_DocManager.LoadResourceUserTable(false);
bLock = CGDocumentManager.Current.RemoteSession.Lock("^BSDXMGR", "-");
}
catch (ApplicationException aex)
{
string sMsg = aex.Message;
MessageBox.Show("Unable to acquire transmit lock. Try later.");
}
catch (Exception ex)
{
MessageBox.Show("Scheduling Management Error: " + ex.Message, "Clinical Scheduling");
}
}
public void UpdateTree()
{
this.tvSchedules.Nodes.Clear();
this.LoadTree();
}
public void ViewPatientAppointments()
{
try
{
//Display a dialog to collect Patient Name
DPatientLookup dPat = new DPatientLookup();
dPat.DocManager = m_DocManager;
if (dPat.ShowDialog(this) == DialogResult.Cancel)
{
return;
}
Debug.Assert(dPat.PatientIEN != "");
int nPatientID = Convert.ToInt32(dPat.PatientIEN);
ViewPatientAppointments(nPatientID);
}
catch (Exception ex)
{
MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
public void ViewPatientAppointments(int PatientID)
{
DPatientApptDisplay dPa = new DPatientApptDisplay();
dPa.InitializeForm(this.DocManager, PatientID);
if (dPa.ShowDialog(this) != DialogResult.Cancel)
{
}
}
private void FindAvailableAppointment(ArrayList alResourceArray)
{
DApptSearch dSearch = new DApptSearch();
dSearch.InitializePage(alResourceArray, this.m_DocManager);
if (dSearch.ShowDialog(this) == DialogResult.Cancel)
return;
CGAvailability av = dSearch.SelectedAvailability;
ArrayList alResource = new ArrayList();
alResource.Add(av.ResourceList);
DateTime sDate = av.StartTime;
m_sDocName = av.ResourceList;
OpenSelectedSchedule(alResource, sDate);
}
#endregion Methods
#region Events
/// <summary>
/// Special import to get the GetActiveWindow method from Win32
/// </summary>
/// <returns>Windows Handle number for Foregreound Active Window</returns>
[DllImport("user32.dll")]
static extern IntPtr GetActiveWindow();
/// <summary>
/// If a mouse enters the grid, check if the grid is on the active form first before stealing the focus
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void calendarGrid1_MouseEnter(object sender, EventArgs e)
{
if (GetActiveWindow() == this.Handle)
calendarGrid1.Focus();
}
/// <summary>
/// If mouse enters the Tree Section, check if the grid is on the active form first before stealing the focus
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void tvSchedules_MouseEnter(object sender, EventArgs e)
{
if (GetActiveWindow() == this.Handle)
tvSchedules.Focus();
}
private void CGView_Load(object sender, System.EventArgs e)
{
Debug.Assert (this.Document != null);
//Register the view
CGDocumentManager.Current.RegisterDocumentView(this.Document, this);
//Load the Group-Resource treeview
LoadTree();
this.SetDesktopLocation(this.DesktopLocation.X + 10, this.DesktopLocation.Y + 10);
//Show the Form
this.Activate();
//Set focus on the calendar grid
this.calendarGrid1.Focus();
}
private void mnuOpenSchedule_Click(object sender, System.EventArgs e)
{
CreateNewSchedule();
}
private void mnu1Day_Click(object sender, System.EventArgs e)
{
DateTime dtPicker = dateTimePicker1.Value;
DateTime DayOnly = new DateTime(dtPicker.Year, dtPicker.Month, dtPicker.Day);
this.calendarGrid1.StartDate = DayOnly;
this.calendarGrid1.Columns = 1;
}
private void mnu5Day_Click(object sender, System.EventArgs e)
{
if (this.calendarGrid1.Columns == 1)
{
this.StartDate = this.Document.StartDate;
}
this.calendarGrid1.Columns = 5;
this.Document.m_nColumnCount = 5; // MJL 1/17/2007
RequestRefreshGrid();
}
private void mnu7Day_Click(object sender, System.EventArgs e)
{
this.calendarGrid1.Columns = 7;
this.Document.m_nColumnCount = 7; // MJL 1/17/2007
RequestRefreshGrid();
}
private void mnu10Minute_Click(object sender, System.EventArgs e)
{
CalendarGrid cg = this.calendarGrid1;
cg.TimeScale = 10;
cg.PositionGrid(7);
}
private void mnu15Minute_Click(object sender, System.EventArgs e)
{
CalendarGrid cg = this.calendarGrid1;
cg.TimeScale = 15;
cg.PositionGrid(7);
}
private void mnu20Minute_Click(object sender, System.EventArgs e)
{
CalendarGrid cg = this.calendarGrid1;
cg.TimeScale = 20;
cg.PositionGrid(7);
}
private void mnu30Minute_Click(object sender, System.EventArgs e)
{
CalendarGrid cg = this.calendarGrid1;
cg.TimeScale = 30;
cg.PositionGrid(7);
}
private void mnuViewScheduleTree_Click(object sender, System.EventArgs e)
{
this.mnuViewScheduleTree.Checked = this.tvSchedules.Visible;
this.tvSchedules.Visible = !(this.tvSchedules.Visible);
this.mnuViewScheduleTree.Checked = !(this.mnuViewScheduleTree.Checked);
}
private void tvSchedules_DoubleClick(object sender, System.EventArgs e)
{
if (m_alSelectedTreeResourceArray == null)
return;
if (m_alSelectedTreeResourceArray.Count < 1)
{
if (this.tvSchedules.SelectedNode.Text != "")
{
SetResourceArrayFromGroup(tvSchedules.SelectedNode.Text);
}
else
{
return;
}
}
OpenSelectedSchedule(m_alSelectedTreeResourceArray, DateTime.Today);
}
//20041109 Added
private void SetResourceArrayFromGroup(string sGroup)
{
//Navigate from ResourceGroup table to Resources table
DataRow[] arrRows;
DataRelation dr = DocManager.GlobalDataSet.Relations["GroupResource"];
DataRow r = DocManager.GlobalDataSet.Tables["ResourceGroup"].Rows.Find(sGroup);
arrRows = r.GetChildRows(dr);
for (int i=0; i< arrRows.Length; i++)
{
string sResource = arrRows[i]["RESOURCE_NAME"].ToString();
m_alSelectedTreeResourceArray.Add(sResource);
}
m_sDocName = sGroup;
}
public void SyncTree()
{
}
private void tvSchedules_AfterSelect(object sender, System.Windows.Forms.TreeViewEventArgs e)
{
m_alSelectedTreeResourceArray = new ArrayList();
string sResource = e.Node.FullPath;
string[] ss = sResource.Split((char) 92);
int l = ss.GetUpperBound(0);
if (l == 0) //a resource group was checked, so get all underying resources
{
SetResourceArrayFromGroup(ss[0]);
}
else
{
sResource = ss[l];
m_alSelectedTreeResourceArray.Add(ss[1]);
}
m_sDocName = ss[l];
return;
}
/// <summary>
/// Makes sure that the node gets selected no matter where we click.
/// Incidentally, Invokes AfterSelect event.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void tvSchedules_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
{
e.Node.TreeView.SelectedNode = e.Node;
}
private void CGView_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
try
{
CGDocumentManager.Current.RemoteSession.EventServices.RpmsEvent -= BMXNetEventHandler;
this.calendarGrid1.CloseGrid();
if (this.DocManager.m_SsshProcess != null)
{
if (!this.DocManager.m_SsshProcess.HasExited)
{
this.DocManager.m_SsshProcess.Kill();
}
}
}
catch (Exception ex)
{
Debug.Write("CGView_Closing exception: " + ex.Message + "\n");
}
}
private void mnuViewRightPanel_Click(object sender, System.EventArgs e)
{
this.mnuViewRightPanel.Checked = this.panelRight.Visible;
this.panelRight.Visible = !(this.panelRight.Visible);
this.mnuViewRightPanel.Checked = !(this.mnuViewRightPanel.Checked);
}
private void calendarGrid1_CGSelectionChanged(object sender, IndianHealthService.ClinicalScheduling.CGSelectionChangedArgs e)
{
CGAvailability resultantAvail;
m_nSlots = m_Document.SlotsAvailable(e.StartTime, e.EndTime, e.Resource, this.calendarGrid1.TimeScale, out resultantAvail);
UpdateStatusBar(e.StartTime, e.EndTime, resultantAvail);
}
/// <summary>
/// Fired during drag and drop, on the drop action.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void calendarGrid1_CGAppointmentChanged(object sender, IndianHealthService.ClinicalScheduling.CGAppointmentChangedArgs e)
{
try
{
// added April 13 2011
// Can't edit radiology appointments (Why? b/c it's intimately tied to Radiology Entry of the Hosp Loc)
if (e.Appointment.RadiologyExamIEN.HasValue && e.Appointment.RadiologyExamIEN.Value > 0)
{
MessageBox.Show("You cannot move a radiology appointment.", "Clinical Scheduling");
return;
}
// added May 5 2011
// Can't move an appointment to a radiology resource
if (IsThisARadiologyResource(e.Resource))
{
MessageBox.Show("You cannot move an appointment to a radiology location.", "Clinical Scheduling");
return;
}
if (e.Appointment.CheckInTime.Ticks > 0)
{
MessageBox.Show("You cannot change the appointment time because the patient has already checked in.", "Clinical Scheduling");
return;
}
// Added check for making Walk-ins/appts in the past. 9/28/2010 //smh
if (e.StartTime < DateTime.Today.Date)
{
var result = MessageBox.Show("Are you sure you want to make an appointment in the past?", "Windows Scheduling", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button2);
if (result == DialogResult.No) return;
}
//Can user edit destination resource?
if (EditAppointmentEnabled(e.Resource) == false)
return;
//Can user edit original schedule?
if (EditAppointmentEnabled(e.Appointment.Resource) == false)
return;
if (MessageBox.Show("Are you sure you want to move this appointment?", "Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes)
return;
//20040909 Cherokee Replaced this block with following
// if (m_Document.SlotsAvailable(e.StartTime, e.EndTime, e.Resource, out sAccessType, out sAvailabilityMessage) < 1)
// {
// MessageBox.Show("There are no appointment slots available for the selected time.");
// return;
// }
bool bOverbook =false;
if (m_htOverbook.Count > 0)
{
bOverbook = (bool) this.m_htOverbook[e.Resource.ToString()];
}
bool bModSchedule =false;
if (m_htModifySchedule.Count > 0)
{
bModSchedule = (bool) this.m_htModifySchedule[e.Resource.ToString()];
}
CGAvailability resultantAvail;
bool bSlotsAvailable = (m_Document.SlotsAvailable(e.StartTime, e.EndTime, e.Resource, this.calendarGrid1.TimeScale, out resultantAvail) > 0);
if (!((bSlotsAvailable) || (bModSchedule) || (bOverbook) ))
{
MessageBox.Show("There are no appointment slots available for the selected time.");
return;
}
/*
* 7-19-05 Added overbook prompt
*/
if (bSlotsAvailable == false)
{
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo);
if (dr != DialogResult.Yes)
{
return;
}
}
//Create a new appointment using old data for patient demographics and note and new data
//for StartTime, EndTime, Resource, AccessTypeID
CGAppointment appt = new CGAppointment();
appt.PatientID = e.Appointment.PatientID;
appt.PatientName = e.Appointment.PatientName;
appt.StartTime = e.StartTime;
appt.EndTime = e.EndTime;
appt.Resource = e.Resource;
appt.Note = e.Appointment.Note;
appt.HealthRecordNumber = e.Appointment.HealthRecordNumber;
appt.AccessTypeID = e.AccessTypeID;
appt.Patient = e.Appointment.Patient;
this.Document.CreateAppointment(appt);
//CGAppointment a = new CGAppointment();
//a.StartTime = e.StartTime;
////e.Appointment.StartTime = e.StartTime
//a.EndTime = e.EndTime;
////e.Appointment.EndTime = e.EndTime;
//a.Resource = e.Resource;
////e.Appointment.Resource = e.Resource;
//a.AccessTypeID = e.AccessTypeID;
////e.Appointment.AccessTypeID = e.AccessTypeID;
//m_Document.CreateAppointment(a);
string sError = AppointmentDeleteOne(e.Appointment.AppointmentKey);
if (sError != "")
{
MessageBox.Show(sError);
return;
}
}
catch (Exception ex)
{
MessageBox.Show("Unable to change appointment " + ex.Message, "Clinical Scheduling");
//this.m_DocManager.UpdateViews();
return;
}
finally
{
this.UpdateArrays();
}
try
{
RaiseRPMSEvent("BSDX SCHEDULE" , e.Resource);
if (e.Resource != e.OldResource)
RaiseRPMSEvent("BSDX SCHEDULE", e.OldResource);
//That will take too long. Don't do it. Try and see what happens when you come
//this.m_DocManager.UpdateViews(e.Resource, e.OldResource);
}
catch (Exception ex)
{
Debug.Write(ex.Message);
}
}
private void mnuSchedulingManagment_Click(object sender, System.EventArgs e)
{
SchedulingManagement();
}
private void mnuFile_Popup(object sender, System.EventArgs e)
{
this.mnuSchedulingManagment.Enabled = DocManager.ScheduleManager;
}
private void mnuFindAppt_Click(object sender, System.EventArgs e)
{
FindAvailableAppointment(this.Document.Resources);
}
private void mnuRPMSServer_Click(object sender, System.EventArgs e)
{
//Handled by DocumentManager class
}
private void mnuRPMSLogin_Click(object sender, System.EventArgs e)
{
//Handled by DocumentManager class
}
private void CGView_Activated(object sender, System.EventArgs e)
{
calendarGrid1.GridEnter = true;
}
private void mnuHelpAbout_Click(object sender, System.EventArgs e)
{
MessageBox.Show("Clinical Scheduling Version " + Application.ProductVersion, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
private void ImplementMsg()
{
MessageBox.Show("Clinical Scheduling", "TODO: Implement this function");
}
private void mnuClose_Click(object sender, System.EventArgs e)
{
DialogResult dr = MessageBox.Show("Are you sure you want to close this schedule?", Application.ProductName, MessageBoxButtons.OKCancel);
if (dr != DialogResult.OK)
return;
this.Close();
}
private void mnuViewPatientAppts_Click(object sender, System.EventArgs e)
{
ViewPatientAppointments();
}
private void lstClip_DragEnter(object sender, System.Windows.Forms.DragEventArgs e)
{
bool b = e.Data.GetDataPresent(typeof(CGAppointment));
if (b == true)
{
e.Effect = DragDropEffects.Move;
}
else
{
e.Effect = DragDropEffects.None;
}
}
private void lstClip_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
{
try
{
CGAppointment a = (CGAppointment) e.Data.GetData(typeof(CGAppointment));
if (a.RadiologyExamIEN.HasValue)
{
MessageBox.Show("Cannot move a radiology appointment to the clipboard");
return;
}
// SMH: We copy the appointment so that when we change it later we don't inadvertently
// change the original appointment which may be shared by the grid.
//TODO: This is very messy. We need a true constructor.
CGAppointment apptcopy = new CGAppointment();
apptcopy.Patient = a.Patient;
apptcopy.PatientID = a.PatientID;
apptcopy.PatientName = a.PatientName;
apptcopy.StartTime = a.StartTime;
apptcopy.EndTime = a.EndTime;
apptcopy.Resource = String.Empty;
apptcopy.HealthRecordNumber = a.HealthRecordNumber;
// Using a different key to prevent addition of the same patient twice rather than the ApptID.
apptcopy.AppointmentKey = a.PatientID; // this is the key of the array list m_ClipList
//If patient is already here, bye! No need to add him/her/it again.
if (m_ClipList.AppointmentTable.Contains((int)apptcopy.AppointmentKey))
{
return;
}
//SMH: Why are there two lists? Should have one. Oh well.
//m_ClipList is used elsewhere. And it seems that they get out of sync sometimes. Agh!
m_ClipList.AddAppointment(apptcopy);
lstClip.Items.Add(apptcopy);
}
catch(Exception ex)
{
Debug.Write(ex.Message);
}
}
private void lstClip_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
m_bDragDropStart = false;
}
private void lstClip_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
{
try
{
if ((m_bDragDropStart == false)&&(lstClip.SelectedIndex > -1))
{
CGAppointment a = (CGAppointment) lstClip.Items[lstClip.SelectedIndex];
this.calendarGrid1.ApptDragSource = "list";
DragDropEffects effect = DoDragDrop(a, DragDropEffects.Move);
m_bDragDropStart = true;
}
}
catch (Exception ex)
{
Debug.Write(ex.Message);
}
}
private void calendarGrid1_CGAppointmentAdded(object sender, IndianHealthService.ClinicalScheduling.CGAppointmentChangedArgs e)
{
try
{
bool bSlotsAvailable;
bool bOverbook;
bool bModSchedule;
bool bModAppts;
if (this.EditAppointmentEnabled(e.Appointment.Resource) == false)
return;
bModAppts = (bool) this.m_htChangeAppts[e.Resource.ToString()];
if (bModAppts == false)
return;
// Added check for making Walk-ins/appts in the past. 9/28/2010 //smh
if (e.StartTime < DateTime.Today.Date)
{
var result = MessageBox.Show("Are you sure you want to make an appointment in the past?", "Windows Scheduling", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button2);
if (result == DialogResult.No) return;
}
bOverbook = (bool) this.m_htOverbook[e.Resource.ToString()];
bModSchedule = (bool) this.m_htModifySchedule[e.Resource.ToString()];
CGAvailability resultantAvail;
bSlotsAvailable = (m_Document.SlotsAvailable(e.StartTime, e.EndTime, e.Resource, this.calendarGrid1.TimeScale, out resultantAvail) > 0);
if (!((bSlotsAvailable) || (bModSchedule) || (bOverbook) ))
{
MessageBox.Show("There are no appointment slots available for the selected time.");
return;
}
/*
* 7-19-05 Added overbook prompt
*/
if (bSlotsAvailable == false)
{
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo);
if (dr != DialogResult.Yes)
{
return;
}
}
e.Appointment.StartTime = e.StartTime;
e.Appointment.EndTime = e.EndTime;
e.Appointment.Resource = e.Resource;
e.Appointment.AccessTypeID = e.AccessTypeID;
m_Document.CreateAppointment(e.Appointment);
}
catch (Exception ex)
{
MessageBox.Show("Unable to add new appointment " + ex.Message, "Clinical Scheduling");
return;
}
try
{
RaiseRPMSEvent("BSDX SCHEDULE" , e.Resource);
if (e.Resource != e.OldResource)
RaiseRPMSEvent("BSDX SCHEDULE", e.OldResource);
this.m_DocManager.UpdateViews(e.Resource, e.OldResource);
}
catch (Exception ex)
{
Debug.Write(ex.Message);
}
}
private void lstClip_SelectedIndexChanged(object sender, System.EventArgs e)
{
}
private void mnuPrintClinicSchedules_Click(object sender, System.EventArgs e)
{
try
{
DSelectLetterClinics ds = new DSelectLetterClinics();
ds.InitializePage(this.m_DocManager.GlobalDataSet, "Print Clinic Schedules");
ds.SetupForReports();
if (ds.ShowDialog(this) != DialogResult.OK)
return;
//get the resource names and call the letter printer
string sClinics = ds.SelectedClinics;
DateTime dtBegin = ds.BeginDate;
DateTime dtEnd = ds.EndDate;
DPatientLetter dpl = new DPatientLetter();
dpl.InitializeFormClinicSchedule(this.DocManager, sClinics, dtBegin, dtEnd);
dpl.ShowDialog(this);
}
catch(Exception ex)
{
MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
private void mnuPrintReminderLetters_Click(object sender, System.EventArgs e)
{
try
{
DSelectLetterClinics ds = new DSelectLetterClinics();
ds.InitializePage(this.m_DocManager.GlobalDataSet, "Print Reminder Letters");
if (ds.ShowDialog(this) != DialogResult.OK)
return;
//get the resource names and call the letter printer
string sClinics = ds.SelectedClinics;
DateTime dtBegin = ds.BeginDate;
DateTime dtEnd = ds.EndDate;
DPatientLetter dpl = new DPatientLetter();
dpl.InitializeFormPatientReminderLetters(this.DocManager, sClinics, dtBegin, dtEnd);
dpl.ShowDialog(this);
}
catch(Exception ex)
{
MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
private void mnuPrintRebookLetters_Click(object sender, System.EventArgs e)
{
try
{
DSelectLetterClinics ds = new DSelectLetterClinics();
ds.InitializePage(this.m_DocManager.GlobalDataSet, "Print Clinic Rebook Letters");
if (ds.ShowDialog(this) != DialogResult.OK)
return;
//Call the letter printer
DPatientLetter dpl = new DPatientLetter();
dpl.InitializeFormRebookLetters(this.DocManager, ds.SelectedClinics, ds.BeginDate, ds.EndDate);
dpl.ShowDialog(this);
}
catch(Exception ex)
{
MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
private void mnuPrintPatientLetter_Click(object sender, System.EventArgs e)
{
ViewPatientAppointments();
}
private void mnuRPMSDivision_Click(object sender, System.EventArgs e)
{
this.DocManager.ChangeDivision(this);
}
private void CGView_CursorChanged(object sender, System.EventArgs e)
{
}
private void mnuDisplayWalkIns_Click(object sender, System.EventArgs e)
{
calendarGrid1.DrawWalkIns = !(calendarGrid1.DrawWalkIns);
mnuDisplayWalkIns.Checked = calendarGrid1.DrawWalkIns;
calendarGrid1.SetOverlapTable();
calendarGrid1.Refresh();
}
private void mnuOpenMultipleSchedules_Click(object sender, System.EventArgs e)
{
try
{
DSelectSchedules ds = new DSelectSchedules();
ds.InitializePage(this.m_DocManager.GlobalDataSet, "Open Multiple Schedules");
if (ds.ShowDialog(this) != DialogResult.OK)
return;
//get the resource names and open schedules
ArrayList sResources = ds.SelectedClinics;
if (ds.SingleWindow == true)
{
m_sDocName = (ds.GroupWindowName == "")?"Multiple Selected Schedules":ds.GroupWindowName;
OpenSelectedSchedule( sResources, DateTime.Today);
}
else
{
foreach (string sResource in sResources)
{
ArrayList alSingle = new ArrayList(1);
alSingle.Add(sResource);
m_sDocName = sResource;
OpenSelectedSchedule( alSingle, DateTime.Today);
}
}
return;
}
catch(Exception ex)
{
MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
private void ctxCalGridWalkin_Click(object sender, System.EventArgs e)
{
AppointmentAddWalkin();
}
private void mnuWalkIn_Click(object sender, System.EventArgs e)
{
AppointmentAddWalkin();
}
private void mnuPrintCancellationLetters_Click(object sender, System.EventArgs e)
{
try
{
DSelectLetterClinics ds = new DSelectLetterClinics();
ds.InitializePage(this.m_DocManager.GlobalDataSet, "Print Clinic Cancellation Letters");
if (ds.ShowDialog(this) != DialogResult.OK)
return;
//get the resource names and call the letter printer
string sClinics = ds.SelectedClinics;
DateTime dtBegin = ds.BeginDate;
DateTime dtEnd = ds.EndDate;
DPatientLetter dpl = new DPatientLetter();
dpl.InitializeFormCancellationLetters(this.DocManager, sClinics, dtBegin, dtEnd);
dpl.ShowDialog(this);
}
catch(Exception ex)
{
MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
private void PrintRoutingSlip(CGAppointment appt)
{
//get this appointment's order
//Today's appointments
var todaysAppts = (from lkappts in this.Document.Appointments.AppointmentTable.Values.Cast<CGAppointment>()
where lkappts.StartTime > appt.StartTime.Date && lkappts.StartTime < appt.StartTime.AddDays(1).Date && lkappts.Resource == appt.Resource
orderby lkappts.StartTime
select lkappts).ToList();
//Find the order of the appointment
int apptOrder = todaysAppts.FindIndex(eachappt => eachappt.StartTime == appt.StartTime && eachappt.PatientID == appt.PatientID);
//Index is zero based, so add 1
apptOrder++;
//Send that to the routing slip as a parameter
PrintDocument pd = new PrintDocument() { DocumentName = "Routing Slip for Appt " + appt.AppointmentKey };
pd.PrintPage += (object s, System.Drawing.Printing.PrintPageEventArgs e) => CGDocumentManager.Current.PrintingObject.PrintRoutingSlip(appt, apptOrder, e);
pd.Print();
}
private void PrintAppointmentSlip(CGAppointment appt)
{
PrintDocument pd = new PrintDocument() { DocumentName = "Appointment Slip for Appt " + appt.AppointmentKey }; //Autoinit for DocName
pd.PrintPage += (object s, System.Drawing.Printing.PrintPageEventArgs e) => CGDocumentManager.Current.PrintingObject.PrintAppointmentSlip(appt, e);
pd.Print();
}
/// <summary>
/// Update Selection of date if user does not pick a date/time
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void dateTimePicker1_Leave(object sender, EventArgs e)
{
if (this.Document.SelectedDate != dateTimePicker1.Value.Date)
RequestRefreshGrid();
}
/// <summary>
/// Handle Selection of Date via mouse from datetimepicker dropdown
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void dateTimePicker1_CloseUp(object sender, EventArgs e)
{
if (this.Document.SelectedDate != dateTimePicker1.Value.Date)
RequestRefreshGrid();
}
/// <summary>
/// Handle Enter and Escape key on dateTimePicker
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void dateTimePicker1_KeyPress(object sender, KeyPressEventArgs e)
{
//if enter key is pressed:
// Tell windows that we are handling this
// Request a Refresh Grid if the date is different
// Set-Focus to Calendar Grid
if (e.KeyChar == (char)Keys.Enter)
{
e.Handled = true;
if (this.Document.SelectedDate != dateTimePicker1.Value.Date)
RequestRefreshGrid();
this.CGrid.Focus();
}
//if escape key is pressed:
// Tell windows that we are handling this
// Set-Focus to Calendar Grid
if (e.KeyChar == (char)Keys.Escape)
{
e.Handled = true;
this.CGrid.Focus();
}
}
private void mnuRefresh_Click(object sender, EventArgs e)
{
//this.m_DocManager.RemoteSession.EventServices.EventPollingInterval = 50000;
//this.m_DocManager.RemoteSession.EventServices.RefreshEventPoll();
this.DocManager.RemoteSession.EventServices.IsEventPollingEnabled = true;
this.DocManager.RemoteSession.EventServices.RefreshEventPoll();
this.DocManager.RemoteSession.EventServices.IsEventPollingEnabled = false;
ForceRefreshGrid();
}
#endregion events
/// <summary>
/// Refresh grid if needed.
/// </summary>
void RequestRefreshGrid()
{
DateTime dDate = dateTimePicker1.Value.Date;
// Change Date on Document
this.Document.SelectedDate = dDate;
// Do we need to update?
bool isRefreshNeeded = this.Document.IsRefreshNeeded();
//Splash when loading and change Cursor
if (isRefreshNeeded)
{
this.Cursor = Cursors.WaitCursor;
LoadSplash();
this.Document.RefreshDocument();
StopSplash();
this.Cursor = Cursors.Default;
}
if (this.Document.Resources.Count == 1)
{
if (this.calendarGrid1.Columns > 1)
{
this.StartDate = this.Document.StartDate;
}
else
{
this.StartDate = this.Document.SelectedDate;
}
}
else
{
this.StartDate = this.Document.SelectedDate;
}
//Is this needed? -- Yes it is. There is a bug in the drawing code for the calendar
//First time it draws, it draws appointments, but not availability slots
//Second time it draws, it both appointments and availabilites
//XXX: Need to investigate
this.Document.UpdateAllViews();
}
/// <summary>
/// This forces a grid refresh.
/// </summary>
void ForceRefreshGrid()
{
if (this.Document.m_sResourcesArray.Count == 0) return;
this.Cursor = Cursors.WaitCursor;
LoadSplash();
this.Document.RefreshSchedule();
this.UpdateArrays();
StopSplash();
this.Cursor = Cursors.Default;
}
//private delegate DialogResult dLoadingSplash(IWin32Window owner);
string _tempStatusBartext;
/// <summary>
/// Loads a splash that says "Loading" -- removed it april 13 2010
/// </summary>
private void LoadSplash()
{
_tempStatusBartext = this.statusBar1.Text;
this.statusBar1.Text = "Refreshing Schedule...";
//_loadingSplash = new LoadingSplash();
//_loadingSplash.StartPosition = FormStartPosition.CenterScreen; //XXX: Don't like this, but will do for now.
//_loadingSplash.UseWaitCursor = true; // tell user we are working
//_loadingSplash.Show(this);
//Thread threadSplash = new Thread(tstart);
//threadSplash.IsBackground = true;
//threadSplash.Name = "Loading Thread";
//threadSplash.Start(this);
//Thread threadSplash = new Thread(new ThreadStart(() => _loadingSplash.ShowDialog())); // lambda
//threadSplash.IsBackground = true; //expendable thread -- exit even if still running.
//threadSplash.Name = "Loading Thread";
//threadSplash.Start();
}
private void StopSplash()
{
this.statusBar1.Text = _tempStatusBartext;
}
private void PrintClinicSchedule(DateTime dStart, DateTime dEnd)
{
DPatientLetter dpl = new DPatientLetter();
int[] resourceIENs = (from resource in CGDocumentManager.Current.GlobalDataSet.Tables["Resources"].AsEnumerable()
join resource_name in m_alSelectedTreeResourceArray.Cast<string>() on resource.Field<string>("RESOURCE_NAME") equals resource_name
select resource.Field<int>("RESOURCEID")
).ToArray<int>();
// + | is an oddity in the Mumps code which I haven't investigated yet.
dpl.InitializeFormClinicSchedule(this.DocManager, string.Join("|", resourceIENs) + "|", dStart, dEnd);
dpl.ShowDialog(this);
}
private void mnuViewBrokerLog_Click(object sender, EventArgs e)
{
var view = new RPCLoggerView();
view.Show();
}
private void ctxCalGridCloneForward_Click(object sender, EventArgs e)
{
AppointmentCloneForward(m_alSelectedTreeResourceArray);
}
private void menuItem8_Click(object sender, EventArgs e)
{
}
private StringBuilder GetCalendarInvite(CGAppointment appt, String emailSubject, String emailBody)
{
StringBuilder sb = new StringBuilder();
Configuration conf = GetConfiguration();
sb.AppendLine("BEGIN:VCALENDAR");
sb.AppendLine(string.Format("PRODID:-//{0}//BSDX Scheduling 1.7//EN", conf.AppSettings.Settings["organization"].Value));
sb.AppendLine("VERSION:2.0");
sb.AppendLine("CALSCALE:GREGORIAN");
sb.AppendLine("METHOD:REQUEST");
sb.AppendLine("X-WR-CALDESC:");
sb.AppendLine("BEGIN:VEVENT");
sb.AppendLine(string.Format("DTSTART;VALUE=DATE-TIME:{0:yyyyMMddTHHmmssZ}", appt.StartTime.ToUniversalTime().ToString("yyyyMMdd\\THHmmss\\Z")));
sb.AppendLine(string.Format("DTEND;VALUE=DATE-TIME:{0:yyyyMMddTHHmmssZ}", appt.EndTime.ToUniversalTime().ToString("yyyyMMdd\\THHmmss\\Z")));
sb.AppendLine(string.Format("DTSTAMP:{0:yyyyMMddTHHmmssZ}", DateTime.Now.ToUniversalTime().ToString("yyyyMMdd\\THHmmss\\Z")));
sb.AppendLine(string.Format("UID:{0}", Guid.NewGuid()));
sb.AppendLine(string.Format("DESCRIPTION:{0}", emailBody));
sb.AppendLine(string.Format("X-ALT-DESC;FMTTYPE=text/html:{0}", emailBody));
sb.AppendLine(string.Format("SUMMARY:{0}", emailSubject));
sb.AppendLine(string.Format("ORGANIZER:MAILTO:{0}", conf.AppSettings.Settings["userEmail"].Value)); //
sb.AppendLine(string.Format("ATTENDEE;CN=\"{0}\";RSVP=TRUE:mailto:{1}", appt.Patient.Name, appt.Patient.Email));
sb.AppendLine("LOCATION:" + appt.Resource + ", " + conf.AppSettings.Settings["address"].Value); //appt.Resource);
sb.AppendLine("SEQUENCE:0");
sb.AppendLine("STATUS:CONFIRMED");
sb.AppendLine("TRANSP:TRANSPARENT");
sb.AppendLine("END:VEVENT");
sb.AppendLine("END:VCALENDAR");
return sb;
}
private void ExportCalendarInvite(CGAppointment appt, string emailSubject, string emailBody)
{
SaveFileDialog saveFileDialog1 = new SaveFileDialog();
saveFileDialog1.Filter = "iCalendar File|*.ics";
saveFileDialog1.Title = "Save Calendar Invite";
saveFileDialog1.ShowDialog();
if (saveFileDialog1.FileName != "")
{
StringBuilder str = GetCalendarInvite(appt, emailSubject, emailBody);
FileStream fs = new FileStream(saveFileDialog1.FileName, FileMode.Create);
StreamWriter sw = new StreamWriter(fs);
sw.Write(str.ToString());
sw.Close();
fs.Close();
}
}
private void EmailCalendarInvite(CGAppointment appt, String emailSubject, String emailBody)
{
Configuration conf = GetConfiguration();
SmtpClient sc = new SmtpClient(conf.AppSettings.Settings["smtpHost"].Value);
System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage();
msg.From = new MailAddress(conf.AppSettings.Settings["userEmail"].Value);
msg.To.Add(new MailAddress(appt.Patient.Email, appt.Patient.Name));
msg.Bcc.Add(new MailAddress(conf.AppSettings.Settings["userEmail"].Value));
msg.Subject = emailSubject;
msg.IsBodyHtml = true;
msg.Body = emailBody;
StringBuilder str = GetCalendarInvite(appt, emailSubject, emailBody);
System.Net.Mime.ContentType ct = new System.Net.Mime.ContentType("text/calendar");
ct.Parameters.Add("method", "REQUEST");
//ct.Parameters.Add("name", "meeting.ics");
AlternateView avCal = AlternateView.CreateAlternateViewFromString(str.ToString(), ct);
msg.AlternateViews.Add(avCal);
NetworkCredential nc = new NetworkCredential(conf.AppSettings.Settings["userEmail"].Value, conf.AppSettings.Settings["userPassword"].Value);
sc.Port = Convert.ToInt32(conf.AppSettings.Settings["smtpPort"].Value);
sc.EnableSsl = Convert.ToBoolean(conf.AppSettings.Settings["enableSSL"].Value);
sc.Credentials = nc;
try
{
sc.Send(msg);
}
catch (Exception e)
{
MessageBox.Show("Unable to send email. " + e.Message);
}
}
private void copyAppointmentToClipBoard() {
int apptID = this.CGrid.SelectedAppointment;
Configuration conf = GetConfiguration();
if (apptID <= 0) return;
CGAppointment a = (CGAppointment)this.Appointments.AppointmentTable[apptID];
string str = "Clinic Title: " + a.Resource + "\n" +
"Date/Time: " + a.StartTime.ToString() + "\n" +
"Location: " + conf.AppSettings.Settings["address"].Value + "\n" +
"Phone: " + conf.AppSettings.Settings["phone"].Value;
Clipboard.SetText(str);
}
private void ctxExportInvite_Click(object sender, EventArgs e)
{
Configuration conf = GetConfiguration();
String emailBody = "Your Appointment is Scheduled.";
String emailSubject = conf.AppSettings.Settings["inviteSubject"].Value;
int apptID = this.CGrid.SelectedAppointment;
if (apptID <= 0) return;
CGAppointment a = (CGAppointment)this.Appointments.AppointmentTable[apptID];
if (conf.AppSettings.Settings["useEmail"].Value == "true")
{
EmailCalendarInvite(a, emailSubject, emailBody);
}
else
{
ExportCalendarInvite(a, emailSubject, emailBody);
}
}
private void ctxCopyAppointment_Click(object sender, EventArgs e)
{
copyAppointmentToClipBoard();
}
}//End class
}