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:
tanshu
2014-10-16 16:41:55 +05:30
parent 69617949bd
commit da929ad036
76 changed files with 3472 additions and 1175 deletions

View File

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