Added Basecode to Product
Added Voucher Type During Printing Added Discount Report Fixed Void bill table not getting cleared error Added PAX to table Removed Itital Setup button in MainForm as it was not doing anything
This commit is contained in:
@ -20,7 +20,7 @@ namespace Tanshu.Accounts.PointOfSale
|
||||
var control = keyboardControl as UserControl;
|
||||
if (control != null)
|
||||
{
|
||||
control.Location = new System.Drawing.Point(6, 87);
|
||||
control.Location = new Point(6, 87);
|
||||
this.Controls.Add(control);
|
||||
this.Size = this.SizeFromClientSize(new Size(6 + control.Width + 6, 87 + control.Height + 6));
|
||||
}
|
||||
@ -41,7 +41,7 @@ namespace Tanshu.Accounts.PointOfSale
|
||||
private void btnLogin_Click(object sender, EventArgs e)
|
||||
{
|
||||
using (var bi = new UserBI())
|
||||
_user = bi.ValidateUser(txtUserName.Text.Trim(), Tanshu.Common.Md5.Hash(txtPassword.Text, "v2"));
|
||||
_user = bi.ValidateUser(txtUserName.Text.Trim(), Common.Md5.Hash(txtPassword.Text, "v2"));
|
||||
if (_user != null)
|
||||
this.Close();
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user