VistA-Scheduling/cs/bsdx0200GUISourceCode/CGView.cs

3573 lines
130 KiB
C#
Raw Normal View History

2009-11-30 03:53:28 -05:00
using System;
using System.Collections;
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;
2009-11-30 03:53:28 -05:00
namespace IndianHealthService.ClinicalScheduling
{
/// <summary>
/// Main Form: Shows Tree of Clinics and Calendar Grid
2009-11-30 03:53:28 -05:00
/// </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 contextMenu1;
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;
2009-11-30 03:53:28 -05:00
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 menuItem5;
private System.Windows.Forms.MenuItem menuItem8;
private System.Windows.Forms.MenuItem ctxCalGridWalkin;
private System.Windows.Forms.MenuItem menuItem2;
private System.Windows.Forms.MenuItem menuItem9;
private System.Windows.Forms.MenuItem mnuOpenMultipleSchedules;
private System.Windows.Forms.MenuItem mnuDisplayWalkIns;
private System.Windows.Forms.MenuItem mnuRPMSDivision;
private MenuItem menuItem10;
private MenuItem ctxCalGridReprintApptSlip;
private MenuItem ctxCalGridUndoCheckin;
private MenuItem ctxPrintScheduleT0;
private MenuItem ctxPrintScheduleT1;
private MenuItem ctxPrintScheduleT3;
private MenuItem menuItem12;
private MenuItem mnuRefresh;
2009-11-30 03:53:28 -05:00
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 = this.DocManager.ConnectInfo.UserName;
if (sText != null)
this.Text += " - " + sText;
if (DocManager.ConnectInfo.DivisionName != null)
this.Text += " - " + DocManager.ConnectInfo.DivisionName;
}
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();
2010-07-04 01:25:13 -04:00
// Set username and division up top
this.Text = this.DocManager.ConnectInfo.UserName;
2009-11-30 03:53:28 -05:00
if (sText != null)
this.Text += " - " + sText;
if (DocManager.ConnectInfo.DivisionName != null)
this.Text += " - " + DocManager.ConnectInfo.DivisionName;
this.m_ConnectInfo = m_DocManager.ConnectInfo;
m_bmxDelegate = new BMXNetConnectInfo.BMXNetEventDelegate(BMXNetEventHandler);
m_ConnectInfo.BMXNetEvent += m_bmxDelegate;
}
private BMXNetConnectInfo.BMXNetEventDelegate m_bmxDelegate;
2009-11-30 03:53:28 -05:00
#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();
2009-11-30 03:53:28 -05:00
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.mnuEditAppointment = new System.Windows.Forms.MenuItem();
this.mnuDeleteAppointment = new System.Windows.Forms.MenuItem();
this.menuItem5 = new System.Windows.Forms.MenuItem();
this.mnuNoShow = new System.Windows.Forms.MenuItem();
this.mnuNoShowUndo = new System.Windows.Forms.MenuItem();
this.menuItem8 = new System.Windows.Forms.MenuItem();
this.mnuCopyAppointment = new System.Windows.Forms.MenuItem();
this.mnuWalkIn = new System.Windows.Forms.MenuItem();
this.mnuFindAppt = new System.Windows.Forms.MenuItem();
this.mnuCheckIn = new System.Windows.Forms.MenuItem();
this.mnuViewPatientAppts = 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();
2009-11-30 03:53:28 -05:00
this.mnuHelp = new System.Windows.Forms.MenuItem();
this.mnuHelpAbout = 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.contextMenu1 = 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();
2009-11-30 03:53:28 -05:00
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.ctxCalendarGrid = new System.Windows.Forms.ContextMenu();
this.ctxCalGridAdd = new System.Windows.Forms.MenuItem();
this.ctxCalGridEdit = new System.Windows.Forms.MenuItem();
this.ctxCalGridDelete = new System.Windows.Forms.MenuItem();
this.ctxCalGridCheckIn = new System.Windows.Forms.MenuItem();
this.ctxCalGridUndoCheckin = new System.Windows.Forms.MenuItem();
2009-11-30 03:53:28 -05:00
this.menuItem2 = new System.Windows.Forms.MenuItem();
this.ctxCalGridNoShow = new System.Windows.Forms.MenuItem();
this.ctxCalGridNoShowUndo = new System.Windows.Forms.MenuItem();
this.menuItem9 = new System.Windows.Forms.MenuItem();
this.ctxCalGridWalkin = new System.Windows.Forms.MenuItem();
this.menuItem10 = new System.Windows.Forms.MenuItem();
this.ctxCalGridReprintApptSlip = new System.Windows.Forms.MenuItem();
2009-11-30 03:53:28 -05:00
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.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid();
2009-11-30 03:53:28 -05:00
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,
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
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";
2009-11-30 03:53:28 -05:00
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";
2009-11-30 03:53:28 -05:00
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";
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
this.mnuPrintClinicSchedules.Text = "&Print Clinic Schedules";
this.mnuPrintClinicSchedules.Click += new System.EventHandler(this.mnuPrintClinicSchedules_Click);
//
// mnuPrintReminderLetters
2009-11-30 03:53:28 -05:00
//
this.mnuPrintReminderLetters.Index = 10;
this.mnuPrintReminderLetters.Shortcut = System.Windows.Forms.Shortcut.CtrlI;
this.mnuPrintReminderLetters.Text = "Print Rem&inder Letters";
this.mnuPrintReminderLetters.Click += new System.EventHandler(this.mnuPrintReminderLetters_Click);
2009-11-30 03:53:28 -05:00
//
// mnuPrintRebookLetters
//
this.mnuPrintRebookLetters.Index = 11;
this.mnuPrintRebookLetters.Shortcut = System.Windows.Forms.Shortcut.CtrlR;
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
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.mnuEditAppointment,
this.mnuDeleteAppointment,
this.menuItem5,
this.mnuNoShow,
this.mnuNoShowUndo,
this.menuItem8,
this.mnuCopyAppointment,
this.mnuWalkIn,
this.mnuFindAppt,
this.mnuCheckIn,
this.mnuViewPatientAppts});
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;
2009-11-30 03:53:28 -05:00
this.mnuNewAppointment.Text = "&New Appointment";
this.mnuNewAppointment.Click += new System.EventHandler(this.mnuNewAppointment_Click);
//
// mnuEditAppointment
//
this.mnuEditAppointment.Index = 1;
this.mnuEditAppointment.Shortcut = System.Windows.Forms.Shortcut.F2;
2009-11-30 03:53:28 -05:00
this.mnuEditAppointment.Text = "&Edit Appointment";
this.mnuEditAppointment.Click += new System.EventHandler(this.mnuEditAppointment_Click);
//
// mnuDeleteAppointment
//
this.mnuDeleteAppointment.Index = 2;
this.mnuDeleteAppointment.Shortcut = System.Windows.Forms.Shortcut.Del;
2009-11-30 03:53:28 -05:00
this.mnuDeleteAppointment.Text = "Cance&l Appointment";
this.mnuDeleteAppointment.Click += new System.EventHandler(this.mnuDeleteAppointment_Click);
//
// menuItem5
//
this.menuItem5.Index = 3;
this.menuItem5.Text = "-";
//
// mnuNoShow
//
this.mnuNoShow.Index = 4;
this.mnuNoShow.Text = "Mark as No Sho&w";
this.mnuNoShow.Click += new System.EventHandler(this.mnuNoShow_Click);
//
// mnuNoShowUndo
//
this.mnuNoShowUndo.Index = 5;
this.mnuNoShowUndo.Text = "&Undo No Show";
this.mnuNoShowUndo.Click += new System.EventHandler(this.mnuNoShowUndo_Click);
//
// menuItem8
//
this.menuItem8.Index = 6;
this.menuItem8.Text = "-";
//
// mnuCopyAppointment
//
this.mnuCopyAppointment.Index = 7;
this.mnuCopyAppointment.Text = "&Copy Appointment to Clipboard";
this.mnuCopyAppointment.Click += new System.EventHandler(this.mnuCopyAppointment_Click);
//
// mnuWalkIn
//
this.mnuWalkIn.Index = 8;
this.mnuWalkIn.Text = "Create Wal&k-In Appointment";
this.mnuWalkIn.Click += new System.EventHandler(this.mnuWalkIn_Click);
//
// mnuFindAppt
//
this.mnuFindAppt.Index = 9;
this.mnuFindAppt.Shortcut = System.Windows.Forms.Shortcut.CtrlF;
this.mnuFindAppt.Text = "&Find Empty Slots";
2009-11-30 03:53:28 -05:00
this.mnuFindAppt.Click += new System.EventHandler(this.mnuFindAppt_Click);
//
// mnuCheckIn
//
this.mnuCheckIn.Index = 10;
this.mnuCheckIn.Text = "Check &In Patient";
this.mnuCheckIn.Click += new System.EventHandler(this.mnuCheckIn_Click);
//
// mnuViewPatientAppts
//
this.mnuViewPatientAppts.Index = 11;
this.mnuViewPatientAppts.Text = "&View Patient Appointments";
this.mnuViewPatientAppts.Click += new System.EventHandler(this.mnuViewPatientAppts_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});
2009-11-30 03:53:28 -05:00
this.mnuCalendar.Text = "&View";
//
// mnuDisplayWalkIns
//
this.mnuDisplayWalkIns.Checked = true;
this.mnuDisplayWalkIns.Index = 0;
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;
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
this.mnu10Minute.Index = 0;
this.mnu10Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl0;
2009-11-30 03:53:28 -05:00
this.mnu10Minute.Text = "&10-Minute";
this.mnu10Minute.Click += new System.EventHandler(this.mnu10Minute_Click);
//
// mnu15Minute
//
this.mnu15Minute.Enabled = false;
2009-11-30 03:53:28 -05:00
this.mnu15Minute.Index = 1;
this.mnu15Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl4;
2009-11-30 03:53:28 -05:00
this.mnu15Minute.Text = "1&5-Minute";
this.mnu15Minute.Click += new System.EventHandler(this.mnu15Minute_Click);
//
// mnu20Minute
//
this.mnu20Minute.Enabled = false;
2009-11-30 03:53:28 -05:00
this.mnu20Minute.Index = 2;
this.mnu20Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl3;
2009-11-30 03:53:28 -05:00
this.mnu20Minute.Text = "&20-Minute";
this.mnu20Minute.Click += new System.EventHandler(this.mnu20Minute_Click);
//
// mnu30Minute
//
this.mnu30Minute.Enabled = false;
2009-11-30 03:53:28 -05:00
this.mnu30Minute.Index = 3;
this.mnu30Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl2;
2009-11-30 03:53:28 -05:00
this.mnu30Minute.Text = "&30-Minute";
this.mnu30Minute.Click += new System.EventHandler(this.mnu30Minute_Click);
//
// mnuViewScheduleTree
//
this.mnuViewScheduleTree.Index = 6;
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);
//
2009-11-30 03:53:28 -05:00
// mnuHelp
//
this.mnuHelp.Index = 3;
this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.mnuHelpAbout});
this.mnuHelp.Text = "&Help";
//
// mnuHelpAbout
//
this.mnuHelpAbout.Index = 0;
this.mnuHelpAbout.Text = "&About";
this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_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";
this.mnuTest1.Click += new System.EventHandler(this.mnuTest1_Click);
//
// tvSchedules
//
this.tvSchedules.BackColor = System.Drawing.SystemColors.ControlLight;
this.tvSchedules.ContextMenu = this.contextMenu1;
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, 317);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
//
// contextMenu1
//
this.contextMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.ctxOpenSchedule,
this.ctxEditAvailability,
this.ctxProperties,
this.ctxFindAppt,
this.ctxPrintScheduleT0,
this.ctxPrintScheduleT1,
this.ctxPrintScheduleT3});
2009-11-30 03:53:28 -05:00
this.contextMenu1.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";
2009-11-30 03:53:28 -05:00
this.ctxProperties.Click += new System.EventHandler(this.ctxProperties_Click);
//
// ctxFindAppt
//
this.ctxFindAppt.Index = 3;
this.ctxFindAppt.Text = "&Find Empty Slots";
2009-11-30 03:53:28 -05:00
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);
//
2009-11-30 03:53:28 -05:00
// panelRight
//
this.panelRight.Controls.Add(this.panelClip);
this.panelRight.Dock = System.Windows.Forms.DockStyle.Right;
this.panelRight.Location = new System.Drawing.Point(996, 0);
2009-11-30 03:53:28 -05:00
this.panelRight.Name = "panelRight";
this.panelRight.Size = new System.Drawing.Size(128, 317);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
//
// 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);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(206, 20);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
//
// 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, 269);
2009-11-30 03:53:28 -05:00
this.panelCenter.TabIndex = 7;
//
// ctxCalendarGrid
//
this.ctxCalendarGrid.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.ctxCalGridAdd,
this.ctxCalGridEdit,
this.ctxCalGridDelete,
this.ctxCalGridCheckIn,
this.ctxCalGridUndoCheckin,
2009-11-30 03:53:28 -05:00
this.menuItem2,
this.ctxCalGridNoShow,
this.ctxCalGridNoShowUndo,
this.menuItem9,
this.ctxCalGridWalkin,
this.menuItem10,
this.ctxCalGridReprintApptSlip});
2009-11-30 03:53:28 -05:00
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);
//
// ctxCalGridEdit
//
this.ctxCalGridEdit.Index = 1;
this.ctxCalGridEdit.Text = "Edit Appointment";
this.ctxCalGridEdit.Click += new System.EventHandler(this.ctxCalGridEdit_Click);
//
// ctxCalGridDelete
//
this.ctxCalGridDelete.Index = 2;
this.ctxCalGridDelete.Text = "Cancel Appointment";
this.ctxCalGridDelete.Click += new System.EventHandler(this.ctxCalGridDelete_Click);
//
// ctxCalGridCheckIn
//
this.ctxCalGridCheckIn.Index = 3;
this.ctxCalGridCheckIn.Text = "Check In Patient";
this.ctxCalGridCheckIn.Click += new System.EventHandler(this.ctxCalGridCheckIn_Click);
//
// ctxCalGridUndoCheckin
//
this.ctxCalGridUndoCheckin.Index = 4;
this.ctxCalGridUndoCheckin.Text = "&Undo Check In";
this.ctxCalGridUndoCheckin.Click += new System.EventHandler(this.ctxCalGridUndoCheckin_Click);
//
2009-11-30 03:53:28 -05:00
// menuItem2
//
this.menuItem2.Index = 5;
2009-11-30 03:53:28 -05:00
this.menuItem2.Text = "-";
//
// ctxCalGridNoShow
//
this.ctxCalGridNoShow.Index = 6;
2009-11-30 03:53:28 -05:00
this.ctxCalGridNoShow.Text = "Mark as No Show";
this.ctxCalGridNoShow.Click += new System.EventHandler(this.ctxCalGridNoShow_Click);
//
// ctxCalGridNoShowUndo
//
this.ctxCalGridNoShowUndo.Index = 7;
2009-11-30 03:53:28 -05:00
this.ctxCalGridNoShowUndo.Text = "Undo NoShow";
this.ctxCalGridNoShowUndo.Click += new System.EventHandler(this.ctxCalGridNoShowUndo_Click);
//
// menuItem9
//
this.menuItem9.Index = 8;
2009-11-30 03:53:28 -05:00
this.menuItem9.Text = "-";
//
// ctxCalGridWalkin
//
this.ctxCalGridWalkin.Index = 9;
2009-11-30 03:53:28 -05:00
this.ctxCalGridWalkin.Text = "Create Wal&k-In Appointment";
this.ctxCalGridWalkin.Click += new System.EventHandler(this.ctxCalGridWalkin_Click);
//
// menuItem10
//
this.menuItem10.Index = 10;
this.menuItem10.Text = "-";
//
// ctxCalGridReprintApptSlip
2010-07-04 01:25:13 -04:00
//
this.ctxCalGridReprintApptSlip.Index = 11;
this.ctxCalGridReprintApptSlip.Text = "&Reprint Appointment Slip";
this.ctxCalGridReprintApptSlip.Click += new System.EventHandler(this.ctxCalGridReprintApptSlip_Click);
2010-07-04 01:25:13 -04:00
//
2009-11-30 03:53:28 -05:00
// panelBottom
//
this.panelBottom.Controls.Add(this.statusBar1);
this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panelBottom.Location = new System.Drawing.Point(136, 293);
2009-11-30 03:53:28 -05:00
this.panelBottom.Name = "panelBottom";
this.panelBottom.Size = new System.Drawing.Size(857, 24);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
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, 293);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
this.splitter2.Name = "splitter2";
this.splitter2.Size = new System.Drawing.Size(3, 293);
2009-11-30 03:53:28 -05:00
this.splitter2.TabIndex = 10;
this.splitter2.TabStop = false;
//
// 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, 269);
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);
//
2009-11-30 03:53:28 -05:00
// CGView
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(1124, 317);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
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;
private BMXNetConnectInfo m_ConnectInfo = null;
public BMXNetConnectInfo.BMXNetEventDelegate BMXNetEvent;
#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
2009-11-30 03:53:28 -05:00
#region AppointmentMenu Handlers
private void mnuAppointment_Popup(object sender, System.EventArgs e)
{
bool bEnabled = (this.Document.Resources.Count > 0)? true : false ;
this.mnuFindAppt.Enabled = bEnabled;
//Toggle availability of make, edit, checkin and delete appointments
//based on whether a range is selected.
mnuNewAppointment.Enabled = AddAppointmentEnabled();
this.mnuWalkIn.Enabled = mnuNewAppointment.Enabled;
bool bEditAppointments = this.EditAppointmentEnabled();
mnuDeleteAppointment.Enabled = bEditAppointments;
mnuCheckIn.Enabled = bEditAppointments;
mnuEditAppointment.Enabled = bEditAppointments;
mnuNoShow.Enabled = bEditAppointments;
mnuNoShowUndo.Enabled = bEditAppointments;
}
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.PatientName);
}
}
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();
}
2009-11-30 03:53:28 -05:00
#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;
2009-11-30 03:53:28 -05:00
//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 = this.DocManager.ConnectInfo.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));
}
2009-11-30 03:53:28 -05:00
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 void ctxCalendarGrid_Popup(object sender, System.EventArgs e)
{
//Toggle availability of make, edit, checkin and delete appointments
//based on whether appropriate element is selected.
ctxCalGridAdd.Enabled = AddAppointmentEnabled();
bool bEditAppointments = (EditAppointmentEnabled() && (calendarGrid1.SelectedAppointment > 0)) ;
ctxCalGridDelete.Enabled = bEditAppointments;
ctxCalGridEdit.Enabled = bEditAppointments;
ctxCalGridCheckIn.Enabled = bEditAppointments;
ctxCalGridNoShow.Enabled = NoShowEnabled();
ctxCalGridNoShowUndo.Enabled = !NoShowEnabled() && calendarGrid1.SelectedAppointment > 0;
2009-11-30 03:53:28 -05:00
ctxCalGridWalkin.Enabled = ctxCalGridAdd.Enabled;
//smh new code
ctxCalGridReprintApptSlip.Enabled = bEditAppointments;
ctxCalGridUndoCheckin.Enabled = UndoCheckinEnabled();
//end new code
}
2009-11-30 03:53:28 -05:00
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);
}
//new code smh
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);
}
//end new code
2009-11-30 03:53:28 -05:00
#endregion ctxCalGridMenu Handlers
#region Methods
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()
{
if (this.calendarGrid1.SelectedRange.Cells.CellCount < 1)
return false;
bool bManager = this.DocManager.ScheduleManager;
if (bManager == true)
{
return (true);
}
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;
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 UndoCheckinEnabled()
{
if (calendarGrid1.SelectedAppointment < 1) return false;
CGAppointment appt = (CGAppointment)this.Appointments.AppointmentTable[calendarGrid1.SelectedAppointment];
return appt.CheckInTime.Ticks > 0;
}
2009-11-30 03:53:28 -05:00
/// <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)
2009-11-30 03:53:28 -05:00
{
System.Text.StringBuilder sbMsg = new System.Text.StringBuilder(100);
sbMsg.Append(dStart.ToShortTimeString() + " to " + dEnd.ToShortTimeString());
if (av != null && m_nSlots > 0)
2009-11-30 03:53:28 -05:00
{
sbMsg.Append(String.Format(" has {0} slot(s) available for {1}. ", m_nSlots.ToString(), av.AccessTypeName));
}
2009-11-30 03:53:28 -05:00
else
{
sbMsg.Append(": No appointment slots available. ");
2009-11-30 03:53:28 -05:00
}
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();
2009-11-30 03:53:28 -05:00
}
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 = DocManager.ConnectInfo.bmxNetLib.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);
2009-11-30 03:53:28 -05:00
}
}
catch (Exception ex)
{
MessageBox.Show("Unable to edit availability for " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling");
2009-11-30 03:53:28 -05:00
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>
2009-11-30 03:53:28 -05:00
private void OpenSelectedSchedule(ArrayList sSelectedTreeResourceArray, DateTime dDate)
{
//If resource already open, then navigate to its window
CGView v = this.DocManager.GetViewByResource(sSelectedTreeResourceArray);
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
}
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() == "")
2009-11-30 03:53:28 -05:00
{
nTest = 15; //15 minute default
2009-11-30 03:53:28 -05:00
}
else
2009-11-30 03:53:28 -05:00
{
nTest = (int) drv["TIMESCALE"];
2009-11-30 03:53:28 -05:00
}
nScale = (nTest < nScale)?nTest : nScale ;
}
2009-11-30 03:53:28 -05:00
cg.TimeScale = nScale;
2009-11-30 03:53:28 -05:00
cg.PositionGrid(7);
2009-11-30 03:53:28 -05:00
//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 = "USERNAME = '" + this.DocManager.ConnectInfo.UserName + "'";
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;
}
2009-11-30 03:53:28 -05:00
//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)
2009-11-30 03:53:28 -05:00
{
sResource = dr["RESOURCE_NAME"].ToString();
v.m_htOverbook[sResource] = true;
v.m_htModifySchedule[sResource] = true;
v.m_htChangeAppts[sResource] = true;
2009-11-30 03:53:28 -05:00
}
}
v.calendarGrid1.SetOverlapTable();
v.calendarGrid1.Refresh();
// Set cursor back and stop splash screen
this.Cursor = Cursors.Default;
StopSplash();
2009-11-30 03:53:28 -05:00
}
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);
2009-11-30 03:53:28 -05:00
}
catch (Exception ex)
{
MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling");
2009-11-30 03:53:28 -05:00
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);
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);
2009-11-30 03:53:28 -05:00
}
catch (Exception ex)
{
Debug.Write("CGView.AppointmentEdit Failed: " + ex.Message);
}
}
/// <summary>
/// Marks all selected appointments as No Show from this.calendarGrid1.SelectedAppointments
2009-11-30 03:53:28 -05:00
/// </summary>
/// <param name="bNoShow">True - Mark as noshow; False - undo noshow</param>
2009-11-30 03:53:28 -05:00
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
2009-11-30 03:53:28 -05:00
{
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
2009-11-30 03:53:28 -05:00
&&
(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))
2009-11-30 03:53:28 -05:00
{
}
else // otherwise, make or undo show
2009-11-30 03:53:28 -05:00
{
string sError = Document.AppointmentNoShow(a, bNoShow);
2009-11-30 03:53:28 -05:00
if (sError != "1")
throw new Exception(sError);
bMarked = true;
}
}
catch (Exception ex)
{
MessageBox.Show("Unable to mark appointment No Show: " + ex.Message, "Clinical Scheduling");
2009-11-30 03:53:28 -05:00
}
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
}
/// <summary>
/// Prints Auto Rebook Letters; does nothing else to DB!!!
/// </summary>
/// <param name="alRebookList">List of appointments</param>
2009-11-30 03:53:28 -05:00
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
2009-11-30 03:53:28 -05:00
string sClinicList = "";
foreach (string sRes in a)
{
sClinicList = sClinicList + sRes + "|";
}
DPatientLetter dpl = new DPatientLetter();
dpl.InitializeFormRebookLetters(this.DocManager, sClinicList, sApptIDList);
2009-11-30 03:53:28 -05:00
dpl.ShowDialog(this);
}
}
/// <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();
2009-11-30 03:53:28 -05:00
// 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 Un-checkin the appointment first before removing it.");
return;
}
}
2009-11-30 03:53:28 -05:00
DCancelAppt dCancel = new DCancelAppt();
dCancel.InitializePage(this.m_DocManager);
if (dCancel.ShowDialog(this) != DialogResult.OK)
{
calendarGrid1.CGToolTip.Active = true;
return;
}
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
calendarGrid1.CGToolTip.Active = true;
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
this.UpdateArrays(); //Redraw this calendar grid
2009-11-30 03:53:28 -05:00
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);
}
}
2009-11-30 03:53:28 -05:00
RaiseRPMSEvent("BSDX SCHEDULE", a.Resource);
}
catch (Exception ex)
{
MessageBox.Show("Unable to delete appointment. " + ex.Message, "Clinical Scheduling");
}
if (alRebookList.AppointmentCount > 0)
{
AutoRebookFromList(alRebookList);
}
}
}
2009-11-30 03:53:28 -05:00
private void AppointmentCheckIn()
{
int nApptID = this.calendarGrid1.SelectedAppointment;
Debug.Assert(nApptID != 0);
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
//smh
//CGAppointment a = (CGAppointment) this.Appointments.AppointmentTable[nApptID];
CGAppointment a = (CGAppointment)this.Document.Appointments.AppointmentTable[nApptID];
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
return;
}
DCheckIn dlgCheckin = new DCheckIn();
dlgCheckin.InitializePage(a);
2009-11-30 03:53:28 -05:00
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;
2009-11-30 03:53:28 -05:00
//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;
2009-11-30 03:53:28 -05:00
//Save to Database
this.Document.CheckInAppointment(nApptID, dtCheckIn);
}
//Get Provider (XXXXXXXX: NOT SAVED TO THE DATABASE RIGHT NOW)
a.Provider = dlgCheckin.Provider;
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
// Print Routing Slip if user checks that box...
if (dlgCheckin.PrintRouteSlip)
this.PrintRoutingSlip(a);
//redraw grid
2009-11-30 03:53:28 -05:00
this.calendarGrid1.Invalidate();
}
catch (Exception ex)
{
MessageBox.Show("Error checking in patient: " + ex.Message, "Clinical Scheduling");
2009-11-30 03:53:28 -05:00
}
}
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();
}
2009-11-30 03:53:28 -05:00
private void AppointmentAddWalkin()
{
try
{
2009-11-30 03:53:28 -05:00
//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);
2009-11-30 03:53:28 -05:00
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;
}
2009-11-30 03:53:28 -05:00
/*
* 8-10-05 Added overbook prompt for walkin
*/
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
//SMH: Takes too long to do.
//this.Document.RefreshDocument();
CGAvailability resultantAvail;
m_nSlots = m_Document.SlotsAvailable(dStart, dEnd, sResource, this.calendarGrid1.TimeScale, out resultantAvail);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
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();
2009-11-30 03:53:28 -05:00
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
};
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
//smh: Takes too long
//this.Document.RefreshDocument();
2009-11-30 03:53:28 -05:00
//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.
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
this.UpdateArrays();
RaiseRPMSEvent("BSDX SCHEDULE", appt.Resource);
2009-11-30 03:53:28 -05:00
}
catch (Exception ex)
{
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
string msg;
if (BMXNetLib.Piece(ex.Message, "~", 1) == "-10") // -10 means that BSDXAPI reported an error.
msg = BMXNetLib.Piece(ex.Message, "~", 4);
else
msg = ex.Message;
2009-11-30 03:53:28 -05:00
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
MessageBox.Show("VISTA says: \r\n" + msg, "Unable to Make Walk-in Appointment");
return;
2009-11-30 03:53:28 -05:00
}
}
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;
}
2009-11-30 03:53:28 -05:00
//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)
2009-11-30 03:53:28 -05:00
return;
}
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
//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);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
if (dAppt.ShowDialog(this) == DialogResult.Cancel)
{
return;
}
CGAppointment appt = dAppt.Appointment;
// old way of making an appointment
/*new CGAppointment();
2009-11-30 03:53:28 -05:00
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;
*/
2009-11-30 03:53:28 -05:00
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
//Call Document to add a new appointment. Document adds appointment to CGAppointments array.
2009-11-30 03:53:28 -05:00
this.Document.CreateAppointment(appt);
if (dAppt.PrintAppointmentSlip)
{
PrintAppointmentSlip(appt);
}
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
//Show the new set of appointments by calling UpdateArrays. Fetches Document's CGAppointments
this.UpdateArrays();
RaiseRPMSEvent("BSDX SCHEDULE", appt.Resource);
2009-11-30 03:53:28 -05:00
}
catch (Exception ex)
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
{
string msg;
if (BMXNetLib.Piece(ex.Message, "~", 1) == "-10") // -10 means that BSDXAPI reported an error.
msg = BMXNetLib.Piece(ex.Message, "~", 4);
else
msg = ex.Message;
MessageBox.Show("VISTA says: \r\n" + msg, "Unable to Make Appointment");
2009-11-30 03:53:28 -05:00
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, BMXNet.BMXNetEventArgs 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.BMXEvent == "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.BMXEvent == "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.BMXParam == 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>
2009-11-30 03:53:28 -05:00
public void OnUpdateSchedule()
{
try
{
m_Document.RefreshDocumentAsync(); //new
2009-11-30 03:53:28 -05:00
}
catch (Exception ex)
{
MessageBox.Show("Unable to refresh document " + ex.Message, "Clinical Scheduling");
2009-11-30 03:53:28 -05:00
}
}
/// <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
m_ConnectInfo.RaiseEvent(sEvent, sParams, false);
}
catch (Exception ex)
{
Debug.Write(ex.Message);
}
}
#endregion
/// <summary>
/// This is how you set how the grid will look
/// </summary>
2009-11-30 03:53:28 -05:00
public void UpdateArrays()
{
// Make sure that we are called synchronously
2009-11-30 03:53:28 -05:00
Debug.Assert(this.InvokeRequired == false,"CGView.UpdateArrays InvokeRequired");
2010-07-04 01:25:13 -04:00
// This is where you set how the grid will look
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
//Create Deep copy of Availability Array
ArrayList availArrayCopy = new ArrayList();
foreach (CGAvailability av in this.m_Document.AvailabilityArray)
availArrayCopy.Add(av);
2009-11-30 03:53:28 -05:00
try
{
//Tell the grid about Avails, Appts, and Resources.
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
this.calendarGrid1.AvailabilityArray = availArrayCopy;
//Appts are cloned b/c if we tie into the class directly, we shoot off errors when we manipulate it.
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
this.calendarGrid1.Appointments = (CGAppointments)this.m_Document.Appointments.Clone();
2009-11-30 03:53:28 -05:00
this.calendarGrid1.Resources = this.m_Document.Resources;
//Redraw the calendar grid
2010-07-04 01:25:13 -04:00
this.calendarGrid1.OnUpdateArrays(); // this draws the Calendar
2009-11-30 03:53:28 -05:00
this.lblResource.Text = this.m_Document.DocName;
this.calendarGrid1.Invalidate();
}
catch (Exception ex)
{
MessageBox.Show("Unable to update arrays " + ex.Message, "Clinical Scheduling");
2009-11-30 03:53:28 -05:00
}
}
private void SchedulingManagement()
{
try
{
bool bLock = DocManager.ConnectInfo.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 = DocManager.ConnectInfo.bmxNetLib.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");
2009-11-30 03:53:28 -05:00
}
}
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);
2009-11-30 03:53:28 -05:00
}
}
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;
2009-11-30 03:53:28 -05:00
ArrayList alResource = new ArrayList();
alResource.Add(av.ResourceList);
DateTime sDate = av.StartTime;
m_sDocName = av.ResourceList;
2009-11-30 03:53:28 -05:00
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)
2009-11-30 03:53:28 -05:00
{
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();
2009-11-30 03:53:28 -05:00
}
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();
2009-11-30 03:53:28 -05:00
}
private void mnu7Day_Click(object sender, System.EventArgs e)
{
this.calendarGrid1.Columns = 7;
this.Document.m_nColumnCount = 7; // MJL 1/17/2007
RequestRefreshGrid();
2009-11-30 03:53:28 -05:00
}
private void mnu10Minute_Click(object sender, System.EventArgs e)
{
CalendarGrid cg = this.calendarGrid1;
cg.TimeScale = 10;
cg.PositionGrid(7);
2009-11-30 03:53:28 -05:00
}
private void mnu15Minute_Click(object sender, System.EventArgs e)
{
CalendarGrid cg = this.calendarGrid1;
cg.TimeScale = 15;
cg.PositionGrid(7);
2009-11-30 03:53:28 -05:00
}
private void mnu20Minute_Click(object sender, System.EventArgs e)
{
CalendarGrid cg = this.calendarGrid1;
cg.TimeScale = 20;
cg.PositionGrid(7);
2009-11-30 03:53:28 -05:00
}
private void mnu30Minute_Click(object sender, System.EventArgs e)
{
CalendarGrid cg = this.calendarGrid1;
cg.TimeScale = 30;
cg.PositionGrid(7);
2009-11-30 03:53:28 -05:00
}
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);
}
2009-11-30 03:53:28 -05:00
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()
{
}
2009-11-30 03:53:28 -05:00
private void tvSchedules_AfterSelect(object sender, System.Windows.Forms.TreeViewEventArgs e)
{
2009-11-30 03:53:28 -05:00
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;
}
/// <summary>
/// Useless code now... Good place to test something.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2009-11-30 03:53:28 -05:00
private void mnuTest1_Click(object sender, System.EventArgs e)
{
ReaderWriterLock m_rwl = this.DocManager.ConnectInfo.bmxNetLib.BMXRWL;
try
{
m_rwl.AcquireWriterLock(50);
Debug.Write("\nTest Button 1 Acquired first lock\n");
m_rwl.AcquireWriterLock(50);
Debug.Write("Test Button 1 Acquired second lock\n");
this.DocManager.ViewRefresh();
Thread.Sleep(5000);
try
{
}
catch
{
}
finally
{
m_rwl.ReleaseWriterLock();
Debug.Write ("Test Button 1 released first lock.\n");
m_rwl.ReleaseWriterLock();
Debug.Write ("Test Button 1 released second lock.\n");
}
return;
}
catch (Exception ex)
{
Debug.Write("Test Button 1 exception: " + ex.Message + "\n");
}
}
private void CGView_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
try
{
m_ConnectInfo.BMXNetEvent -= m_bmxDelegate;
this.calendarGrid1.CloseGrid();
}
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);
2009-11-30 03:53:28 -05:00
}
/// <summary>
/// Fired during drag and drop, on the drop action.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2009-11-30 03:53:28 -05:00
private void calendarGrid1_CGAppointmentChanged(object sender, IndianHealthService.ClinicalScheduling.CGAppointmentChangedArgs e)
{
try
{
if (e.Appointment.CheckInTime.Ticks > 0)
{
MessageBox.Show("You cannot change the appointment time because the patient has already checked in.", "Clinical Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
2009-11-30 03:53:28 -05:00
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?
2009-11-30 03:53:28 -05:00
if (EditAppointmentEnabled(e.Resource) == false)
return;
//Can user edit original schedule?
2009-11-30 03:53:28 -05:00
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)
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
string sError = AppointmentDeleteOne(e.Appointment.AppointmentKey);
if (sError != "")
2009-11-30 03:53:28 -05:00
{
MessageBox.Show(sError);
return;
}
}
catch (Exception ex)
{
MessageBox.Show("Unable to change appointment " + ex.Message, "Clinical Scheduling");
//this.m_DocManager.UpdateViews();
2009-11-30 03:53:28 -05:00
return;
}
finally
{
this.UpdateArrays();
2009-11-30 03:53:28 -05:00
}
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);
2009-11-30 03:53:28 -05:00
}
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);
2009-11-30 03:53:28 -05:00
}
private void ImplementMsg()
{
MessageBox.Show("Clinical Scheduling", "TODO: Implement this function");
2009-11-30 03:53:28 -05:00
}
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 (m_ClipList.AppointmentTable.Contains((int) a.AppointmentKey))
{
return;
}
m_ClipList.AddAppointment(a);
lstClip.Items.Add(a);
}
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;
}
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
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");
2009-11-30 03:53:28 -05:00
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);
2009-11-30 03:53:28 -05:00
}
}
private void mnuPrintReminderLetters_Click(object sender, System.EventArgs e)
2009-11-30 03:53:28 -05:00
{
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);
2009-11-30 03:53:28 -05:00
dpl.ShowDialog(this);
}
catch(Exception ex)
{
MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
2009-11-30 03:53:28 -05:00
}
}
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
2009-11-30 03:53:28 -05:00
DPatientLetter dpl = new DPatientLetter();
dpl.InitializeFormRebookLetters(this.DocManager, ds.SelectedClinics, ds.BeginDate, ds.EndDate);
2009-11-30 03:53:28 -05:00
dpl.ShowDialog(this);
}
catch(Exception ex)
{
MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
2009-11-30 03:53:28 -05:00
}
}
private void mnuPrintPatientLetter_Click(object sender, System.EventArgs e)
{
ViewPatientAppointments();
2009-11-30 03:53:28 -05:00
}
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);
2009-11-30 03:53:28 -05:00
}
}
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);
2009-11-30 03:53:28 -05:00
dpl.ShowDialog(this);
}
catch(Exception ex)
{
MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
2009-11-30 03:53:28 -05:00
}
}
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();
}
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
/// <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();
}
2009-11-30 03:53:28 -05:00
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
/// <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();
}
2009-11-30 03:53:28 -05:00
New exe and dll calendarGrid: Minor documentation updates. CGAppointments: Object now supports Deep cloning CGDocument: 1. Major changes on how m_pAvArrays is handled. Now it is locked whenever it is updated or queried. Some refactoring to make sure there are no db calls during the locks so that the locks won't be expensive. 2. Removed ClearResources, an unused method. 3. Appointment aCopy walkin property is set to true if the appointment is a walkin. This makes sure that the grid draws it correctly between it is added to the appointment array and we fetch new data from the server. 4. Create appointment is not responsible anymore for requesting updates from the server. All requests to update data must be done through CGView, as it is the only party interested in displaying accurate data on the grid. Just send the create appt event to the server. 5. CheckInAppointment: Same thing. Now responsible for requesting updates from the server. Just send the checkin event to the server. CGDocumentManager: Removed tracing. Done in BMX Library only now. CGView: 1. CGAppointment fetched from Document, not from the copy maintained by the calendarGrid. 2. RefreshDocument calls before an appointment is made have been removed (need to find another way to make sure that the appointment has just not been booked). RefreshDocument & UpdateArrays are called async after appointments are made. 3. Appointment List passed to Calendar grid is now a copy, to prevent issues with concurrent access. 4. Message if a patient has apppointment at the same time vastly improved.
2011-01-26 06:01:39 -05:00
/// <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;
2009-11-30 03:53:28 -05:00
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();
}
}
2009-11-30 03:53:28 -05:00
private void mnuRefresh_Click(object sender, EventArgs e)
{
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);
}
2009-11-30 03:53:28 -05:00
}//End class
}