This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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>();
|
||||
|
||||
Reference in New Issue
Block a user