Is there way to collect remarks for specific task when user submits his task form?
Lets say i have below step to perform approval, where i'm exposing only ìs_approved
field which will get stored in actual process model. Now along with ìs_approved
, i also want to capture remarks
for the same task.
approve = (
flow.View(
UpdateProcessView,
fields=["is_approved"],
task_title="Approve the document"
).Permission(
lambda process: 'core.can_approve_{}'.format(process.process.type)
).Next(this.check_approve)
)
Task1 -> Start -> Capture remarks from requester
Task2 -> Verification -> Capture remarks from the guy who performs verification
Task3 -> Approval -> Capture remarks from the guy who approves