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

View File

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