VistA-Scheduling/cs/bsdx0200GUISourceCode/UCPatientAppts.cs

161 lines
6.6 KiB
C#

using System;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using IndianHealthService.BMXNet;
namespace IndianHealthService.ClinicalScheduling
{
/// <summary>
/// User Control that shows patient's appointments and allows printing
/// </summary>
public partial class UCPatientAppts : UserControl
{
DataTable dtAppt; // Main table
DataView dvAppt; // Manipulated view of table
int rowToPrint; // Used in printing
/// <summary>
/// Ctor - Creates control and populates data into datagridview
/// </summary>
/// <param name="docManager">Document Manager from main context</param>
/// <param name="nPatientID">Patient IEN</param>
public UCPatientAppts(CGDocumentManager docManager, int nPatientID)
{
InitializeComponent();
try
{
string sSql = "BSDX PATIENT APPT DISPLAY^" + nPatientID.ToString();
dtAppt = docManager.RPMSDataTable(sSql, "PatientAppts");
}
catch (Exception ex) { MessageBox.Show(ex.Message); }
SetPastFilter(false);
// dgAppts.DataSource = dvAppt;
}
/// <summary>
/// Sets the filter for the DataView on whether to show past appointments or not
/// Uses LINQ. Must use .Net 3.5 or above. Hope the LINQ is self-explanatory.
/// </summary>
/// <param name="ShowPastAppts">boolean - self explanatory</param>
void SetPastFilter(bool ShowPastAppts)
{
if (ShowPastAppts)
{
var uncancelledAppts = from appt in dtAppt.AsEnumerable()
orderby appt.Field<DateTime>("ApptDate")
select appt;
dvAppt = uncancelledAppts.AsDataView();
}
else
{
var uncancelledAppts = from appt in dtAppt.AsEnumerable()
where appt.Field<DateTime>("ApptDate") > DateTime.Today
orderby appt.Field<DateTime>("ApptDate")
select appt;
dvAppt = uncancelledAppts.AsDataView();
}
// It's strange that I have to bind it here; but look like dvAppt points to a new memory
// location when reassigned up above in the LINQ statement, so we have to rebind it.
dgAppts.DataSource = dvAppt;
}
private void chkPastAppts_CheckedChanged(object sender, EventArgs e)
{
if (chkPastAppts.Checked) SetPastFilter(true);
else SetPastFilter(false);
}
private void PrintPtAppts_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
Graphics g = e.Graphics;
Font Serif12Bold = new Font(FontFamily.GenericSerif, 12, FontStyle.Bold);
Font Serif12 = new Font(FontFamily.GenericSerif, 12);
Font Serif14 = new Font(FontFamily.GenericSerif, 14);
Rectangle startDrawRectangle = e.MarginBounds;
int widthPerColumn = e.MarginBounds.Width/dgAppts.Columns.Count;
int Serif12Height = (int)Serif12.GetHeight();
//Draw Header
StringFormat sf1 = new StringFormat();
sf1.Alignment = StringAlignment.Center;
g.DrawString("Appointment Listing", Serif14, Brushes.Black, startDrawRectangle, sf1);
startDrawRectangle.Y += (int)Serif14.GetHeight();
g.DrawString("Confidential Patient Information", Serif12, Brushes.Black, startDrawRectangle, sf1);
startDrawRectangle.Y += Serif12Height * 2;
//Patient Name + Sex + DOB
string identifier = "Patient Name: " + dtAppt.Rows[0]["Name"] + "\tSex: " + dtAppt.Rows[0]["Sex"]
+ "\tDate of Birth: " + dtAppt.Rows[0]["DOB"];
g.DrawString(identifier, Serif12, Brushes.Black, startDrawRectangle);
startDrawRectangle.Y += Serif12Height * 2;
foreach (DataGridViewColumn col in dgAppts.Columns)
{
g.DrawString(col.HeaderText, Serif12Bold, Brushes.Black, startDrawRectangle);
startDrawRectangle.X += widthPerColumn;
}
startDrawRectangle.Y += Serif12Height;
// rowToPrint initialized in print button handler. Helps us keep track of which row we
// are on, so that, just in case we need an extra page to print, we would know where
// we left off. Royal we of course.
for ( ; rowToPrint<dgAppts.Rows.Count; rowToPrint++)
{
// Post facto statement -- This is starting to look like Mumps...
// Start drawing a new page if you hit the bottom margin...
// Y incremented at the bottom of the for loop; but checked here
// because I need for statement stuff to happen first
if (startDrawRectangle.Y > e.MarginBounds.Bottom)
{
e.HasMorePages = true;
break;
}
startDrawRectangle.X = e.MarginBounds.X;
foreach (DataGridViewCell cell in dgAppts.Rows[rowToPrint].Cells)
{
g.DrawString(cell.Value.ToString(), Serif12, Brushes.Black, startDrawRectangle);
startDrawRectangle.X += widthPerColumn;
}
startDrawRectangle.Y += Serif12Height;
}
}
private void btnPrint_Click(object sender, EventArgs e)
{
//Fixes bug reported by EHS. Don't print if there are no appointments as this causes null ref
if (dtAppt.Rows.Count == 0)
{
MessageBox.Show("No Appointments to Print", "Nothing to Print");
return;
}
rowToPrint = 0; //reset row to print
DialogResult res = printDialog1.ShowDialog();
if (res == DialogResult.OK) this.printDialog1.Document.Print();
}
/// <summary>
/// Sets default page orientation to landscape.
/// </summary>
private void PrintPtAppts_QueryPageSettings(object sender, System.Drawing.Printing.QueryPageSettingsEventArgs e)
{
e.PageSettings.Landscape = true;
}
}
}