Feature: Added Machine Locations so that setting the location in the config file is not needed.
Feature: Settings database table added to store string based settings.
It is right now used to store bill header and footer.
Hard Coded header/footer removed from file.
Feature: Tax Analysis form created to easily show the tax calculation.
Feature: Management form uses background workers. Dont' know if it is functional though.
Chore: Reorder Table form moved to masters from sales folder.
Refactor: ManagementBI and SalesAnalysisBI
This commit is contained in:
@ -177,7 +177,7 @@
|
||||
this.Name = "ModifierListForm";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "Product Types";
|
||||
this.Load += new System.EventHandler(this.ProductGroupListForm_Load);
|
||||
this.Load += new System.EventHandler(this.ModifierListForm_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.dgvProductGroups)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bsList)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
@ -29,7 +29,7 @@ namespace Tanshu.Accounts.PointOfSale
|
||||
bsList.DataSource = _list;
|
||||
}
|
||||
|
||||
private void ProductGroupListForm_Load(object sender, EventArgs e)
|
||||
private void ModifierListForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
using (var bi = new ModifierBI())
|
||||
_list = bi.List();
|
||||
|
||||
Reference in New Issue
Block a user