Fix: Products edit form vat and st were mixed in combobox.

Fix: Removed MinimumLevel and MaximumLevel from products.
This commit is contained in:
Amritanshu
2013-11-30 16:42:08 +05:30
parent c36240398f
commit 82f3b6b3e7
9 changed files with 166 additions and 370 deletions

View File

@ -14,8 +14,6 @@ namespace Tanshu.Accounts.Contracts
public decimal SalePrice { get; set; }
public Guid ServiceTaxID { get; set; }
public bool Discontinued { get; set; }
public decimal MinimumLevel { get; set; }
public decimal MaximumLevel { get; set; }
public int SortOrder { get; set; }
}
}

View File

@ -8,7 +8,9 @@ namespace Tanshu.Accounts.Contracts
public int Code { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
public string Category { get; set; }
public string ProuctGroup { get; set; }
public string Vat { get; set; }
public string ServiceTax { get; set; }
public Guid ProductID { get; set; }
}
}