Made Physician edit pull info

This commit is contained in:
EggMan20339 2024-02-19 10:47:16 -05:00
parent 6b0ffde53e
commit e972237938
6 changed files with 309 additions and 179 deletions

View File

@ -280,42 +280,84 @@ namespace Louis__Pharmacy_CNSA212_FP
{
try
{
// open connection
myConn.Open();
//clear any parameters
cmdString.Parameters.Clear();
// command
cmdString.Connection = myConn;
cmdString.CommandType = CommandType.StoredProcedure;
cmdString.CommandTimeout = 1500;
cmdString.CommandText = "PhysicianInfoSearch";
// Define input parameter
cmdString.Parameters.Add("@fname", SqlDbType.VarChar, 11).Value = fname;
cmdString.Parameters.Add("@lname", SqlDbType.VarChar, 8).Value = lname;
cmdString.Parameters.Add("@phyID", SqlDbType.VarChar, 8).Value = phyID;
// adapter and dataset
SqlDataAdapter aAdapter = new SqlDataAdapter();
aAdapter.SelectCommand = cmdString;
DataSet aDataSet = new DataSet();
try
{
// open connection
myConn.Open();
//clear any parameters
cmdString.Parameters.Clear();
// command
cmdString.Connection = myConn;
cmdString.CommandType = CommandType.StoredProcedure;
cmdString.CommandTimeout = 1500;
cmdString.CommandText = "PhysicianInfoSearch";
// Define input parameter
cmdString.Parameters.Add("@fname", SqlDbType.VarChar, 11).Value = fname;
cmdString.Parameters.Add("@lname", SqlDbType.VarChar, 8).Value = lname;
cmdString.Parameters.Add("@phyID", SqlDbType.VarChar, 8).Value = phyID;
// adapter and dataset
SqlDataAdapter aAdapter = new SqlDataAdapter();
aAdapter.SelectCommand = cmdString;
DataSet aDataSet = new DataSet();
// fill adapter
aAdapter.Fill(aDataSet);
// fill adapter
aAdapter.Fill(aDataSet);
// return dataSet
return aDataSet;
}
catch (Exception ex)
{
throw new ArgumentException(ex.Message);
}
finally
{
myConn.Close();
}
// return dataSet
return aDataSet;
}
catch (Exception ex)
{
throw new ArgumentException(ex.Message);
}
finally
{
myConn.Close();
}
}
public static DataSet PhysicianInfoSearch(string phyID)
{
try
{
// open connection
myConn.Open();
//clear any parameters
cmdString.Parameters.Clear();
// command
cmdString.Connection = myConn;
cmdString.CommandType = CommandType.StoredProcedure;
cmdString.CommandTimeout = 1500;
cmdString.CommandText = "PhysicianInfoSearch";
// Define input parameter
cmdString.Parameters.Add("@fname", SqlDbType.VarChar, 11).Value = "";
cmdString.Parameters.Add("@lname", SqlDbType.VarChar, 8).Value = "";
cmdString.Parameters.Add("@phyID", SqlDbType.VarChar, 8).Value = phyID;
// adapter and dataset
SqlDataAdapter aAdapter = new SqlDataAdapter();
aAdapter.SelectCommand = cmdString;
DataSet aDataSet = new DataSet();
// fill adapter
aAdapter.Fill(aDataSet);
// return dataSet
return aDataSet;
}
catch (Exception ex)
{
throw new ArgumentException(ex.Message);
}
finally
{
myConn.Close();
}
}
public static double GetNextPatientID()
{
try
@ -357,6 +399,47 @@ namespace Louis__Pharmacy_CNSA212_FP
myConn.Close();
}
}
public static double GetNextPhysicianID()
{
try
{
// open connection
myConn.Open();
//clear any parameters
cmdString.Parameters.Clear();
// command
cmdString.Connection = myConn;
cmdString.CommandType = CommandType.StoredProcedure;
cmdString.CommandTimeout = 1500;
cmdString.CommandText = "GetNextPhysicianID";
object result = cmdString.ExecuteScalar();
double value = 0;
try
{
value = Convert.ToDouble(result);
}
catch(Exception e)
{
MessageBox.Show("Error Getting next Patient ID","ERROR",MessageBoxButtons.OK);
}
// return dataSet
return value;
}
catch (Exception ex)
{
throw new ArgumentException(ex.Message);
}
finally
{
myConn.Close();
}
}
public static DataSet RefillSearch(DateTime date, string id)
{

View File

@ -140,7 +140,7 @@ namespace Louis__Pharmacy_CNSA212_FP
lblPatientFirst.AutoSize = true;
lblPatientFirst.Location = new System.Drawing.Point(20, 28);
lblPatientFirst.Name = "lblPatientFirst";
lblPatientFirst.Size = new System.Drawing.Size(70, 15);
lblPatientFirst.Size = new System.Drawing.Size(60, 13);
lblPatientFirst.TabIndex = 4;
lblPatientFirst.Text = "First Name:";
//
@ -149,7 +149,7 @@ namespace Louis__Pharmacy_CNSA212_FP
lblPatientLast.AutoSize = true;
lblPatientLast.Location = new System.Drawing.Point(20, 69);
lblPatientLast.Name = "lblPatientLast";
lblPatientLast.Size = new System.Drawing.Size(70, 15);
lblPatientLast.Size = new System.Drawing.Size(61, 13);
lblPatientLast.TabIndex = 5;
lblPatientLast.Text = "Last Name:";
//
@ -158,7 +158,7 @@ namespace Louis__Pharmacy_CNSA212_FP
lblPhysicianFirst.AutoSize = true;
lblPhysicianFirst.Location = new System.Drawing.Point(24, 26);
lblPhysicianFirst.Name = "lblPhysicianFirst";
lblPhysicianFirst.Size = new System.Drawing.Size(70, 15);
lblPhysicianFirst.Size = new System.Drawing.Size(60, 13);
lblPhysicianFirst.TabIndex = 4;
lblPhysicianFirst.Text = "First Name:";
//
@ -167,7 +167,7 @@ namespace Louis__Pharmacy_CNSA212_FP
lblPhysicianLast.AutoSize = true;
lblPhysicianLast.Location = new System.Drawing.Point(23, 70);
lblPhysicianLast.Name = "lblPhysicianLast";
lblPhysicianLast.Size = new System.Drawing.Size(70, 15);
lblPhysicianLast.Size = new System.Drawing.Size(61, 13);
lblPhysicianLast.TabIndex = 5;
lblPhysicianLast.Text = "Last Name:";
//
@ -230,7 +230,7 @@ namespace Louis__Pharmacy_CNSA212_FP
this.lblPatientID.AutoSize = true;
this.lblPatientID.Location = new System.Drawing.Point(23, 109);
this.lblPatientID.Name = "lblPatientID";
this.lblPatientID.Size = new System.Drawing.Size(63, 15);
this.lblPatientID.Size = new System.Drawing.Size(57, 13);
this.lblPatientID.TabIndex = 7;
this.lblPatientID.Text = "Patient ID:";
//
@ -420,26 +420,26 @@ namespace Louis__Pharmacy_CNSA212_FP
this.cmuPatient.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cmuPatient.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cmuPatientNew, this.cmuPatientEdit, this.cmuPatientDelete });
this.cmuPatient.Name = "contextMenuStrip1";
this.cmuPatient.Size = new System.Drawing.Size(123, 76);
this.cmuPatient.Size = new System.Drawing.Size(108, 70);
//
// cmuPatientNew
//
this.cmuPatientNew.Name = "cmuPatientNew";
this.cmuPatientNew.Size = new System.Drawing.Size(122, 24);
this.cmuPatientNew.Size = new System.Drawing.Size(107, 22);
this.cmuPatientNew.Text = "New";
this.cmuPatientNew.Click += new System.EventHandler(this.cmuPatientNew_Click);
//
// cmuPatientEdit
//
this.cmuPatientEdit.Name = "cmuPatientEdit";
this.cmuPatientEdit.Size = new System.Drawing.Size(122, 24);
this.cmuPatientEdit.Size = new System.Drawing.Size(107, 22);
this.cmuPatientEdit.Text = "Edit";
this.cmuPatientEdit.Click += new System.EventHandler(this.cmuPatientEdit_Click);
//
// cmuPatientDelete
//
this.cmuPatientDelete.Name = "cmuPatientDelete";
this.cmuPatientDelete.Size = new System.Drawing.Size(122, 24);
this.cmuPatientDelete.Size = new System.Drawing.Size(107, 22);
this.cmuPatientDelete.Text = "Delete";
this.cmuPatientDelete.Click += new System.EventHandler(this.cmuPatientDelete_Click);
//
@ -504,7 +504,7 @@ namespace Louis__Pharmacy_CNSA212_FP
this.lblPrescriptionPatID.AutoSize = true;
this.lblPrescriptionPatID.Location = new System.Drawing.Point(61, 74);
this.lblPrescriptionPatID.Name = "lblPrescriptionPatID";
this.lblPrescriptionPatID.Size = new System.Drawing.Size(63, 15);
this.lblPrescriptionPatID.Size = new System.Drawing.Size(57, 13);
this.lblPrescriptionPatID.TabIndex = 1;
this.lblPrescriptionPatID.Text = "Patient ID:";
//
@ -514,7 +514,7 @@ namespace Louis__Pharmacy_CNSA212_FP
this.lblRxNumber.Location = new System.Drawing.Point(61, 25);
this.lblRxNumber.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblRxNumber.Name = "lblRxNumber";
this.lblRxNumber.Size = new System.Drawing.Size(73, 15);
this.lblRxNumber.Size = new System.Drawing.Size(63, 13);
this.lblRxNumber.TabIndex = 0;
this.lblRxNumber.Text = "Rx Number:";
//
@ -592,24 +592,24 @@ namespace Louis__Pharmacy_CNSA212_FP
this.cmuRx.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cmuRx.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cmuRxNew, this.cmuRxEdit, this.cmuRxDelete });
this.cmuRx.Name = "cmuRx";
this.cmuRx.Size = new System.Drawing.Size(123, 76);
this.cmuRx.Size = new System.Drawing.Size(108, 70);
//
// cmuRxNew
//
this.cmuRxNew.Name = "cmuRxNew";
this.cmuRxNew.Size = new System.Drawing.Size(122, 24);
this.cmuRxNew.Size = new System.Drawing.Size(107, 22);
this.cmuRxNew.Text = "New";
//
// cmuRxEdit
//
this.cmuRxEdit.Name = "cmuRxEdit";
this.cmuRxEdit.Size = new System.Drawing.Size(122, 24);
this.cmuRxEdit.Size = new System.Drawing.Size(107, 22);
this.cmuRxEdit.Text = "Edit";
//
// cmuRxDelete
//
this.cmuRxDelete.Name = "cmuRxDelete";
this.cmuRxDelete.Size = new System.Drawing.Size(122, 24);
this.cmuRxDelete.Size = new System.Drawing.Size(107, 22);
this.cmuRxDelete.Text = "Delete";
//
// tbpPhysician
@ -662,7 +662,7 @@ namespace Louis__Pharmacy_CNSA212_FP
this.lblPhysicianID.AutoSize = true;
this.lblPhysicianID.Location = new System.Drawing.Point(24, 111);
this.lblPhysicianID.Name = "lblPhysicianID";
this.lblPhysicianID.Size = new System.Drawing.Size(77, 15);
this.lblPhysicianID.Size = new System.Drawing.Size(69, 13);
this.lblPhysicianID.TabIndex = 7;
this.lblPhysicianID.Text = "Physician ID:";
//
@ -701,6 +701,7 @@ namespace Louis__Pharmacy_CNSA212_FP
this.dgvPhysician.Name = "dgvPhysician";
this.dgvPhysician.ReadOnly = true;
this.dgvPhysician.RowHeadersWidth = 51;
this.dgvPhysician.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvPhysician.Size = new System.Drawing.Size(646, 216);
this.dgvPhysician.TabIndex = 0;
//
@ -811,26 +812,26 @@ namespace Louis__Pharmacy_CNSA212_FP
this.cmuPhysician.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cmuPhysician.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.cmuPhysicianNew, this.cmuPhysicianEdit, this.cmuPhysicianDelete });
this.cmuPhysician.Name = "cmuPhysician";
this.cmuPhysician.Size = new System.Drawing.Size(123, 76);
this.cmuPhysician.Size = new System.Drawing.Size(108, 70);
//
// cmuPhysicianNew
//
this.cmuPhysicianNew.Name = "cmuPhysicianNew";
this.cmuPhysicianNew.Size = new System.Drawing.Size(122, 24);
this.cmuPhysicianNew.Size = new System.Drawing.Size(107, 22);
this.cmuPhysicianNew.Text = "New";
this.cmuPhysicianNew.Click += new System.EventHandler(this.cmuPhysicianNew_Click);
//
// cmuPhysicianEdit
//
this.cmuPhysicianEdit.Name = "cmuPhysicianEdit";
this.cmuPhysicianEdit.Size = new System.Drawing.Size(122, 24);
this.cmuPhysicianEdit.Size = new System.Drawing.Size(107, 22);
this.cmuPhysicianEdit.Text = "Edit";
this.cmuPhysicianEdit.Click += new System.EventHandler(this.cmuPhysicianEdit_Click);
//
// cmuPhysicianDelete
//
this.cmuPhysicianDelete.Name = "cmuPhysicianDelete";
this.cmuPhysicianDelete.Size = new System.Drawing.Size(122, 24);
this.cmuPhysicianDelete.Size = new System.Drawing.Size(107, 22);
this.cmuPhysicianDelete.Text = "Delete";
//
// frmInfo

View File

@ -49,6 +49,7 @@ namespace Louis__Pharmacy_CNSA212_FP
if (e.KeyCode == Keys.Enter){
btnPatientSearch_Click(sender, e);
btnPhysicianSearch_Click(sender, e);
}
}
@ -389,11 +390,23 @@ namespace Louis__Pharmacy_CNSA212_FP
private void cmuPhysicianEdit_Click(object sender, EventArgs e)
{
frmPhysician physicianAdd = new frmPhysician(this, false);
physicianAdd.MdiParent = MdiParent;
physicianAdd.StartPosition = FormStartPosition.CenterScreen;
physicianAdd.Show();
physicianAdd.Focus();
if (dgvPhysician.Rows.Count > 0)
{
dgvPhysician.DataSource = ds.Tables[0];
DataGridViewRow row = new DataGridViewRow();
row = dgvPhysician.SelectedRows[0];
string phyID = "";
// phyID = (row.Cells[4].Value).ToString();
frmPhysician PhysicianAdd = new frmPhysician(this, false);
PhysicianAdd.MdiParent = MdiParent;
PhysicianAdd.StartPosition = FormStartPosition.CenterScreen;
PhysicianAdd.Show();
PhysicianAdd.Focus();
PhysicianAdd.FillPhysician(phyID);
}
}
}
}

View File

@ -94,190 +94,190 @@ namespace Louis__Pharmacy_CNSA212_FP
if (!isAdd)
{
try
{
lbs = int.Parse(txtWeight.Text);
try
{
Height_feet = int.Parse(txtHeightFt.Text);
lbs = int.Parse(txtWeight.Text);
try
{
Height_inches = int.Parse(txtHeightIn.Text);
Height_feet = int.Parse(txtHeightFt.Text);
try
{
DOB = DateTime.Parse(txtDOB.Text);
Height_inches = int.Parse(txtHeightIn.Text);
try
{
Gender = txtGender.Text;
DOB = DateTime.Parse(txtDOB.Text);
try
{
Zip = short.Parse(txtZip.Text);
Gender = txtGender.Text;
try
{
UsState = txtState.Text;
Zip = short.Parse(txtZip.Text);
try
{
PhoneNumber = txtPhone.Text;
UsState = txtState.Text;
try
{
if (Patient_id.Length > 8)
PhoneNumber = txtPhone.Text;
try
{
epLocal.SetError(txtPatientID, "Error");
throw new Exception();
}
else
{
while (Patient_id.Length < 8)
if (Patient_id.Length > 8)
{
Patient_id = "0" + Patient_id;
epLocal.SetError(txtPatientID, "Error");
throw new Exception();
}
else
{
while (Patient_id.Length < 8)
{
Patient_id = "0" + Patient_id;
}
}
}
if (FirstName.Length > 30)
{
epLocal.SetError(txtFname, "Error");
throw new Exception();
}
if (FirstName.Length > 30)
{
epLocal.SetError(txtFname, "Error");
throw new Exception();
}
if (LastName.Length > 30)
{
epLocal.SetError(txtLname, "Error");
throw new Exception();
}
if (LastName.Length > 30)
{
epLocal.SetError(txtLname, "Error");
throw new Exception();
}
if (MiddleIntials.Length > 1)
{
epLocal.SetError(txtMidInit, "Error");
throw new Exception();
}
else
{
MiddleIntials = MiddleIntials.ToUpper();
}
if (MiddleIntials.Length > 1)
{
epLocal.SetError(txtMidInit, "Error");
throw new Exception();
}
else
{
MiddleIntials = MiddleIntials.ToUpper();
}
if (Zip > 65535)
{
epLocal.SetError(txtZip, "Error");
throw new Exception();
}
if (Zip > 65535)
{
epLocal.SetError(txtZip, "Error");
throw new Exception();
}
if (City.Length > 30)
{
epLocal.SetError(txtCity, "Error");
throw new Exception();
}
if (City.Length > 30)
{
epLocal.SetError(txtCity, "Error");
throw new Exception();
}
if (UsState.Length > 2)
{
epLocal.SetError(txtState, "Error");
throw new Exception();
}
else
{
UsState = UsState.ToUpper();
}
if (UsState.Length > 2)
{
epLocal.SetError(txtState, "Error");
throw new Exception();
}
else
{
UsState = UsState.ToUpper();
}
if (lbs > 2147483647)
{
epLocal.SetError(txtWeight, "Error");
throw new Exception();
}
if (lbs > 2147483647)
{
epLocal.SetError(txtWeight, "Error");
throw new Exception();
}
if (Height_feet > 2147483647)
{
epLocal.SetError(txtHeightFt, "Error");
throw new Exception();
}
if (Height_feet > 2147483647)
{
epLocal.SetError(txtHeightFt, "Error");
throw new Exception();
}
if (Height_inches > 2147483647)
{
epLocal.SetError(txtHeightIn, "Error");
throw new Exception();
}
if (Height_inches > 2147483647)
{
epLocal.SetError(txtHeightIn, "Error");
throw new Exception();
}
if (PhoneNumber.Length > 14)
{
epLocal.SetError(txtPhone, "Error");
throw new Exception();
}
if (PhoneNumber.Length > 14)
{
epLocal.SetError(txtPhone, "Error");
throw new Exception();
}
if (Gender.Length > 1)
{
epLocal.SetError(txtGender, "Error");
throw new Exception();
}
else
{
Gender = Gender.ToUpper();
}
if (Gender.Length > 1)
{
epLocal.SetError(txtGender, "Error");
throw new Exception();
}
else
{
Gender = Gender.ToUpper();
}
PharmacyDataTier.UpdatePatient(
Patient_id,
FirstName,
LastName,
MiddleIntials,
lbs,
Height_feet,
Height_inches,
DOB,
Gender,
City,
Zip,
UsState,
PhoneNumber);
PharmacyDataTier.UpdatePatient(
Patient_id,
FirstName,
LastName,
MiddleIntials,
lbs,
Height_feet,
Height_inches,
DOB,
Gender,
City,
Zip,
UsState,
PhoneNumber);
SourceForm.txtPatientID.Text = Patient_id.ToString();
SourceForm.btnPatientSearch_Click(SourceForm, e);
SourceForm.txtPatientID.Text = Patient_id.ToString();
SourceForm.btnPatientSearch_Click(SourceForm, e);
Close();
Close();
}
catch (Exception exception)
{
epLocal.SetError(btnGO, "Error Creating Patient");
}
}
catch (Exception exception)
catch (Exception ex)
{
epLocal.SetError(btnGO, "Error Creating Patient");
epLocal.SetError(txtPhone, "Invalid Value");
}
}
catch (Exception ex)
{
epLocal.SetError(txtPhone, "Invalid Value");
epLocal.SetError(txtState, "Invalid Value");
}
}
catch (Exception ex)
{
epLocal.SetError(txtState, "Invalid Value");
epLocal.SetError(txtZip, "Invalid Value");
}
}
catch (Exception ex)
{
epLocal.SetError(txtZip, "Invalid Value");
epLocal.SetError(txtGender, "Invalid Value");
}
}
catch (Exception ex)
{
epLocal.SetError(txtGender, "Invalid Value");
epLocal.SetError(txtDOB, "Invalid Value");
}
}
catch (Exception ex)
{
epLocal.SetError(txtDOB, "Invalid Value");
epLocal.SetError(txtHeightIn, "Invalid Value");
}
}
catch (Exception ex)
{
epLocal.SetError(txtHeightIn, "Invalid Value");
epLocal.SetError(txtHeightFt, "Invalid Value");
}
}
catch (Exception ex)
{
epLocal.SetError(txtHeightFt, "Invalid Value");
epLocal.SetError(txtWeight, "Invalid Value");
}
}
catch (Exception ex)
{
epLocal.SetError(txtWeight, "Invalid Value");
}
}else if (isAdd)
{
try

View File

@ -294,6 +294,7 @@ namespace Louis__Pharmacy_CNSA212_FP
this.Controls.Add(this.lblDisPurpose);
this.Name = "frmPhysician";
this.Text = "frmPhysician";
this.Load += new System.EventHandler(this.frmPhysician_Load);
this.ResumeLayout(false);
this.PerformLayout();
}

View File

@ -1,5 +1,6 @@
using System;
using System.Windows.Forms;
using System.Data;
namespace Louis__Pharmacy_CNSA212_FP
{
@ -21,13 +22,13 @@ namespace Louis__Pharmacy_CNSA212_FP
if (isNew)
{
lblDisPurpose.Text = @"Add Physician";
btnGO.Text = @"Create";
lblDisPurpose.Text = "Add Physician";
btnGO.Text = "Create";
}
else
{
lblDisPurpose.Text = @"Edit Physician";
btnGO.Text = @"Update";
lblDisPurpose.Text = "Edit Physician";
btnGO.Text = "Update";
}
}
@ -41,5 +42,36 @@ namespace Louis__Pharmacy_CNSA212_FP
{
}
private void frmPhysician_Load(object sender, EventArgs e)
{
txtPhyID.Enabled = false;
if (isAdd)
{
var nextID = PharmacyDataTier.GetNextPhysicianID();
txtPhyID.Text = nextID.ToString();
}
}
public void FillPhysician(string phyID)
{
var ds = new DataSet();
var data = new PharmacyDataTier();
ds = PharmacyDataTier.PhysicianInfoSearch(phyID);
txtPhyID.Text = ds.Tables[0].Rows[0]["Physician_id"].ToString();
txtFirstName.Text = ds.Tables[0].Rows[0]["FirstName"].ToString();
txtLastName.Text = ds.Tables[0].Rows[0]["LastName"].ToString();
txtMiddleInit.Text = ds.Tables[0].Rows[0]["MiddleIntials"].ToString();
txtDOB.Text = ds.Tables[0].Rows[0]["DOB"].ToString();
txtGender.Text = ds.Tables[0].Rows[0]["Gender"].ToString();
txtCity.Text = ds.Tables[0].Rows[0]["City"].ToString();
txtZip.Text = ds.Tables[0].Rows[0]["Zip"].ToString();
txtState.Text = ds.Tables[0].Rows[0]["UsState"].ToString();
txtPhone.Text = ds.Tables[0].Rows[0]["PhoneNumber"].ToString();
txtSpeciality.Text = ds.Tables[0].Rows[0]["Specialty"].ToString();
}
}
}