Scripts to transition database to new version.
Changed inventory and product entities to split Vat and Service Tax and IsScTaxable. Added MessageBox on startup to inform about Debug Mode. Updated ProductForm for the change. Work still needs to be done on Thermal Printing where the hack for VAT on Food and VAT on Liqour is still there. Now No Service Tax on Delivery Works as promised.
This commit is contained in:
@ -12,8 +12,10 @@ namespace Tanshu.Accounts.Entities
|
||||
[NotNull]
|
||||
public virtual ProductGroup ProductGroup { get; set; }
|
||||
[NotNull]
|
||||
public virtual Tax Tax { get; set; }
|
||||
public virtual Tax Vat { get; set; }
|
||||
public virtual Tax ServiceTax { get; set; }
|
||||
public virtual decimal ServiceCharge { get; set; }
|
||||
public virtual bool IsScTaxable { get; set; }
|
||||
public virtual decimal Price { get; set; }
|
||||
public virtual decimal FullPrice { get; set; }
|
||||
public virtual bool Discontinued { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user