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:
@ -9,6 +9,11 @@ namespace Tanshu.Accounts.Entities
|
||||
{
|
||||
public class Modifier
|
||||
{
|
||||
public Modifier()
|
||||
{
|
||||
ProductGroupModifiers = new List<ProductGroupModifier>();
|
||||
InventoryModifiers = new List<InventoryModifier>();
|
||||
}
|
||||
public virtual Guid ModifierID { get; set; }
|
||||
public virtual string Name { get; set; }
|
||||
public virtual bool ShowInBill { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user