SharePoint Code-free workflow design and development example--transportation reimbursement Process (iii)Category: SharePoint2012-07-21 01:28 8512 People read Comments (7) favorite reports SharePoint Work Traffic Task development tool 4, SharePoint Designer no code workflow design
Development tools for SharePoint Designer 2010
Create a new list workflow, and bind the transport expense claim form library
Set workflow startup Options "Automatically start a workflow when a project is created"
Edit Workflow
(Refer to http://blog.csdn.net/miragesky2049/article/details/18667779 for detailed design of the following workflow)
Use the "Collect data from users" operation to implement the approval process, create tasks, complete tasks with designated approvers, create custom form fields, and fill in editorial approval comments and other information by the approver.
Condition "Any value equals value" to determine the approval opinion returned by the approver to complete the task
Action "Set fields in current project", Assign values to form fields, update form fields
After the workflow is complete, test users can submit the form for testing.
Attention:
By creating a view for the Tasks list, you can achieve your own approval tasks that approvers can only see, thus preventing the current approver from approving other people's tasks, such as
In addition, for SharePoint Workflow task permissions (approvers only have permission to approve tasks assigned to them, other people who have permission to see tasks, etc.), form library list item permissions (the expense Bill submitter can only view the claims submitted by himself, cannot be edited after submission, etc.) these can be implemented in code, Using EventHandler development to achieve the above functions
SharePoint code-free workflow design and development example--transportation reimbursement Process (iii)