case 4025 replaced partnumber with partname and changed partname to partdescription

This commit is contained in:
2021-11-22 20:30:03 +00:00
parent 7b3b547072
commit 0265efbc26
45 changed files with 336 additions and 327 deletions

View File

@@ -9,22 +9,23 @@ namespace AyaNova.Models
{
//NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal,
//otherwise the server will call it an invalid record if the field isn't sent from client
//about to make major changes commit trigger here
//about to make major changes commit trigger here
public class Part : ICoreBizObjectModel
{
public long Id { get; set; }
public uint Concurrency { get; set; }
[Required]
public string Name { get; set; }//was partnumber in v7
public string Name { get; set; }
[Required]
public bool Active { get; set; }
public string Description { get; set; }//was "name" in v7
public string Notes { get; set; }
public string Wiki { get; set; }
public string CustomFields { get; set; }
public List<string> Tags { get; set; }
[Required]
public string PartNumber { get; set; }
public long? ManufacturerId { get; set; }
[NotMapped]
public string ManufacturerViz { get; set; }