π’Data input via Forms, using Roles to partition user activities
For a demo example of following steps, here is the policy timestamp: 1675164605.096601003
Objective
Construct a policy in which one group of users can individually fill in and submit documents for approval and view their own documentsβ status, and another group of users can view and take approve/reject actions on any of these user documents.
Approach
Assign βUserβ and βApproverβ roles to users to partition them into groups where one can fill in forms and send resulting documents to approvals, and the other group would βapprove/rejectβ these documents.
Create schema and necessary policy elements to enable βform-filling in and submissionβ and βapprovalβ workflows.
Preparation
Create 3 containers which will be responsible for choosing a role, submission and approval documents correspondingly.
Assign these containers to appropriate Permissions: βno_roleβ, βUserβ, or βApproverβ, and add the first containers into the RoleSelectionBlock.
See detailed information about the Roles in Example 1.

Main section
Creating the document
1. Create a schema for Policy data input
1.1 Go to βSchemasβ tab and create a new schema

1.2 To make sure there is some demo/test data content in this schema create 3 fields:
Organization name of type βStringβ
Start Date of type βDateβ
End Date of type βDateβ
Amount of type βNumber to represent the amount of CO2 emissions for the time period (between the βStart Dateβ and βEnd Dateβ)

2. To perform data input into the Policy the βrequestVcDocumentBlockβ will be used
2.1 Since the scope of this example includes input of multiple documents the Policy requires logic similar to what is known as βloopβ or βiterationβ.
For this βinterfaceStepBlockβ is required with βCyclicβ option enabled. This will allow to return to the initial state after the document was saved.

2.2 Add βrequestVcDocumentBlockβ into the βcyclic_containerβ

2.3 Then select the previously created Schema
2.4 Select βNew UUIDβ to configure automatic generation of unique IDs for each document
2.5 By default βrequestVcDocumentBlockβ is displayed as a Form covering the entire page. To prevent this choose βDIALOGβ value for the field βTypeβ.

3. Save documents in the Database.
3.1 Add βsendToGuardianBlockβ into the container βcyclic_containerβ immediately after βcreate_new_documentβ

3.2 Select data type and where to store the document

3.3 Create appropriate attributes to capture/store document status
Add βStatusβ attribute and set the initial βNewβ value for new documents

Displaying the documents
To display documents βinterfaceDocumentsSourceBlockβ is used
1.1 Add βinterfaceDocumentsSourceBlockβ into the βuser_rolesβ container

1.2 Specify the needed columns, their titles and where the values will be taken for display

1.3 To retrieve the data from the database βdocumentsSourceAddonβ block is used
1.3.1 Add βdocumentsSourceAddonβ to the βuser_gridβ

1.3.2 Select where to retrieve the documents from
1.3.3 Select the schema upon which the selected documents should be based on
1.3.4 Select βOwned by Userβ checkbox which would filter in only the documents that are created by this user (this will disable the ability to view other documents)
Approving the documents
To display documents βinterfaceDocumentsSourceBlockβ is used
1.1 As in the previous section we added βinterfaceDocumentsSourceBlockβ and configured displayed columns
1.2 Add additional column which would contain the βApproveβ button

1.3 Since the Approve button should be displayed only for new documents use two βdocumentSourceAddonβ block

Configure both βdocumentSourceAddonβ blocks similarly to how it was in the previous sections, except here do not select the βOwned by Userβ checkbox to allow the Approvers to see all documents (created by all users)
1.4 Separate the documents by status by means of creating the corresponding filters


To enable actions (in this example βApproveβ and βRejectβ) the βbuttonBlockβ block is used.
2.1 Best practice is to wrap the βbuttonBlockβ block in a container
Switch off the βDefault Activeβ option to avoid specifying the button as an independent element and hide it

2.2 Create 2 buttons for βApproveβ and βRejectβ correspondingly.

2.3 βbuttonBlockβ is responsible only for the actions, in order to save the refreshed status of the documents.
Create 2 βsendToGuardianBlockβ blocks with the corresponding values for the βStatusβ.

2.4 By default blocks are always directly connected to the next block (just below it). To decouple the blocks select βEventsβ tab and switch off the default events for both blocks.

2.5 Connect events from the βbuttonBlockβ with the corresponding βsendToGuardianBlockβ by selecting the Events tab and create 2 new events.

Return to the grid settings and add the created buttons into the previously prepared column
3.1 Set βTypeβ to βBLOCKβ
3.2 Set βBind Blockβ to the block which we can place into the column
3.3 In order to display the buttons for only new documents set the corresponding value for the βBind Group'

Result
1. Choose a role

2. Create new document


3. Approve


Last updated