Added ST Number to bill.

Fixed error were unprinted bill was not removed from table when voided.
This commit is contained in:
Tanshu
2012-12-01 15:19:33 +05:30
parent 2d1030abf6
commit 843d644154
8 changed files with 68 additions and 43 deletions

View 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;
}
}