-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrmCancelDetails.cs
61 lines (52 loc) · 1.72 KB
/
frmCancelDetails.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.Windows.Forms;
namespace POS_System
{
public partial class frmCancelDetails : Form
{
frmSoldItems frmSoldItemsRef;
public frmCancelDetails(frmSoldItems frm)
{
InitializeComponent();
frmSoldItemsRef = frm;
}
private void pictureBox1_Click(object sender, EventArgs e)
{
this.Dispose();
}
private void cboAction_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = true;
}
private void btnSave_Click(object sender, EventArgs e)
{
try
{
if (ValidateFields())
{
frmVoid frm = new frmVoid(this);
frm.ShowDialog();
}
} catch(Exception ex)
{
MessageBox.Show(ex.Message, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}
public void RefreshList()
{
this.frmSoldItemsRef.LoadRecord();
}
private bool ValidateFields()
{
if (txtCancelQty.Text.Equals(string.Empty)) return false;
if (cboAction.Text.Equals(string.Empty)) return false;
if (txtReason.Text.Equals(string.Empty)) return false;
if ((int.Parse(txtQty.Text)) < (int.Parse(txtCancelQty.Text)) || (int.Parse(txtCancelQty.Text)) < 0)
{
MessageBox.Show("Invalid cancel quantity!".ToUpper(), "POS SYSTEM", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return false;
}
return true;
}
}
}