驰骋工作流引擎表单设计控件 - 关系类控件 – 审核组件及其他控件

驰骋工作流引擎详解
1.审核组件

适用于由多个部门或人员审核的表单,仅用此控件即可,无须再次重复添加审核组.

填写审核意见:

clip_image001[5]

填写后效果:

clip_image002[5]

详细使用,参考文档【驰骋工作流引擎-表单引擎中的审核组件使用说明书】

2.一对多的关系表

一对多的关系是对多项选择来确定的。

比如:单位人员旅游名单。这些名单可以让用户去选择它。

2.1运行界面

clip_image004[17]

2.2属性编辑

clip_image006[13]

显示在分组,对所有的自由表单设计器来说无意义。

3.一对多多关系表

一对多有三个维度

第一维度是 对象列表.

他有两种表达方式。

1,sql 必须有两个列 No,Name.

2, @+本表单中的多对多编号.

第二维度是: 如同 m2m 中的第一维度.

where 表达公式中需要一个 @Key 就是来自于第一维度的 实体 PK.

第三维度是:如同 m2m 中的第二纬度.

因为应用场景比较少,这里不多介绍。

 

 

更多的功能探索,请访问在线演示平台:

流程演示环境:http://demo.ccflow.org/

OA演示环境:(用户名amdin 密码:pub) http://ccoa.ccflow.org/Main/NewHome/login.aspx

驰骋工作流引擎官方网站:http://www.ccflow.org/

与众多爱好者共同探索,请加官方QQ群:383352596

指定联系官方QQ:1146275232

<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0"> <display-name>AirlineBooking</display-name> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <!-- 配置JSTL --> <jsp-config> <taglib> <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri> <taglib-location>/WEB-INF/lib/jstl-1.2.jar</taglib-location> </taglib> </jsp-config> <filter> <filter-name>AuthFilter</filter-name> <filter-class>com.airline.filter.AuthFilter</filter-class> </filter> <filter-mapping> <filter-name>AuthFilter</filter-name> <url-pattern>/booking/*</url-pattern> </filter-mapping> <filter-mapping> <filter-name>AuthFilter</filter-name> <url-pattern>/user/*</url-pattern> </filter-mapping> <!-- <!&ndash; 应用显示名称 &ndash;>--> <!-- <display-name>OnlineShop</display-name>--> <!-- <!&ndash; 欢迎文件列表 &ndash;>--> <!-- <welcome-file-list>--> <!-- <welcome-file>index.jsp</welcome-file>--> <!-- </welcome-file-list>--> <!-- <!&ndash; 会话超时配置(单位:分钟) &ndash;>--> <!-- <session-config>--> <!-- <session-timeout>30</session-timeout>--> <!-- </session-config>--> <!-- <!&ndash; Servlet 配置 &ndash;>--> <!-- <servlet>--> <!-- <servlet-name>LoginServlet</servlet-name>--> <!-- <servlet-class>com.onlineshop.servlet.LoginServlet</servlet-class>--> <!-- </servlet>--> <!-- <servlet>--> <!-- <servlet-name>RegisterServlet</servlet-name>--> <!-- <servlet-class>com.example.onlineshop.servlet.RegisterServlet</servlet-class>--> <!-- </servlet>--> <!-- <!&ndash; Servlet 映射 &ndash;>--> <!-- <servlet-mapping>--> <!-- <servlet-name>LoginServlet</servlet-name>--> <!-- <url-pattern>/login_process.jsp</url-pattern>--> <!-- </servlet-mapping>--> <!-- <servlet-mapping>--> <!-- <servlet-name>RegisterServlet</servlet-name>--> <!-- <url-pattern>/register_process.jsp</url-pattern>--> <!-- </servlet-mapping>--> <!-- <!&ndash; 错误页面配置 &ndash;>--> <!--<!&ndash; <error-page>&ndash;>--> <!--<!&ndash; <error-code>404</error-code>&ndash;>--> <!--<!&ndash; <location>/error/404.jsp</location>&ndash;>--> <!--<!&ndash; </error-page>&ndash;>--> <!--<!&ndash; <error-page>&ndash;>--> <!--<!&ndash; <error-code>500</error-code>&ndash;>--> <!--<!&ndash; <location>/error/500.jsp</location>&ndash;>--> <!--<!&ndash; </error-page>&ndash;>--> <!-- <!&ndash; 上下文参数 &ndash;>--> <!-- <context-param>--> <!-- <param-name>jdbcDriver</param-name>--> <!-- <param-value>com.mysql.jdbc.Driver</param-value>--> <!-- </context-param>--> <!-- <context-param>--> <!-- <param-name>jdbcUrl</param-name>--> <!-- <param-value>jdbc:mysql://localhost:3306/onlineshop</param-value>--> <!-- </context-param>--> <!-- <!&ndash; 过滤器配置(可选) &ndash;>--> <!--<!&ndash; <filter>&ndash;>--> <!--<!&ndash; <filter-name>CharacterEncodingFilter</filter-name>&ndash;>--> <!--<!&ndash; <filter-class>com.example.onlineshop.filter.CharacterEncodingFilter</filter-class>&ndash;>--> <!--<!&ndash; <init-param>&ndash;>--> <!--<!&ndash; <param-name>encoding</param-name>&ndash;>--> <!--<!&ndash; <param-value>UTF-8</param-value>&ndash;>--> <!--<!&ndash; </init-param>&ndash;>--> <!--<!&ndash; </filter>&ndash;>--> <!--<!&ndash; <filter-mapping>&ndash;>--> <!--<!&ndash; <filter-name>CharacterEncodingFilter</filter-name>&ndash;>--> <!--<!&ndash; <url-pattern>/*</url-pattern>&ndash;>--> <!--<!&ndash; </filter-mapping>&ndash;>--> </web-app>我这个配置有问题吗
06-16
<!-- 开发 --> <profile> <id>dev</id> <activation> <!--默认激活配置--> <activeByDefault>true</activeByDefault> </activation> <properties> <!--当前环境--> <profile.name>dev</profile.name> <!--配置文件前缀--> <prefix.name>jeecg</prefix.name> <!--Nacos配置中心地址192.168.2.236:8848,--> <config.server-addr>192.168.2.236:8848,192.168.2.190:8848,192.168.2.179:8848</config.server-addr> <!--Nacos配置中心命名空间,用于支持多环境.这里必须使用ID,不能使用名称,默认为空--> <config.namespace/> <!--Nacos配置分组名称--> <config.group>DEFAULT_GROUP</config.group> <!--Nacos服务发现地址--> <discovery.server-addr>192.168.2.236:8848,192.168.2.190:8848,192.168.2.179:8848</discovery.server-addr> </properties> </profile> <!-- 达梦开发环境 --> <!-- <profile>--> <!-- <id>dm-dev</id>--> <!-- <activation>--> <!-- <!&ndash;默认激活配置&ndash;>--> <!-- <activeByDefault>true</activeByDefault>--> <!-- </activation>--> <!-- <properties>--> <!-- <!&ndash;当前环境&ndash;>--> <!-- <profile.name>dm-dev</profile.name>--> <!-- <!&ndash;配置文件前缀&ndash;>--> <!-- <prefix.name>jeecg</prefix.name>--> <!-- <!&ndash;Nacos配置中心地址192.168.2.236:8848,&ndash;>--> <!-- <config.server-addr>192.168.2.236:8848,192.168.2.190:8848,192.168.2.179:8848</config.server-addr>--> <!-- <!&ndash;Nacos配置中心命名空间,用于支持多环境.这里必须使用ID,不能使用名称,默认为空&ndash;>--> <!-- <config.namespace/>--> <!-- <!&ndash;Nacos配置分组名称&ndash;>--> <!-- <config.group>DEFAULT_GROUP</config.group>--> <!-- <!&ndash;Nacos服务发现地址&ndash;>--> <!-- <discovery.server-addr>192.168.2.236:8848,192.168.2.190:8848,192.168.2.179:8848</discovery.server-addr>--> <!-- </properties>--> <!-- </profile>-->为什么我加了一个就不识别了
最新发布
08-14
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值