Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workflows guide grammar mistakes #11

Merged
merged 1 commit into from
Jun 14, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions administration/workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Workflows feature is available in [Advanced Pack](https://www.espocrm.com/extensions/advanced-pack/).

Workflows automate your business process an easy way. You can find it in the Administration panel. To create workflow rule you need to define:
Workflows automate your business process an easy way. You can find it in the Administration panel. To create a workflow rule you need to define:

* Target Entity - what entity type workflow is applied to;
* Trigger Type - when workflow will be triggered;
Expand All @@ -14,7 +14,7 @@ Workflows automate your business process an easy way. You can find it in the Adm

* **After record created** - Triggered only when a new record is created. If specified conditions are met then actions will be run.
* **After record saved** - Triggered when a new or existing record is saved. If specified conditions are met then actions will be run.
* **Scheduled** - Triggered according defined scheduling. You can setup it to run every day, every week, etc. Actions will be applied for records returned by specified list report. So you need also to create list report.
* **Scheduled** - Triggered according to the defined scheduling. You can setup it to run every day, every week, etc. Actions will be applied for records returned by specified list report. So you need also to create list report.
* **Sequential** - Supposed to be run by another workflow. Provides an ability to make a complex logic.


Expand All @@ -25,7 +25,7 @@ You can specify conditions that must be met to trigger the workflow.
Some available condition types:

* _Equals_ - whether the field equals to specific value or value of another field.
* _Was equals_ - whether the field was equal to specific value before the workflow was triggered.
* _Was equal_ - whether the field was equal to specific value before the workflow was triggered.
* _Changed_ - whether the field was changed before the workflow were triggered.

There are two ways how conditions can be specified: with UI confition builder or with formula. Formula provides an ability to define conditions of any complexity. To read about formula syntax follow [this article](formula.md). Note: There should not be delimiter `;` used in formula if you define condition.
Expand All @@ -35,23 +35,23 @@ There are two ways how conditions can be specified: with UI confition builder or

### Send Email

System will send email using a specified email template. A recipient’s email address can be taken from the target record, any related record, the current user, followers, team users or specified. Email can be sent immediately or delayed for a specific interval.
System will send an email using a specified email template. A recipient’s email address can be taken from the target record, any related record, the current user, followers, team users or specified. Email can be sent immediately or delayed for a specific interval.

### Create Entity

System will create the new record of any entity type. It's possible to define formula to calculate fields.

### Create Related Entity

System will create the record related to the target record. Target entity should be related with related entity by one-to-many or many-to-many link. It's possible to define formula to calculate fields.
System will create the record related to the target record. It's possible to define formula to calculate fields.

### Update Entity

Allows changing of specific fields of the target record. It's possible to define formula to calculate fields.

### Update Related Entity

Allows changing of specific fields of related record or records. It's possible to define formula to calculate fields.
Allows changing of specific fields of the related record or records. It's possible to define formula to calculate fields.

### Create Notification

Expand Down