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:
@ -8,17 +8,17 @@ using System.Collections.Generic;
|
||||
|
||||
namespace Tanshu.Accounts.PointOfSale
|
||||
{
|
||||
public partial class CashierCheckoutForm : Form
|
||||
public partial class CheckoutForm : Form
|
||||
{
|
||||
CheckoutBI _coProxy;
|
||||
bool _loading;
|
||||
public CashierCheckoutForm()
|
||||
public CheckoutForm()
|
||||
{
|
||||
_loading = true;
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void CashierCheckoutForm_Load(object sender, EventArgs e)
|
||||
private void CheckoutForm_Load(object sender, EventArgs e)
|
||||
{
|
||||
dtpStart.Format = DateTimePickerFormat.Custom;
|
||||
dtpStart.CustomFormat = "dd-MMM-yyyy";
|
||||
|
||||
Reference in New Issue
Block a user