2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.DAOFactory
|
|
|
|
|
{
|
|
|
|
|
public interface ISaleVoucherMixDAO : IDisposable
|
|
|
|
|
{
|
|
|
|
|
SalesBillItemBO GetDefaultSaleBillItem(Guid productID);
|
|
|
|
|
decimal GetProductDiscountLimit(Guid productID);
|
|
|
|
|
bool IsBillPrinted(Guid voucherID);
|
|
|
|
|
|
2011-12-05 09:23:02 +00:00
|
|
|
|
List<PendingBillsBO> GetPendingBills(PendingType list, int floor);
|
|
|
|
|
Nullable<Guid> GetPendingVoucherID(string tableID, int floor);
|
2010-03-02 17:56:21 +00:00
|
|
|
|
List<InventoryBO> SaleInventory(Dictionary<BillItemKey, SalesBillItemBO>.ValueCollection list, Guid? voucherID);
|
|
|
|
|
|
2011-12-05 09:23:02 +00:00
|
|
|
|
void DeclareBillsPaid(Guid userID, List<Guid> billList, PaidStatus paidStatus);
|
2010-03-02 17:56:21 +00:00
|
|
|
|
|
2011-12-05 09:23:02 +00:00
|
|
|
|
decimal Amount(Guid voucherID);
|
2010-03-02 17:56:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|