— This plugin works with the approval history of documents.
— Actions that are not accessible from the form, but used in the scheme; added to the scheme implicitly if this plugin is connected.
— Write future approval stages in the table WorkflowApprovalHistory.
This action is added automatically to activities using buildstep. Can be only added to activities whose State property is defined
— Update an approval stage in the table WorkflowApprovalHistory.
This action is added automatically to activities using buildstep. Can be only added to activities whose State property is defined
— Save the users associated with the current process in the table WorkflowInbox.
On adding the plugin, the event ProcessActivityChanged is subscribed. Action is triggered by this event.
— A delegate, your function should return the users with the listed ids. If there is no subscription, the value is taken from the system parameter processInstance.IdentityIds.
Action syntax:
List<string> GetUserNamesByIds(List<string> idS)
{
}
Used for WriteApprovalHistory.
— The name of the parameter to get the comment when updating a record. By default: Comment.
Used for UpdateApprovalHistory.