Added ST Number to bill.
Fixed error were unprinted bill was not removed from table when voided.
This commit is contained in:
12
Tanshu.Accounts.PointOfSale/Controllers/BillDict.cs
Normal file
12
Tanshu.Accounts.PointOfSale/Controllers/BillDict.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using Tanshu.Accounts.Contracts;
|
||||
using Tanshu.Common;
|
||||
|
||||
namespace Tanshu.Accounts.PointOfSale
|
||||
{
|
||||
public class BillDict : OrderedDictionary<BillItemKey, BillItemValue>
|
||||
{
|
||||
public delegate void ItemChangedHandler();
|
||||
public event ItemChangedHandler ItemChanged;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user