2009-11-30 03:53:28 -05:00
|
|
|
using System;
|
|
|
|
using System.Windows.Forms;
|
|
|
|
using System.Data;
|
2010-05-21 21:03:45 -04:00
|
|
|
using System.Drawing.Printing;
|
|
|
|
using System.Drawing;
|
2009-11-30 03:53:28 -05:00
|
|
|
|
|
|
|
namespace IndianHealthService.ClinicalScheduling
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Summary description for DPatientLetter.
|
|
|
|
/// </summary>
|
2010-05-21 21:03:45 -04:00
|
|
|
public class DPatientLetter : System.Windows.Forms.PrintPreviewDialog
|
|
|
|
{
|
2009-11-30 03:53:28 -05:00
|
|
|
/// <summary>
|
|
|
|
/// Required designer variable.
|
|
|
|
/// </summary>
|
2010-05-21 21:03:45 -04:00
|
|
|
private System.ComponentModel.Container components = null;
|
2010-06-04 22:19:48 -04:00
|
|
|
private System.Drawing.Printing.PrintDocument printAppts;
|
|
|
|
private System.Drawing.Printing.PrintDocument printReminderLetters;
|
2009-11-30 03:53:28 -05:00
|
|
|
|
|
|
|
#region Fields
|
2010-05-21 21:03:45 -04:00
|
|
|
DateTime _dtBegin, _dtEnd; //global fields to use in passing to printing method
|
2010-06-04 22:19:48 -04:00
|
|
|
|
|
|
|
//stuff to track what got printed and where we are -- very ugly, I know
|
|
|
|
//but I don't know if there is a better way to do it.
|
2010-05-21 21:03:45 -04:00
|
|
|
int _currentResourcePrinting = 0;
|
|
|
|
int _currentApptPrinting = 0;
|
2010-06-04 22:19:48 -04:00
|
|
|
int _pageNumber = 0;
|
|
|
|
|
|
|
|
//dataset to load the results of queries into and set to print routines
|
|
|
|
dsPatientApptDisplay2 _dsApptDisplay;
|
|
|
|
private PrintDocument printCancelLetters;
|
|
|
|
dsRebookAppts _dsRebookAppts;
|
2009-11-30 03:53:28 -05:00
|
|
|
#endregion Fields
|
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
/// <summary>
|
|
|
|
/// Print Clinic Schedules
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="docManager">This docManger</param>
|
|
|
|
/// <param name="sClinicList">Clinics for which to print</param>
|
|
|
|
/// <param name="dtBegin">Beginning Date</param>
|
|
|
|
/// <param name="dtEnd">End Date</param>
|
|
|
|
public void InitializeFormClinicSchedule(CGDocumentManager docManager,
|
2009-11-30 03:53:28 -05:00
|
|
|
string sClinicList,
|
|
|
|
DateTime dtBegin,
|
|
|
|
DateTime dtEnd)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (sClinicList == "")
|
|
|
|
{
|
|
|
|
throw new Exception("At least one clinic must be selected.");
|
|
|
|
}
|
2010-05-21 21:03:45 -04:00
|
|
|
_dtBegin = dtBegin;
|
|
|
|
_dtEnd = dtEnd;
|
2009-11-30 03:53:28 -05:00
|
|
|
string sBegin = dtBegin.ToShortDateString();
|
|
|
|
string sEnd = dtEnd.ToShortDateString();
|
|
|
|
this.Text="Clinic Schedules";
|
|
|
|
|
|
|
|
string sSql = "BSDX CLINIC LETTERS^" + sClinicList + "^" + sBegin + "^" + sEnd;
|
2010-05-21 21:03:45 -04:00
|
|
|
string sSql2 = "BSDX RESOURCE LETTERS^" + sClinicList;
|
2009-11-30 03:53:28 -05:00
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
_dsApptDisplay = new dsPatientApptDisplay2();
|
|
|
|
_dsApptDisplay.BSDXResource.Merge(docManager.RPMSDataTable(sSql2, "Resources"));
|
|
|
|
_dsApptDisplay.PatientAppts.Merge(docManager.RPMSDataTable(sSql, "PatientAppts"));
|
|
|
|
|
|
|
|
this.PrintPreviewControl.Document = printAppts;
|
2010-05-21 21:03:45 -04:00
|
|
|
}
|
2009-11-30 03:53:28 -05:00
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
throw ex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void InitializeFormRebookLetters(CGDocumentManager docManager,
|
|
|
|
string sClinicList,
|
2010-06-04 22:19:48 -04:00
|
|
|
DateTime dtBegin,
|
|
|
|
DateTime dtEnd)
|
2009-11-30 03:53:28 -05:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (sClinicList == "")
|
|
|
|
{
|
|
|
|
throw new Exception("At least one clinic must be selected.");
|
|
|
|
}
|
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
string sBegin = dtBegin.ToString("M/d/yyyy@HH:mm");
|
|
|
|
string sEnd = dtEnd.ToString("M/d/yyyy@HH:mm");
|
|
|
|
|
|
|
|
//Call RPC to get list of appt ids that have been rebooked for these clinics on these dates
|
|
|
|
string sSql1 = "BSDX REBOOK CLINIC LIST^" + sClinicList + "^" + sBegin + "^" + sEnd;
|
|
|
|
DataTable dtLetters = docManager.RPMSDataTable(sSql1, "PatientAppts");
|
2009-11-30 03:53:28 -05:00
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
string sSql2 = "BSDX RESOURCE LETTERS^" + sClinicList;
|
|
|
|
DataTable dt = docManager.RPMSDataTable(sSql2, "Resources");
|
|
|
|
}
|
2009-11-30 03:53:28 -05:00
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
throw ex;
|
|
|
|
}
|
|
|
|
}
|
2010-06-04 22:19:48 -04:00
|
|
|
public void InitializeFormRebookLetters(CGDocumentManager docManager,
|
|
|
|
string sClinicList,
|
|
|
|
string sApptIDList)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (sClinicList == "")
|
|
|
|
{
|
|
|
|
throw new Exception("At least one clinic must be selected.");
|
|
|
|
}
|
|
|
|
|
|
|
|
string sSql = "BSDX REBOOK LIST^" + sApptIDList;
|
|
|
|
DataTable dtLetters = docManager.RPMSDataTable(sSql, "PatientAppts");
|
|
|
|
|
|
|
|
string sSql2 = "BSDX RESOURCE LETTERS^" + sClinicList;
|
|
|
|
DataTable dt = docManager.RPMSDataTable(sSql2, "Resources");
|
2009-11-30 03:53:28 -05:00
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
throw ex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Print Cancellation letters to mail to patients
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="docManager">This Docmanager</param>
|
|
|
|
/// <param name="sClinicList">| delemited clinic list (IEN's)</param>
|
|
|
|
/// <param name="dtBegin">Beginning Date</param>
|
|
|
|
/// <param name="dtEnd">Ending Date</param>
|
2009-11-30 03:53:28 -05:00
|
|
|
public void InitializeFormCancellationLetters(CGDocumentManager docManager,
|
|
|
|
string sClinicList,
|
2010-06-04 22:19:48 -04:00
|
|
|
DateTime dtBegin,
|
|
|
|
DateTime dtEnd)
|
|
|
|
{
|
2009-11-30 03:53:28 -05:00
|
|
|
try
|
|
|
|
{
|
|
|
|
if (sClinicList == "")
|
|
|
|
{
|
|
|
|
throw new Exception("At least one clinic must be selected.");
|
|
|
|
}
|
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
string sBegin = dtBegin.ToString("M/d/yyyy@HH:mm");
|
|
|
|
string sEnd = dtEnd.ToString("M/d/yyyy@HH:mm");
|
|
|
|
|
|
|
|
//Call RPC to get list of appt ids that have been cancelled for these clinics on these dates
|
|
|
|
string sSql1 = "BSDX CANCEL CLINIC LIST^" + sClinicList + "^" + sBegin + "^" + sEnd;
|
|
|
|
string sSql2 = "BSDX RESOURCE LETTERS^" + sClinicList;
|
|
|
|
|
|
|
|
_dsRebookAppts = new dsRebookAppts();
|
|
|
|
_dsRebookAppts.PatientAppts.Merge(docManager.RPMSDataTable(sSql1, "PatientAppts"));
|
|
|
|
_dsRebookAppts.BSDXResource.Merge(docManager.RPMSDataTable(sSql2, "Resources"));
|
|
|
|
|
|
|
|
PrintPreviewControl.Document = printCancelLetters;
|
|
|
|
|
2009-11-30 03:53:28 -05:00
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
throw ex;
|
|
|
|
}
|
|
|
|
}
|
2010-06-04 22:19:48 -04:00
|
|
|
/// <summary>
|
|
|
|
/// Print Reminder Letters to give or mail to patients
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="docManager">This docManger</param>
|
|
|
|
/// <param name="sClinicList">Clinics for which to print</param>
|
|
|
|
/// <param name="dtBegin">Beginning Date</param>
|
|
|
|
/// <param name="dtEnd">End Date</param>
|
|
|
|
public void InitializeFormPatientReminderLetters(CGDocumentManager docManager,
|
2009-11-30 03:53:28 -05:00
|
|
|
string sClinicList,
|
|
|
|
DateTime dtBegin,
|
|
|
|
DateTime dtEnd)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (sClinicList == "")
|
|
|
|
{
|
|
|
|
throw new Exception("At least one clinic must be selected.");
|
|
|
|
}
|
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
_dtBegin = dtBegin;
|
|
|
|
_dtEnd = dtEnd;
|
|
|
|
string sBegin = dtBegin.ToShortDateString();
|
|
|
|
string sEnd = dtEnd.ToShortDateString();
|
|
|
|
this.Text = "Clinic Schedules";
|
2009-11-30 03:53:28 -05:00
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
string sSql = "BSDX CLINIC LETTERS^" + sClinicList + "^" + sBegin + "^" + sEnd;
|
|
|
|
string sSql2 = "BSDX RESOURCE LETTERS^" + sClinicList;
|
|
|
|
|
|
|
|
_dsApptDisplay = new dsPatientApptDisplay2();
|
|
|
|
_dsApptDisplay.BSDXResource.Merge(docManager.RPMSDataTable(sSql2, "Resources"));
|
|
|
|
_dsApptDisplay.PatientAppts.Merge(docManager.RPMSDataTable(sSql, "PatientAppts"));
|
|
|
|
|
|
|
|
this.PrintPreviewControl.Document = printReminderLetters;
|
2009-11-30 03:53:28 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
throw ex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
public DPatientLetter() : base()
|
2009-11-30 03:53:28 -05:00
|
|
|
{
|
|
|
|
//
|
|
|
|
// Required for Windows Form Designer support
|
|
|
|
//
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
//
|
|
|
|
// TODO: Add any constructor code after InitializeComponent call
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Clean up any resources being used.
|
|
|
|
/// </summary>
|
|
|
|
protected override void Dispose( bool disposing )
|
|
|
|
{
|
|
|
|
if( disposing )
|
|
|
|
{
|
|
|
|
if(components != null)
|
|
|
|
{
|
|
|
|
components.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
base.Dispose( disposing );
|
|
|
|
}
|
|
|
|
|
|
|
|
#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()
|
|
|
|
{
|
2010-06-04 22:19:48 -04:00
|
|
|
this.printAppts = new System.Drawing.Printing.PrintDocument();
|
|
|
|
this.printReminderLetters = new System.Drawing.Printing.PrintDocument();
|
|
|
|
this.printCancelLetters = new System.Drawing.Printing.PrintDocument();
|
2010-05-21 21:03:45 -04:00
|
|
|
this.SuspendLayout();
|
|
|
|
//
|
2010-06-04 22:19:48 -04:00
|
|
|
// printAppts
|
|
|
|
//
|
|
|
|
this.printAppts.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printAppts_PrintPage);
|
|
|
|
//
|
|
|
|
// printReminderLetters
|
|
|
|
//
|
|
|
|
this.printReminderLetters.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printReminderLetters_PrintPage);
|
2010-05-21 21:03:45 -04:00
|
|
|
//
|
2010-06-04 22:19:48 -04:00
|
|
|
// printCancelLetters
|
|
|
|
//
|
|
|
|
this.printCancelLetters.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printCancelLetters_PrintPage);
|
2010-05-21 21:03:45 -04:00
|
|
|
//
|
|
|
|
// DPatientLetter
|
|
|
|
//
|
|
|
|
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
|
|
|
|
this.ClientSize = new System.Drawing.Size(648, 398);
|
|
|
|
this.Name = "DPatientLetter";
|
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
|
this.Text = "Patient Letter";
|
|
|
|
this.ResumeLayout(false);
|
2009-11-30 03:53:28 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
#endregion
|
2010-05-21 21:03:45 -04:00
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
private void printAppts_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
|
2010-05-21 21:03:45 -04:00
|
|
|
{
|
2010-06-04 22:19:48 -04:00
|
|
|
//Each time we enter here, we start off with a new page number - we start off with zero
|
|
|
|
_pageNumber++; //becomes one first time through
|
|
|
|
|
2010-05-21 21:03:45 -04:00
|
|
|
// _currentResourcePrinting starts with zero. There will be at least this one.
|
2010-06-04 22:19:48 -04:00
|
|
|
ClinicalScheduling.Printing.PrintAppointments(_dsApptDisplay, e, _dtBegin, _dtEnd,
|
|
|
|
_currentResourcePrinting, ref _currentApptPrinting, _pageNumber);
|
2010-05-21 21:03:45 -04:00
|
|
|
|
|
|
|
//If the printing routine says it needs more pages to print the appointments,
|
|
|
|
//return here and have it print again.
|
|
|
|
if (e.HasMorePages == true) return;
|
|
|
|
|
|
|
|
// if there are more resouces to print, increment. Setting HasMorePages to true
|
|
|
|
// calls this routine again, so printing will happen with the incremented _currentResourcePrinting
|
2010-06-04 22:19:48 -04:00
|
|
|
if (_currentResourcePrinting < _dsApptDisplay.BSDXResource.Rows.Count - 1)
|
2010-05-21 21:03:45 -04:00
|
|
|
{
|
|
|
|
_currentResourcePrinting++;
|
2010-06-04 22:19:48 -04:00
|
|
|
//reset _currentApptPrinting
|
|
|
|
_currentApptPrinting = 0;
|
2010-05-21 21:03:45 -04:00
|
|
|
e.HasMorePages = true;
|
2010-06-04 22:19:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void printReminderLetters_PrintPage(object sender, PrintPageEventArgs e)
|
|
|
|
{
|
|
|
|
// no patients
|
|
|
|
if (_dsApptDisplay.PatientAppts.Count == 0)
|
|
|
|
{
|
|
|
|
ClinicalScheduling.Printing.PrintMessage("No Appointments found", e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// if there are patients
|
|
|
|
else if (_currentApptPrinting < _dsApptDisplay.PatientAppts.Count)
|
|
|
|
{
|
|
|
|
dsPatientApptDisplay2.BSDXResourceRow c = (dsPatientApptDisplay2.BSDXResourceRow)
|
|
|
|
_dsApptDisplay.PatientAppts[_currentApptPrinting].GetParentRow(_dsApptDisplay.Relations[0]);
|
|
|
|
ClinicalScheduling.Printing.PrintReminderLetter(_dsApptDisplay.PatientAppts[_currentApptPrinting], e, c.LETTER_TEXT, "Reminder Letter");
|
|
|
|
_currentApptPrinting++;
|
|
|
|
if (_currentApptPrinting < _dsApptDisplay.PatientAppts.Count)
|
|
|
|
e.HasMorePages = true;
|
2010-05-21 21:03:45 -04:00
|
|
|
}
|
|
|
|
|
2010-06-04 22:19:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private void printCancelLetters_PrintPage(object sender, PrintPageEventArgs e)
|
|
|
|
{
|
|
|
|
// no patients
|
|
|
|
if (_dsRebookAppts.PatientAppts.Count == 0)
|
|
|
|
{
|
|
|
|
ClinicalScheduling.Printing.PrintMessage("No Appointments found", e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// if there are patients
|
|
|
|
else if (_currentApptPrinting < _dsRebookAppts.PatientAppts.Count)
|
|
|
|
{
|
|
|
|
dsRebookAppts.BSDXResourceRow c = (dsRebookAppts.BSDXResourceRow)
|
|
|
|
_dsRebookAppts.PatientAppts[_currentApptPrinting].GetParentRow(_dsRebookAppts.Relations[0]);
|
|
|
|
ClinicalScheduling.Printing.PrintCancelLetter(_dsRebookAppts.PatientAppts[_currentApptPrinting], e, c.CLINIC_CANCELLATION_LETTER, "Cancellation Letter");
|
|
|
|
_currentApptPrinting++;
|
|
|
|
if (_currentApptPrinting < _dsRebookAppts.PatientAppts.Count)
|
|
|
|
e.HasMorePages = true;
|
|
|
|
}
|
|
|
|
|
2010-05-21 21:03:45 -04:00
|
|
|
}
|
2009-11-30 03:53:28 -05:00
|
|
|
}
|
|
|
|
}
|