Open Bill by BillID

Fixed discount bill in Checkout
Fixed Management module (maybe)
This commit is contained in:
unknown
2012-04-07 01:37:58 +05:30
parent e2db77ea70
commit ca7a198616
11 changed files with 275 additions and 184 deletions

View File

@ -7,7 +7,7 @@ namespace Tanshu.Accounts.DAOFactory
public interface IManagementDAO : IDisposable
{
decimal GetBalance(decimal? tax);
List<Guid> GetUpdateBillList(decimal tax, bool voided, bool paid, bool creditCard);
List<Guid> GetUpdateBillList(decimal tax);
decimal Update(Guid voucherID, decimal tax);
List<PendingBillsBO> GetPaidBills();

View File

@ -11,5 +11,6 @@ namespace Tanshu.Accounts.DAOFactory
void SetAlarm(Guid voucherID, DateTime? alarmTime);
void VoidBill(Guid voucherID, string reason);
SaleVoucherBO GetVoucherSale(Guid voucherID);
SaleVoucherBO GetVoucherSale(string billID);
}
}