Breaking Change: Changed Kot/Voucher Table Name to Guid Foreign key
Breaking Change: Renamed Discontinued to IsActive and added NA field to products. Cleanup: Removed not used attributes Change: RoleConstants changed to simple string Feature: Table Create/Edit/Reorder and Modifier Create/Edit Form Feature: Bills now show the Tax name from the database and not a hack
This commit is contained in:
@ -1,31 +0,0 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Tanshu.Accounts.Contracts
|
||||
{
|
||||
public enum PendingType
|
||||
{
|
||||
Today = 0,
|
||||
Week = 1,
|
||||
All = 2,
|
||||
Important = 4,
|
||||
Alarms = 8
|
||||
}
|
||||
|
||||
public class PendingBills
|
||||
{
|
||||
public virtual Guid voucherID { get; set; }
|
||||
public virtual string BillNo { get; set; }
|
||||
public virtual string Kot { get; set; }
|
||||
public virtual string TableID { get; set; }
|
||||
public virtual decimal Amount { get; set; }
|
||||
public virtual bool Important { get; set; }
|
||||
public virtual bool Alarm { get; set; }
|
||||
public virtual DateTime BookingTime { get; set; }
|
||||
public virtual DateTime LastEdited { get; set; }
|
||||
public virtual string Waiter { get; set; }
|
||||
public virtual string Cashier { get; set; }
|
||||
public virtual bool Printed { get; set; }
|
||||
public virtual Nullable<DateTime> AlarmTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user