Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzwf
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzwf
提交
6d6cb99a
提交
6d6cb99a
编写于
6月 12, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ibiz4j 发布系统代码
上级
be4d284c
变更
18
隐藏空白字符变更
内嵌
并排
正在显示
18 个修改的文件
包含
370 行增加
和
297 行删除
+370
-297
package.json
app_web/package.json
+1
-1
app-form-group.vue
app_web/src/components/app-form-group/app-form-group.vue
+33
-25
app-transfer.less
app_web/src/components/app-transfer/app-transfer.less
+20
-6
app-transfer.vue
app_web/src/components/app-transfer/app-transfer.vue
+253
-247
yarn.lock
app_web/yarn.lock
+4
-4
WFGroup.java
...rc/main/java/cn/ibizlab/core/workflow/domain/WFGroup.java
+3
-0
WFHistory.java
.../main/java/cn/ibizlab/core/workflow/domain/WFHistory.java
+11
-2
WFMember.java
...c/main/java/cn/ibizlab/core/workflow/domain/WFMember.java
+4
-0
WFProcessDefinition.java
.../cn/ibizlab/core/workflow/domain/WFProcessDefinition.java
+9
-0
WFProcessInstance.java
...va/cn/ibizlab/core/workflow/domain/WFProcessInstance.java
+21
-2
WFProcessNode.java
...n/java/cn/ibizlab/core/workflow/domain/WFProcessNode.java
+1
-2
WFREModel.java
.../main/java/cn/ibizlab/core/workflow/domain/WFREModel.java
+1
-2
WFSystem.java
...c/main/java/cn/ibizlab/core/workflow/domain/WFSystem.java
+2
-0
WFTask.java
...src/main/java/cn/ibizlab/core/workflow/domain/WFTask.java
+1
-2
WFTaskWay.java
.../main/java/cn/ibizlab/core/workflow/domain/WFTaskWay.java
+1
-2
WFUser.java
...src/main/java/cn/ibizlab/core/workflow/domain/WFUser.java
+3
-0
SimpleTokenUtil.java
...c/main/java/cn/ibizlab/util/security/SimpleTokenUtil.java
+1
-1
UAATokenUtil.java
.../src/main/java/cn/ibizlab/util/security/UAATokenUtil.java
+1
-1
未找到文件。
app_web/package.json
浏览文件 @
6d6cb99a
...
...
@@ -26,7 +26,7 @@
"element-ui"
:
"^2.13.0"
,
"file-saver"
:
"^2.0.2"
,
"font-awesome"
:
"^4.7.0"
,
"ibiz-gantt-elastic"
:
"^1.0.1
6
"
,
"ibiz-gantt-elastic"
:
"^1.0.1
7
"
,
"ibiz-vue-lib"
:
"^0.1.10"
,
"interactjs"
:
"^1.9.4"
,
"moment"
:
"^2.24.0"
,
...
...
app_web/src/components/app-form-group/app-form-group.vue
浏览文件 @
6d6cb99a
...
...
@@ -28,21 +28,25 @@
<dropdown-menu
slot=
'list'
v-if=
"uiActionGroup.details && Array.isArray(uiActionGroup.details)"
>
<dropdown-item
v-for=
"(detail,index) in (uiActionGroup.details)"
:key=
"index"
:name=
"detail.name"
>
<span
class=
'item'
@
click=
"doUIAction($event, detail)"
>
<template
v-if=
"detail.icon && !Object.is(detail.icon, '')"
>
<i
:class=
"detail.icon"
></i>
</
template
>
<
template
v-if=
"!(detail.icon && !Object.is(detail.icon, ''))"
>
<div
v-if=
"detail.img && !Object.is(detail.img, '')"
>
<img
:src=
"detail.img"
/>
</div>
<template
v-if=
"detail.isShowIcon"
>
<template
v-if=
"detail.icon && !Object.is(detail.icon, '')"
>
<i
:class=
"detail.icon"
></i>
</
template
>
<
template
v-if=
"!(detail.icon && !Object.is(detail.icon, ''))"
>
<div
v-if=
"detail.img && !Object.is(detail.img, '')"
>
<img
:src=
"detail.img"
/>
</div>
</
template
>
</template>
<span>
<
template
v-if=
"uiActionGroup.langbase && !Object.is(uiActionGroup.langbase, '') && detail.uiactiontag && !Object.is(detail.uiactiontag, '')"
>
{{
$t
(
`${uiActionGroup.langbase
}
.uiactions.${detail.uiactiontag
}
`
)
}}
<
/template
>
<
template
v
-
if
=
"!(uiActionGroup.langbase && !Object.is(uiActionGroup.langbase, '') && detail.uiactiontag && !Object.is(detail.uiactiontag, ''))"
>
{{
detail
.
caption
}}
<
template
v-if=
"detail.isShowCaption"
>
<template
v-if=
"uiActionGroup.langbase && !Object.is(uiActionGroup.langbase, '') && detail.uiactiontag && !Object.is(detail.uiactiontag, '')"
>
{{
$t
(
`${uiActionGroup.langbase
}
.uiactions.${detail.uiactiontag
}
`
)
}}
<
/template
>
<
template
v
-
if
=
"!(uiActionGroup.langbase && !Object.is(uiActionGroup.langbase, '') && detail.uiactiontag && !Object.is(detail.uiactiontag, ''))"
>
{{
detail
.
caption
}}
<
/template
>
<
/template
>
<
/span
>
<
/span
>
...
...
@@ -55,21 +59,25 @@
<
template
v
-
if
=
"uiActionGroup.details && Array.isArray(uiActionGroup.details)"
>
<
div
v
-
for
=
"(detail,index) in uiActionGroup.details"
:
key
=
"index"
>
<
span
class
=
'item'
@
click
=
"doUIAction($event, detail)"
>
<
template
v
-
if
=
"detail.icon && !Object.is(detail.icon, '')"
>
<
i
:
class
=
"detail.icon"
><
/i
>
<
/template
>
<
template
v
-
if
=
"!(detail.icon && !Object.is(detail.icon, ''))"
>
<
div
v
-
if
=
"detail.img && !Object.is(detail.img, '')"
>
<
img
:
src
=
"detail.img"
/>
<
/div
>
<
/template
>
<
template
v
-
if
=
"detail.isShowIcon"
>
<
template
v
-
if
=
"detail.icon && !Object.is(detail.icon, '')"
>
<
i
:
class
=
"detail.icon"
><
/i
>
<
/template
>
<
template
v
-
if
=
"!(detail.icon && !Object.is(detail.icon, ''))"
>
<
div
v
-
if
=
"detail.img && !Object.is(detail.img, '')"
>
<
img
:
src
=
"detail.img"
/>
<
/div
>
<
/template
>
<
/template
>
&
nbsp
;
<
span
>
<
template
v
-
if
=
"uiActionGroup.langbase && !Object.is(uiActionGroup.langbase, '') && detail.uiactiontag && !Object.is(detail.uiactiontag, '')"
>
{{
$t
(
`${uiActionGroup.langbase
}
.uiactions.${detail.uiactiontag
}
`
)
}}
<
/template
>
<
template
v
-
if
=
"!(uiActionGroup.langbase && !Object.is(uiActionGroup.langbase, '') && detail.uiactiontag && !Object.is(detail.uiactiontag, ''))"
>
{{
detail
.
caption
}}
<
template
v
-
if
=
"detail.isShowCaption"
>
<
template
v
-
if
=
"uiActionGroup.langbase && !Object.is(uiActionGroup.langbase, '') && detail.uiactiontag && !Object.is(detail.uiactiontag, '')"
>
{{
$t
(
`${uiActionGroup.langbase
}
.uiactions.${detail.uiactiontag
}
`
)
}}
<
/template
>
<
template
v
-
if
=
"!(uiActionGroup.langbase && !Object.is(uiActionGroup.langbase, '') && detail.uiactiontag && !Object.is(detail.uiactiontag, ''))"
>
{{
detail
.
caption
}}
<
/template
>
<
/template
>
<
/span
>
<
/span
>
...
...
app_web/src/components/app-transfer/app-transfer.less
浏览文件 @
6d6cb99a
.ivu-select-dropdown {
padding: 0px;
.hidden {
display: none;
}
}
\ No newline at end of file
.transfer-select{
.ivu-select-dropdown {
padding: 0px;
.hidden {
display: none;
}
.el-transfer{
min-width: 100% !important;
display: flex;
justify-content: space-between;
.el-transfer-panel{
min-width: 25%;
}
.el-transfer__buttons{
align-self: center;
}
}
}
}
app_web/src/components/app-transfer/app-transfer.vue
浏览文件 @
6d6cb99a
<
template
>
<Select
@
on-open-change=
"transferRefresh"
@
on-change=
"dataChange"
v-model=
"dataRight"
:style=
"
{width:width?width:'586px'}"
multiple
>
<Option
class=
"hidden"
:value=
"item"
v-for=
"(item,i) in dataRight"
:key=
"i"
>
{{
findLabel
(
item
)
}}
</Option>
<el-transfer
v-model=
"dataRight"
:data=
"dataLeft"
@
change=
"dataChange"
:titles=
"['未选择', '已选择']"
></el-transfer>
</Select>
<Select
class=
"transfer-select"
@
on-open-change=
"transferRefresh"
@
on-change=
"dataChange"
v-model=
"dataRight"
:style=
"
{width:width}"
:disabled="disabled"
:placeholder="placeholder"
multiple>
<Option
class=
"hidden"
:value=
"item"
v-for=
"(item,i) in dataRight"
:key=
"i"
>
{{
findLabel
(
item
)
}}
</Option>
<el-transfer
v-model=
"dataRight"
:data=
"dataLeft"
@
change=
"dataChange"
:titles=
"['未选择', '已选择']"
/>
</Select>
</
template
>
<
script
lang=
"ts"
>
import
{
Vue
,
Component
,
Watch
,
Prop
,
Model
}
from
"vue-property-decorator"
;
import
CodeListService
from
"@service/app/codelist-service"
;
...
...
@@ -17,273 +26,270 @@ import { ElSelect } from "element-ui/types/select";
@
Component
({})
export
default
class
AppTransfer
extends
Vue
{
/**
* 传入表单数据
*
* @type {*}
* @memberof AppTransfer
*/
@
Prop
()
public
data
:
any
;
/**
* 穿梭框宽度
*
* @type {*
}
* @memberof AppTransfer
*/
@
Prop
()
public
width
:
any
;
/**
* 穿梭框宽度
*
* @type {string
}
* @memberof AppTransfer
*/
@
Prop
()
public
width
?:
string
;
/**
* 表单传入字符串值分隔符
*
* @type {string}
* @memberof AppTransfer
*/
@
Prop
()
public
valueSeparator
!
:
string
;
/**
* 表单传入字符串值分隔符
*
* @type {string}
* @memberof AppTransfer
*/
@
Prop
()
public
valueSeparator
?
:
string
;
/**
* 当前选中值
* @type {any}
* @memberof AppTransfer
*/
@
Model
(
"change"
)
public
itemValue
!
:
any
;
/**
* 代码表标识
*
* @type {string}
* @memberof AppTransfer
*/
@
Prop
()
public
tag
?:
string
;
/**
* 代码表标识
*
* @type {string}
* @memberof AppTransfer
*/
@
Prop
()
public
tag
?:
string
;
/**
* 代码表类型
*
* @type {string}
* @memberof AppTransfer
*/
@
Prop
()
public
codelistType
?:
string
;
/**
* 代码表类型
*
* @type {string
}
* @memberof AppTransfer
*/
@
Prop
()
public
codelistType
?:
string
;
/**
* 局部上下文导航参数
*
* @type {*
}
* @memberof AppTransfer
*/
@
Prop
()
public
localContext
!
:
any
;
/**
* 局部上下文
导航参数
*
* @type {*}
* @memberof AppTransfer
*/
@
Prop
()
public
localContext
!
:
any
;
/**
* 局部
导航参数
*
* @type {*}
* @memberof AppTransfer
*/
@
Prop
()
public
localParam
!
:
any
;
/**
* 局部导航参数
*
* @type {*}
* @memberof AppTransfer
*/
@
Prop
()
public
localParam
!
:
any
;
/**
* 视图上下文
*
* @type {*}
* @memberof AppAutocomplete
*/
@
Prop
()
public
context
!
:
any
;
/**
* 视图上下文
*
* @type {*}
* @memberof AppAutocomplete
*/
@
Prop
()
public
context
!
:
any
;
/**
* 视图参数
*
* @type {*}
* @memberof AppFormDRUIPart
*/
@
Prop
()
public
viewparams
!
:
any
;
/**
* 视图参数
*
* @type {*}
* @memberof AppFormDRUIPart
*/
@
Prop
()
public
viewparams
!
:
any
;
/**
* 是否禁用
*
* @type {any}
* @memberof AppTransfer
*
*/
@
Prop
()
public
disabled
?:
any
;
/**
* 是否禁用
*
* @type {any}
* @memberof AppTransfer
*
*/
@
Prop
()
public
disabled
?:
any
;
/**
* 穿梭框提示内容
*
* @type {string}
* @memberof AppTransfer
*/
@
Prop
()
public
placeholder
?:
string
;
/**
* placeholder
*
* @type {string}
* @memberof AppTransfer
*
*/
@
Prop
()
public
placeholder
?:
string
;
/**
* 当前选中值
*
* @type {any}
* @memberof AppTransfer
*/
@
Model
(
"change"
)
public
itemValue
!
:
any
;
/**
* 左侧框数据
*
* @type {any[]}
* @memberof AppTransfer
*/
public
dataLeft
:
any
[]
=
[];
/**
* 左侧框数据
*
* @memberof AppTransfer
*/
public
dataLeft
:
any
[]
=
[];
/**
* 右侧框数据
*
* @type {any[]}
* @memberof AppTransfer
*/
public
dataRight
:
any
[]
=
[];
/**
* 右侧框数据
*
* @memberof AppTransfer
*/
public
dataRight
:
any
[]
=
[];
/**
* 代码表服务对象
*
* @type {CodeListService}
* @memberof AppTransfer
*/
/**
* 代码表服务对象
*
* @type {CodeListService}
* @memberof AppTransfer
*/
public
codeListService
:
CodeListService
=
new
CodeListService
({
$store
:
this
.
$store
});
public
codeListService
:
CodeListService
=
new
CodeListService
({
$store
:
this
.
$store
});
/**
* vue 生命周期
* @memberof AppTransfer
*/
public
created
()
{
this
.
dataHandle
();
}
/**
* vue 生命周期
*
* @memberof AppTransfer
*/
public
created
()
{
this
.
dataHandle
();
}
/**
* 数据处理
*
* @memberof AppTransfer
*/
public
dataHandle
()
{
if
(
this
.
tag
&&
Object
.
is
(
this
.
codelistType
,
"STATIC"
))
{
const
codelist
=
this
.
$store
.
getters
.
getCodeList
(
this
.
tag
);
if
(
codelist
)
{
this
.
dataLeft
=
[...
JSON
.
parse
(
JSON
.
stringify
(
codelist
.
items
))];
this
.
initData
()
}
else
{
console
.
log
(
`----
${
this
.
tag
}
----代码表不存在`
);
}
}
else
if
(
this
.
tag
&&
Object
.
is
(
this
.
codelistType
,
"DYNAMIC"
))
{
// 处理公共参数
let
data
:
any
=
{};
this
.
handlePublicParams
(
data
);
// 参数处理
let
_context
=
data
.
context
;
let
_param
=
data
.
param
;
this
.
codeListService
.
getItems
(
this
.
tag
,
_context
,
_param
)
.
then
((
res
:
any
)
=>
{
this
.
dataLeft
=
res
;
this
.
initData
()
})
.
catch
((
error
:
any
)
=>
{
console
.
log
(
`----
${
this
.
tag
}
----代码表不存在`
);
});
}
}
/**
* 组件change事件,右侧框数据变化时
*
* @memberof AppTransfer
*/
dataChange
(
e
:
any
)
{
let
_valueSeparator
:
string
=
this
.
initValueSeparator
();
let
newVal
:
string
=
e
.
join
(
`
${
_valueSeparator
}
`
);
if
(
newVal
)
{
this
.
$emit
(
"change"
,
newVal
);
}
else
{
this
.
$emit
(
"change"
,
null
);
/**
* 公共参数处理
*
* @param {*} arg
* @returns
* @memberof AppTransfer
*/
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
)):
{};
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{};
// 附加参数处理
if
(
this
.
localContext
&&
Object
.
keys
(
this
.
localContext
).
length
>
0
)
{
let
_context
=
this
.
$util
.
computedNavData
(
this
.
data
,
arg
.
context
,
arg
.
param
,
this
.
localContext
);
Object
.
assign
(
arg
.
context
,
_context
);
}
if
(
this
.
localParam
&&
Object
.
keys
(
this
.
localParam
).
length
>
0
)
{
let
_param
=
this
.
$util
.
computedNavData
(
this
.
data
,
arg
.
context
,
arg
.
param
,
this
.
localParam
);
Object
.
assign
(
arg
.
param
,
_param
);
}
}
}
/**
* 初始化valueSeparator
*
* @memberof AppTransfer
*/
public
initValueSeparator
()
{
return
this
.
valueSeparator
?
this
.
valueSeparator
:
","
;
}
/**
* 初始化获取到的选项数据
*
* @memberof AppTransfer
*/
public
initData
(){
// 初始化左侧框数据
let
left
:
any
[]
=
[];
Object
.
assign
(
left
,
this
.
dataLeft
);
this
.
dataLeft
=
[];
left
.
forEach
((
elem
:
any
,
i
:
any
)
=>
{
this
.
dataLeft
.
push
({
key
:
elem
.
id
,
value
:
elem
.
value
,
label
:
elem
.
text
,
disabled
:
elem
.
disabled
});
});
/**
* 数据处理
*
* @memberof AppTransfer
*/
public
dataHandle
()
{
if
(
this
.
tag
&&
Object
.
is
(
this
.
codelistType
,
"STATIC"
))
{
const
codelist
=
this
.
$store
.
getters
.
getCodeList
(
this
.
tag
);
if
(
codelist
)
{
this
.
dataLeft
=
[...
JSON
.
parse
(
JSON
.
stringify
(
codelist
.
items
))];
this
.
initLeft
();
this
.
initRight
();
}
else
{
console
.
log
(
`----
${
this
.
tag
}
----代码表不存在`
);
}
}
else
if
(
this
.
tag
&&
Object
.
is
(
this
.
codelistType
,
"DYNAMIC"
))
{
// 处理公共参数
let
data
:
any
=
{};
this
.
handlePublicParams
(
data
);
// 参数处理
let
_context
=
data
.
context
;
let
_param
=
data
.
param
;
this
.
codeListService
.
getItems
(
this
.
tag
,
_context
,
_param
).
then
((
res
:
any
)
=>
{
this
.
dataLeft
=
res
;
this
.
initLeft
();
this
.
initRight
();
}).
catch
((
error
:
any
)
=>
{
console
.
log
(
`----
${
this
.
tag
}
----代码表不存在`
);
// 初始化右侧框数据
let
_valueSeparator
:
any
;
_valueSeparator
=
this
.
initValueSeparator
();
let
_data
:
any
=
this
.
itemValue
;
if
(
_data
)
{
let
_dataRight
:
any
=
[];
let
newData
:
any
[]
=
_data
.
split
(
`
${
_valueSeparator
}
`
);
this
.
dataLeft
.
forEach
((
elem
:
any
)
=>
{
newData
.
forEach
((
item
:
any
)
=>
{
if
(
item
===
elem
.
value
)
{
_dataRight
.
push
(
elem
.
key
);
}
});
});
this
.
dataRight
=
_dataRight
;
}
}
}
/**
* 公共参数处理
*
* @param {*} arg
* @returns
* @memberof AppTransfer
*/
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
)):
{};
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{};
// 附加参数处理
if
(
this
.
localContext
&&
Object
.
keys
(
this
.
localContext
).
length
>
0
)
{
let
_context
=
this
.
$util
.
computedNavData
(
this
.
itemValue
,
arg
.
context
,
arg
.
param
,
this
.
localContext
);
Object
.
assign
(
arg
.
context
,
_context
);
/**
* 组件change事件,右侧框数据变化时
* @memberof AppTransfer
*/
public
dataChange
(
e
:
any
)
{
let
_valueSeparator
:
string
;
_valueSeparator
=
this
.
initValueSeparator
();
let
newVal
:
string
=
e
.
join
(
`
${
_valueSeparator
}
`
);
if
(
newVal
)
{
this
.
$emit
(
"change"
,
newVal
);
}
else
{
this
.
$emit
(
"change"
,
null
);
}
}
if
(
this
.
localParam
&&
Object
.
keys
(
this
.
localParam
).
length
>
0
)
{
let
_param
=
this
.
$util
.
computedNavData
(
this
.
itemValue
,
arg
.
context
,
arg
.
param
,
this
.
localParam
);
Object
.
assign
(
arg
.
param
,
_param
);
}
}
/**
* 初始化左侧框数据
*
* @memberof AppTransfer
*/
public
initLeft
()
{
let
left
:
any
[]
=
[];
Object
.
assign
(
left
,
this
.
dataLeft
);
this
.
dataLeft
=
[];
left
.
forEach
((
elem
:
any
,
i
:
any
)
=>
{
this
.
dataLeft
.
push
({
key
:
elem
.
id
,
value
:
elem
.
value
,
label
:
elem
.
text
,
disabled
:
elem
.
disabled
});
});
}
/**
* 初始化右侧框数据
*
* @memberof AppTransfer
*/
public
initRight
()
{
let
_valueSeparator
:
any
;
_valueSeparator
=
this
.
initValueSeparator
();
let
_data
:
any
=
this
.
itemValue
;
if
(
_data
)
{
let
_dataRight
:
any
=
[];
let
newData
:
any
[]
=
_data
.
split
(
`
${
_valueSeparator
}
`
);
this
.
dataLeft
.
forEach
((
elem
:
any
)
=>
{
newData
.
forEach
((
item
:
any
)
=>
{
if
(
item
===
elem
.
value
)
{
_dataRight
.
push
(
elem
.
key
);
}
});
});
this
.
dataRight
=
_dataRight
;
/**
* 初始化valueSeparator
* @memberof AppTransfer
*/
public
initValueSeparator
()
{
return
this
.
valueSeparator
?
this
.
valueSeparator
:
","
;
}
}
/**
* 穿梭框打开时刷新数据
*
* @memberof AppTransfer
*/
public
transferRefresh
(
e
:
any
)
{
if
(
e
&&
this
.
codelistType
===
"DYNAMIC"
)
{
this
.
dataLeft
=
[]
;
this
.
dataHandle
();
/**
* 穿梭框打开时刷新数据
* @memberof AppTransfer
*/
public
transferRefresh
(
e
:
boolean
)
{
if
(
e
&&
this
.
codelistType
===
"DYNAMIC"
)
{
this
.
dataLeft
=
[];
this
.
dataHandle
()
;
}
}
}
/**
* 找到dataLeft中key与dataRight中item相等的元素,返回label
*
* @memberof AppTransfer
*/
public
findLabel
(
item
:
any
)
{
for
(
const
elem
of
this
.
dataLeft
)
{
if
(
elem
.
key
===
item
)
return
elem
.
label
;
/**
* 找到dataLeft中key与dataRight中item相等的元素,返回label
* @memberof AppTransfer
*/
public
findLabel
(
item
:
any
)
{
for
(
const
elem
of
this
.
dataLeft
)
{
if
(
elem
.
key
===
item
)
return
elem
.
label
;
}
}
}
}
</
script
>
...
...
app_web/yarn.lock
浏览文件 @
6d6cb99a
...
...
@@ -5238,10 +5238,10 @@ human-signals@^1.1.1:
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
ibiz-gantt-elastic@^1.0.1
6
:
version "1.0.1
6
"
resolved "https://registry.
npm.taobao.org/ibiz-gantt-elastic/download/ibiz-gantt-elastic-1.0.16.tgz#e2de7e8d4bdb3c292cfbc97c4f970c8ecfe6c43b
"
integrity sha
1-4t5+jUvbPCks+8l8T5cMjs/mxDs
=
ibiz-gantt-elastic@^1.0.1
7
:
version "1.0.1
7
"
resolved "https://registry.
yarnpkg.com/ibiz-gantt-elastic/-/ibiz-gantt-elastic-1.0.17.tgz#447cce5db2e0127d2336c20370fc251992520c6f
"
integrity sha
512-AJOYXZGM020wafn60RJLM2yKmtT2BjCpBKkZ0PONcxdqW/kCyXOqEo3c3/PBtFEkJx/8KGTayB013BOdGI1+uQ=
=
dependencies:
dayjs "^1.8.16"
resize-observer-polyfill "^1.5.1"
...
...
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFGroup.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -79,6 +80,7 @@ public class WFGroup extends EntityMP implements Serializable {
this
.
name
=
name
;
this
.
modify
(
"groupname"
,
name
);
}
/**
* 设置 [范围]
*/
...
...
@@ -87,6 +89,7 @@ public class WFGroup extends EntityMP implements Serializable {
this
.
modify
(
"groupscope"
,
groupscope
);
}
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFHistory.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -25,7 +26,6 @@ import org.springframework.data.annotation.Transient;
/**
* [历史] 对象
*/
@Builder
@Getter
@Setter
@NoArgsConstructor
...
...
@@ -104,7 +104,16 @@ public class WFHistory extends EntityBase implements Serializable {
/**
* 格式化日期 [时间]
*/
public
String
formatTime
(){
if
(
this
.
time
==
null
)
{
return
null
;
}
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"defieldFormatStr"
);
return
sdf
.
format
(
time
);
}
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFMember.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -107,6 +108,7 @@ public class WFMember extends EntityMP implements Serializable {
this
.
membername
=
membername
;
this
.
modify
(
"membername"
,
membername
);
}
/**
* 设置 [组标识]
*/
...
...
@@ -114,6 +116,7 @@ public class WFMember extends EntityMP implements Serializable {
this
.
groupid
=
groupid
;
this
.
modify
(
"groupid"
,
groupid
);
}
/**
* 设置 [用户标识]
*/
...
...
@@ -122,6 +125,7 @@ public class WFMember extends EntityMP implements Serializable {
this
.
modify
(
"userid"
,
userid
);
}
/**
* 获取 [组成员标识]
*/
...
...
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFProcessDefinition.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -113,6 +114,7 @@ public class WFProcessDefinition extends EntityMP implements Serializable {
this
.
definitionname
=
definitionname
;
this
.
modify
(
"definitionname"
,
definitionname
);
}
/**
* 设置 [模型版本]
*/
...
...
@@ -120,6 +122,7 @@ public class WFProcessDefinition extends EntityMP implements Serializable {
this
.
modelversion
=
modelversion
;
this
.
modify
(
"modelversion"
,
modelversion
);
}
/**
* 设置 [模型是否启用]
*/
...
...
@@ -127,6 +130,7 @@ public class WFProcessDefinition extends EntityMP implements Serializable {
this
.
modelenable
=
modelenable
;
this
.
modify
(
"modelenable"
,
modelenable
);
}
/**
* 设置 [系统标识]
*/
...
...
@@ -134,6 +138,7 @@ public class WFProcessDefinition extends EntityMP implements Serializable {
this
.
pssystemid
=
pssystemid
;
this
.
modify
(
"pssystemid"
,
pssystemid
);
}
/**
* 设置 [TaskDefinitionKey]
*/
...
...
@@ -141,6 +146,7 @@ public class WFProcessDefinition extends EntityMP implements Serializable {
this
.
taskprocessdefinitionkey
=
taskprocessdefinitionkey
;
this
.
modify
(
"taskdefinitionkey"
,
taskprocessdefinitionkey
);
}
/**
* 设置 [校验]
*/
...
...
@@ -148,6 +154,7 @@ public class WFProcessDefinition extends EntityMP implements Serializable {
this
.
md5check
=
md5check
;
this
.
modify
(
"md5check"
,
md5check
);
}
/**
* 设置 [BPMN]
*/
...
...
@@ -155,6 +162,7 @@ public class WFProcessDefinition extends EntityMP implements Serializable {
this
.
bpmnfile
=
bpmnfile
;
this
.
modify
(
"bpmnfile"
,
bpmnfile
);
}
/**
* 设置 [DeployKey]
*/
...
...
@@ -163,6 +171,7 @@ public class WFProcessDefinition extends EntityMP implements Serializable {
this
.
modify
(
"deploykey"
,
deploykey
);
}
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFProcessInstance.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -25,7 +26,6 @@ import org.springframework.data.annotation.Transient;
/**
* [流程实例] 对象
*/
@Builder
@Getter
@Setter
@NoArgsConstructor
...
...
@@ -103,7 +103,26 @@ public class WFProcessInstance extends EntityBase implements Serializable {
/**
* 格式化日期 [启动时间]
*/
public
String
formatStarttime
(){
if
(
this
.
starttime
==
null
)
{
return
null
;
}
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"defieldFormatStr"
);
return
sdf
.
format
(
starttime
);
}
/**
* 格式化日期 [结束时间]
*/
public
String
formatEndtime
(){
if
(
this
.
endtime
==
null
)
{
return
null
;
}
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"defieldFormatStr"
);
return
sdf
.
format
(
endtime
);
}
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFProcessNode.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -25,7 +26,6 @@ import org.springframework.data.annotation.Transient;
/**
* [流程定义节点] 对象
*/
@Builder
@Getter
@Setter
@NoArgsConstructor
...
...
@@ -66,7 +66,6 @@ public class WFProcessNode extends EntityBase implements Serializable {
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFREModel.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -25,7 +26,6 @@ import org.springframework.data.annotation.Transient;
/**
* [流程模型] 对象
*/
@Builder
@Getter
@Setter
@NoArgsConstructor
...
...
@@ -57,7 +57,6 @@ public class WFREModel extends EntityBase implements Serializable {
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFSystem.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -64,6 +65,7 @@ public class WFSystem extends EntityMP implements Serializable {
this
.
modify
(
"pssystemname"
,
pssystemname
);
}
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFTask.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -25,7 +26,6 @@ import org.springframework.data.annotation.Transient;
/**
* [工作流任务] 对象
*/
@Builder
@Getter
@Setter
@NoArgsConstructor
...
...
@@ -82,7 +82,6 @@ public class WFTask extends EntityBase implements Serializable {
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFTaskWay.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -25,7 +26,6 @@ import org.springframework.data.annotation.Transient;
/**
* [操作路径] 对象
*/
@Builder
@Getter
@Setter
@NoArgsConstructor
...
...
@@ -96,7 +96,6 @@ public class WFTaskWay extends EntityBase implements Serializable {
}
ibzwf-core/src/main/java/cn/ibizlab/core/workflow/domain/WFUser.java
浏览文件 @
6d6cb99a
...
...
@@ -7,6 +7,7 @@ import java.util.Map;
import
java.math.BigInteger
;
import
java.util.HashMap
;
import
java.math.BigDecimal
;
import
java.text.SimpleDateFormat
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
...
...
@@ -72,6 +73,7 @@ public class WFUser extends EntityMP implements Serializable {
this
.
firstname
=
firstname
;
this
.
modify
(
"username"
,
firstname
);
}
/**
* 设置 [用户名称]
*/
...
...
@@ -80,6 +82,7 @@ public class WFUser extends EntityMP implements Serializable {
this
.
modify
(
"personname"
,
displayname
);
}
}
ibzwf-util/src/main/java/cn/ibizlab/util/security/SimpleTokenUtil.java
浏览文件 @
6d6cb99a
...
...
@@ -19,7 +19,7 @@ import java.util.Optional;
import
java.util.function.Function
;
@Component
@ConditionalOnExpression
(
"(!${ibiz.enablePermissionValid:false})&&'${ibiz.auth.
service
:UAATokenUtil}'.equals('SimpleTokenUtil')"
)
@ConditionalOnExpression
(
"(!${ibiz.enablePermissionValid:false})&&'${ibiz.auth.
token.util
:UAATokenUtil}'.equals('SimpleTokenUtil')"
)
public
class
SimpleTokenUtil
implements
AuthTokenUtil
,
Serializable
{
private
static
final
long
serialVersionUID
=
-
3301605591108950415L
;
...
...
ibzwf-util/src/main/java/cn/ibizlab/util/security/UAATokenUtil.java
浏览文件 @
6d6cb99a
...
...
@@ -30,7 +30,7 @@ import java.util.Map;
import
java.util.function.Function
;
@Component
@ConditionalOnExpression
(
"${ibiz.enablePermissionValid:false}||'${ibiz.auth.
service
:UAATokenUtil}'.equals('UAATokenUtil')"
)
@ConditionalOnExpression
(
"${ibiz.enablePermissionValid:false}||'${ibiz.auth.
token.util
:UAATokenUtil}'.equals('UAATokenUtil')"
)
public
class
UAATokenUtil
implements
AuthTokenUtil
,
Serializable
{
private
static
final
long
serialVersionUID
=
-
3301605591108950415L
;
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录