Giter VIP home page Giter VIP logo

flowable-'s Introduction

单审核

指定每一级的审核人进行审核

需求

1、共有学生-辅导员-副院长三种身份
2、学生申请请假,辅导员审批通过流转到副院长,副院长通过则流程结束
3、任意一级驳回,则流转至学生处,可以重新提交
4、到某一用户的环节,可以查看以往的审批历史信息

数据库

CREATE TABLE `sys_user` ( `id` bigint NOT NULL DEFAULT 0, `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `identity` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '0 学生 1辅导员 2副院长', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户表' ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;
INSERT INTO `flowable_`.`sys_user` (`id`, `name`, `identity`) VALUES (2016225500022, '小明', '0');
INSERT INTO `flowable_`.`sys_user` (`id`, `name`, `identity`) VALUES (2016225500023, '李想', '1');
INSERT INTO `flowable_`.`sys_user` (`id`, `name`, `identity`) VALUES (2016225500031, '张卫国', '2');

demo

(1)小明申请病假,启动流程


(2)小明查看待提交流程


(3)小明提交审核


(4)辅导员查看待审核流程
可以看到申请原因,申请人,以及历史的提交信息


(5)辅导员提交审核


(5)副院长查看待审核流程
可以看到申请原因,申请人,以及历史的审批信息


(6)查询到待审批的任务时,可以查看流程进展到哪一步


按照角色审核

具有某种角色的审核人进行审核

flowable-'s People

Contributors

meng-chun520 avatar

Stargazers

 avatar learning avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.