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:
@ -19,11 +19,10 @@ namespace Tanshu.Accounts.Entities
|
||||
public virtual bool IsScTaxable { get; set; }
|
||||
public virtual decimal Price { get; set; }
|
||||
public virtual decimal FullPrice { get; set; }
|
||||
public virtual bool Discontinued { get; set; }
|
||||
public virtual bool IsActive { get; set; }
|
||||
public virtual bool IsNotAvailable { get; set; }
|
||||
public virtual int SortOrder { get; set; }
|
||||
[NotNull]
|
||||
public virtual int BaseCode { get; set; }
|
||||
[NotNull]
|
||||
public virtual decimal Quantity { get; set; }
|
||||
public virtual IList<Inventory> Inventories { get; set; }
|
||||
|
||||
@ -44,7 +43,8 @@ namespace Tanshu.Accounts.Entities
|
||||
Property(x => x.IsScTaxable, map => map.NotNullable(true));
|
||||
Property(x => x.Price, map => map.NotNullable(true));
|
||||
Property(x => x.FullPrice, map => map.NotNullable(true));
|
||||
Property(x => x.Discontinued, map => map.NotNullable(true));
|
||||
Property(x => x.IsActive, map => map.NotNullable(true));
|
||||
Property(x => x.IsNotAvailable, map => map.NotNullable(true));
|
||||
Property(x => x.SortOrder, map => map.NotNullable(true));
|
||||
Property(x => x.BaseCode, map => map.NotNullable(true));
|
||||
Property(x => x.Quantity, map => map.NotNullable(true));
|
||||
|
||||
Reference in New Issue
Block a user