Added FullPrice column to display Happy Hour Pricing.
Added Void or Reprint Report. Changed Product.SalePrice -> Price Changed Inventory.Rate -> Price
This commit is contained in:
@ -60,7 +60,7 @@ namespace Tanshu.Accounts.Helpers
|
||||
{
|
||||
var item = list[i];
|
||||
var control = GetButton(string.Format("p{0}", i), item.Units == string.Empty ? item.Name : string.Format("{0} ({1})", item.Name, item.Units), size.X, size.Y, item, bcDelegate);
|
||||
if (item.SalePrice == 0)
|
||||
if (item.Price == 0)
|
||||
control.BackColor = Color.Yellow;
|
||||
panel.Controls.Add(control);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user