Feature: Added a Tax Management form and a beer consumption report.
Chore: Fixed some Form_Load function names as they were copied from old forms and were not neat. Feature: Management BI Improved and should be pretty much solid by now.
This commit is contained in:
@ -289,7 +289,7 @@
|
||||
this.Name = "ProductForm";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Products";
|
||||
this.Load += new System.EventHandler(this.Products_Load);
|
||||
this.Load += new System.EventHandler(this.ProductForm_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.bsProductGroups)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bsServiceTax)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bsVat)).EndInit();
|
||||
|
||||
@ -15,7 +15,7 @@ namespace Tanshu.Accounts.PointOfSale
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void Products_Load(object sender, EventArgs e)
|
||||
private void ProductForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
FillCombos();
|
||||
using (var bis = new SettingBI())
|
||||
|
||||
@ -252,7 +252,7 @@
|
||||
this.Name = "ProductListForm";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Products";
|
||||
this.Load += new System.EventHandler(this.ProductGroupListForm_Load);
|
||||
this.Load += new System.EventHandler(this.ProductListForm_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.dgvProducts)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bsList)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
@ -24,7 +24,7 @@ namespace Tanshu.Accounts.PointOfSale
|
||||
bsList.DataSource = _list;
|
||||
}
|
||||
|
||||
private void ProductGroupListForm_Load(object sender, EventArgs e)
|
||||
private void ProductListForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
ShowGrid();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user