Inital branch of Bengali Development

This commit is contained in:
unknown
2011-12-05 14:53:02 +05:30
parent 232a62f8ca
commit e2db77ea70
57 changed files with 1721 additions and 1580 deletions

View File

@ -4,9 +4,10 @@ using Tanshu.Accounts.Contracts;
namespace Tanshu.Accounts.DAOFactory
{
public interface IAdvanceDAO :IDisposable
public interface IAdvanceDAO : IDisposable
{
void Insert(AdvanceBO advance);
AdvanceBO Get(Guid advanceID);
List<AdvanceDisplayBO> GetAdvances(DateTime fromDate, DateTime toDate, bool all);
void Adjust(Guid advanceID, Guid userID);

View File

@ -6,9 +6,7 @@ namespace Tanshu.Accounts.DAOFactory
{
public interface ICheckoutDAO :IDisposable
{
decimal GetPending(ref string info);
decimal GetCreditCard(ref string info);
decimal GetVoids(ref string info);
decimal GetDetail(ref string info, PaidStatus paidStatus, string infoLine);
decimal GetOpenings();
decimal GetReceipts();
decimal GetPayments();

View File

@ -10,13 +10,12 @@ namespace Tanshu.Accounts.DAOFactory
decimal GetProductDiscountLimit(Guid productID);
bool IsBillPrinted(Guid voucherID);
List<PendingBillsBO> GetPendingBills(PendingType list);
Nullable<Guid> GetPendingVoucherID(string tableID);
List<PendingBillsBO> GetPendingBills(PendingType list, int floor);
Nullable<Guid> GetPendingVoucherID(string tableID, int floor);
List<InventoryBO> SaleInventory(Dictionary<BillItemKey, SalesBillItemBO>.ValueCollection list, Guid? voucherID);
void GetComplexBillInformation(Guid voucherID, Guid complexProductID, ref decimal rate, ref decimal quantity, ref string name);
void DeclareBillsPaid(Guid userID, List<Guid> billList, bool creditCard);
void DeclareBillsPaid(Guid userID, List<Guid> billList, PaidStatus paidStatus);
void ToggleImportant(Guid voucherID);
decimal Amount(Guid voucherID);
}
}