This commit is contained in:
2020-12-17 19:50:07 +00:00
parent 6fcd7f5481
commit 0dda9346dd
2 changed files with 23 additions and 3 deletions

View File

@@ -194,12 +194,14 @@ Follow Up form and fields:
⦁ type of record
⦁ Linked To
⦁ name of record
⦁ Actions on single Follow Up
Actions on single Follow Up
⦁ Delete
⦁ Only available to Setup-full
⦁ Save
⦁ Cancel out of (disgards changes not yet saved)
⦁ Actions on multiple Follow Ups (in a list for the source, in a list for a record)
Actions on multiple Follow Ups (in a list for the source, in a list for a record)
⦁ Set selected to Inactive
⦁ Delete selected
⦁ Only available to Setup-full
@@ -274,6 +276,7 @@ Follow Up form and fields:
Records that have associated Follow Ups:
[ED: All CoreBizObject types meaning pretty much everything except Reviews of course]
⦁ Any record that has”views”
⦁ Client
⦁ HeadOffice

View File

@@ -23,9 +23,15 @@ namespace AyaNova.Models
public string CustomFields { get; set; }
public List<string> Tags { get; set; }
[Required]
public DateTime DueDate { get; set; }
public DateTime? CompletedDate { get; set; }
public long? UserId { get; set; }
public string CompletionNotes { get; set; }
[Required]
public long UserId { get; set; }
[Required]
public long AssignedByUserId { get; set; }
[Required]
public long ObjectId { get; set; }
[Required]
@@ -40,6 +46,17 @@ namespace AyaNova.Models
}
}
[NotMapped]
public bool Self
{
get
{
return (UserId == AssignedByUserId);
}
}
public Review()
{
Tags = new List<string>();