Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
caa71656
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1188
Star
154
Fork
127
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Skyeye
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
caa71656
编写于
10月 07, 2022
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
工作流整改完成
上级
7f491987
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
65 addition
and
60 deletion
+65
-60
activiti/src/main/resources/template/js/dsFormPageSequence/dsFormPageSequenceDraftProcessAdd.js
...s/dsFormPageSequence/dsFormPageSequenceDraftProcessAdd.js
+3
-3
activiti/src/main/resources/template/js/dsFormPageSequence/dsFormPageSequenceDraftProcessList.js
.../dsFormPageSequence/dsFormPageSequenceDraftProcessList.js
+0
-2
activiti/src/main/resources/template/js/myActiviti/newProcess.js
...i/src/main/resources/template/js/myActiviti/newProcess.js
+5
-2
activiti/src/main/resources/template/tpl/myActiviti/newProcess.html
...rc/main/resources/template/tpl/myActiviti/newProcess.html
+1
-1
gateway/src/main/resources/template/js/mainPage/mainPage.js
gateway/src/main/resources/template/js/mainPage/mainPage.js
+5
-2
gateway/src/main/resources/template/tpl/mainPage/mainPage.html
...ay/src/main/resources/template/tpl/mainPage/mainPage.html
+1
-1
web/src/main/resources/template/assets/lib/layui/customer/erpOrderUtil.js
...ources/template/assets/lib/layui/customer/erpOrderUtil.js
+13
-12
web/src/main/resources/template/json/activitiNameKey.json
web/src/main/resources/template/json/activitiNameKey.json
+37
-37
未找到文件。
activiti/src/main/resources/template/js/dsFormPageSequence/dsFormPageSequenceDraftProcessAdd.js
浏览文件 @
caa71656
...
...
@@ -12,7 +12,7 @@ layui.config({
layedit
=
layui
.
layedit
,
form
=
layui
.
form
;
var
act
Key
=
parent
.
actKey
;
var
act
FlowId
=
parent
.
actFlowId
;
// 加载动态表单页
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
dsformpage004
"
,
params
:
{
rowId
:
parent
.
dsFormId
},
type
:
'
json
'
,
callback
:
function
(
json
)
{
...
...
@@ -28,12 +28,12 @@ layui.config({
form
.
on
(
'
submit(formAddBean)
'
,
function
(
data
)
{
if
(
winui
.
verifyForm
(
data
.
elem
))
{
activitiUtil
.
startProcess
(
parent
.
dsFormId
,
null
,
function
(
approvalId
)
{
if
(
isNull
(
act
Key
)){
if
(
isNull
(
act
FlowId
)){
winui
.
window
.
msg
(
'
流程对象为空,无法启动.
'
,
{
icon
:
2
,
time
:
2000
});
return
false
;
}
var
jStr
=
{
keyName
:
act
Key
,
keyName
:
act
FlowId
,
jsonStr
:
JSON
.
stringify
(
dsFormUtil
.
getPageData
(
$
(
"
#showForm
"
))),
pageId
:
parent
.
dsFormId
,
approvalId
:
approvalId
...
...
activiti/src/main/resources/template/js/dsFormPageSequence/dsFormPageSequenceDraftProcessList.js
浏览文件 @
caa71656
...
...
@@ -30,7 +30,6 @@ layui.config({
cols
:
[[
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
type
:
'
numbers
'
},
{
field
:
'
title
'
,
title
:
'
流程名称
'
,
width
:
100
},
{
field
:
'
typeTitle
'
,
title
:
'
流程类型
'
,
width
:
100
},
{
field
:
'
createTime
'
,
title
:
'
申请时间
'
,
align
:
'
center
'
,
width
:
140
},
{
field
:
'
state
'
,
title
:
'
状态
'
,
align
:
'
center
'
,
width
:
80
,
templet
:
function
(
d
)
{
if
(
d
.
state
==
1
){
...
...
@@ -94,7 +93,6 @@ layui.config({
activitiUtil
.
startProcess
(
data
.
pageId
,
null
,
function
(
approvalId
)
{
var
params
=
{
rowId
:
data
.
id
,
pageId
:
data
.
pageId
,
approvalId
:
approvalId
};
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
pagesequence005
"
,
params
:
params
,
type
:
'
json
'
,
callback
:
function
(
json
)
{
...
...
activiti/src/main/resources/template/js/myActiviti/newProcess.js
浏览文件 @
caa71656
var
act
Key
=
""
;
var
act
FlowId
=
""
;
var
dsFormId
=
""
;
/**
...
...
@@ -61,7 +61,10 @@ layui.config({
var
title
=
$
(
this
).
attr
(
"
showTitle
"
);
var
url
=
$
(
this
).
attr
(
"
addPageUrl
"
);
dsFormId
=
$
(
this
).
attr
(
"
dsFormId
"
);
actKey
=
$
(
this
).
attr
(
"
serviceClassName
"
);
if
(
!
isNull
(
dsFormId
))
{
// 只有动态表单类型的流程才要工作流模型的id
actFlowId
=
$
(
this
).
attr
(
"
actFlowId
"
);
}
_openNewWindows
({
url
:
url
,
title
:
title
,
...
...
activiti/src/main/resources/template/tpl/myActiviti/newProcess.html
浏览文件 @
caa71656
...
...
@@ -18,7 +18,7 @@
<
div
class
=
"
layui-card-header
"
style
=
"
border-bottom: 1px solid white;
"
>
{{
title
}}
<
/div
>
<
div
class
=
"
layui-card-body layui-col-md12
"
>
{{
#
each
child
}}
<
div
class
=
"
task-launch-item launchTask
"
dsFormId
=
"
{{dsFormId}}
"
serviceClassName
=
"
{{serviceClassName
}}
"
addPageUrl
=
"
{{addPageUrl}}
"
showTitle
=
"
{{title}}
"
>
<
div
class
=
"
task-launch-item launchTask
"
dsFormId
=
"
{{dsFormId}}
"
actFlowId
=
"
{{actFlowId
}}
"
addPageUrl
=
"
{{addPageUrl}}
"
showTitle
=
"
{{title}}
"
>
<
div
class
=
"
task-left-top
"
style
=
"
background-color: {{iconBg}};
"
><
/div
>
<
div
class
=
"
task-launch-item-bk task-launch-item-bk_1
"
style
=
"
border-left: 2px solid {{iconBg}};
"
><
/div
>
<
div
class
=
"
task-launch-item-bk task-launch-item-bk_2
"
style
=
"
border-top: 2px solid {{iconBg}};
"
><
/div
>
...
...
gateway/src/main/resources/template/js/mainPage/mainPage.js
浏览文件 @
caa71656
var
rowId
=
""
;
var
act
Key
=
""
;
var
act
FlowId
=
""
;
var
dsFormId
=
""
;
layui
.
config
({
...
...
@@ -131,7 +131,10 @@ layui.config({
var
title
=
$
(
this
).
attr
(
"
showTitle
"
);
var
url
=
$
(
this
).
attr
(
"
addPageUrl
"
);
dsFormId
=
$
(
this
).
attr
(
"
dsFormId
"
);
actKey
=
$
(
this
).
attr
(
"
serviceClassName
"
);
if
(
!
isNull
(
dsFormId
))
{
// 只有动态表单类型的流程才要工作流模型的id
actFlowId
=
$
(
this
).
attr
(
"
actFlowId
"
);
}
_openNewWindows
({
url
:
url
,
title
:
title
,
...
...
gateway/src/main/resources/template/tpl/mainPage/mainPage.html
浏览文件 @
caa71656
...
...
@@ -182,7 +182,7 @@
<script
type=
"text/x-handlebars-template"
id=
"actModelTemplate"
>
{{
#
each
rows
}}
<
li
class
=
"
layui-col-sm2 act-model-li
"
dsFormId
=
"
{{dsFormId}}
"
serviceClassName
=
"
{{serviceClassName
}}
"
addPageUrl
=
"
{{addPageUrl}}
"
showTitle
=
"
{{title}}
"
title
=
"
{{title}}
"
>
<
li
class
=
"
layui-col-sm2 act-model-li
"
dsFormId
=
"
{{dsFormId}}
"
actFlowId
=
"
{{actFlowId
}}
"
addPageUrl
=
"
{{addPageUrl}}
"
showTitle
=
"
{{title}}
"
title
=
"
{{title}}
"
>
<
div
class
=
"
icon
"
>
{{
#
compare1
iconType
iconPic
icon
iconColor
}}{{
/
compare1
}}
<
/div
>
...
...
web/src/main/resources/template/assets/lib/layui/customer/erpOrderUtil.js
浏览文件 @
caa71656
...
...
@@ -97,11 +97,11 @@ var erpOrderUtil = {
* 删除订单信息
*
* @param id 订单id
* @param
orderTyp
e 单据类型
* @param
serviceClassNam
e 单据类型
*/
deleteOrderMation
:
function
(
id
,
orderTyp
e
,
callback
)
{
deleteOrderMation
:
function
(
id
,
serviceClassNam
e
,
callback
)
{
layer
.
confirm
(
systemLanguage
[
"
com.skyeye.deleteOperationMsg
"
][
languageType
],
{
icon
:
3
,
title
:
systemLanguage
[
"
com.skyeye.deleteOperation
"
][
languageType
]},
function
(
index
)
{
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
erpcommon005
"
,
params
:
{
rowId
:
id
,
orderType
:
orderTyp
e
},
method
:
"
DELETE
"
,
type
:
'
json
'
,
callback
:
function
(
json
)
{
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
erpcommon005
"
,
params
:
{
rowId
:
id
,
serviceClassName
:
serviceClassNam
e
},
method
:
"
DELETE
"
,
type
:
'
json
'
,
callback
:
function
(
json
)
{
winui
.
window
.
msg
(
systemLanguage
[
"
com.skyeye.deleteOperationSuccessMsg
"
][
languageType
],
{
icon
:
1
,
time
:
2000
});
if
(
typeof
(
callback
)
==
"
function
"
)
{
callback
();
...
...
@@ -114,26 +114,27 @@ var erpOrderUtil = {
* 提交订单信息
*
* @param id 订单id
* @param
orderTyp
e 单据类型
* @param
serviceClassNam
e 单据类型
* @param submitType 单据提交类型 1.走工作流提交 2.直接提交
* @param actKey 该地址为activitiNameKey.json的key
*/
submitOrderMation
:
function
(
id
,
orderTyp
e
,
submitType
,
actKey
,
callback
)
{
submitOrderMation
:
function
(
id
,
serviceClassNam
e
,
submitType
,
actKey
,
callback
)
{
layer
.
confirm
(
'
确认要提交吗?
'
,
{
icon
:
3
,
title
:
'
提交操作
'
},
function
(
index
)
{
layer
.
close
(
index
);
if
(
submitType
==
1
)
{
activitiUtil
.
startProcess
(
actKey
,
null
,
function
(
approvalId
)
{
erpOrderUtil
.
submitOrderMationToData
(
id
,
orderTyp
e
,
approvalId
,
callback
);
erpOrderUtil
.
submitOrderMationToData
(
id
,
serviceClassNam
e
,
approvalId
,
callback
);
});
}
else
{
erpOrderUtil
.
submitOrderMationToData
(
id
,
orderTyp
e
,
""
,
callback
);
erpOrderUtil
.
submitOrderMationToData
(
id
,
serviceClassNam
e
,
""
,
callback
);
}
});
},
submitOrderMationToData
:
function
(
id
,
orderTyp
e
,
approvalId
,
callback
)
{
submitOrderMationToData
:
function
(
id
,
serviceClassNam
e
,
approvalId
,
callback
)
{
var
params
=
{
rowId
:
id
,
orderType
:
orderTyp
e
,
serviceClassName
:
serviceClassNam
e
,
approvalId
:
approvalId
};
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
erpcommon006
"
,
params
:
params
,
method
:
"
PUT
"
,
type
:
'
json
'
,
callback
:
function
(
json
)
{
...
...
@@ -148,13 +149,13 @@ var erpOrderUtil = {
* 撤销订单信息
*
* @param processInstanceId 流程实例id
* @param
orderTyp
e 单据类型
* @param
serviceClassNam
e 单据类型
*/
revokeOrderMation
:
function
(
processInstanceId
,
orderTyp
e
,
callback
)
{
revokeOrderMation
:
function
(
processInstanceId
,
serviceClassNam
e
,
callback
)
{
layer
.
confirm
(
'
确认要撤销吗?
'
,
{
icon
:
3
,
title
:
'
撤销操作
'
},
function
(
index
)
{
var
params
=
{
processInstanceId
:
processInstanceId
,
orderType
:
orderTyp
e
serviceClassName
:
serviceClassNam
e
};
AjaxPostUtil
.
request
({
url
:
flowableBasePath
+
"
erpcommon003
"
,
params
:
params
,
type
:
'
json
'
,
method
:
"
PUT
"
,
callback
:
function
(
json
)
{
winui
.
window
.
msg
(
"
撤销成功。
"
,
{
icon
:
1
,
time
:
2000
});
...
...
web/src/main/resources/template/json/activitiNameKey.json
浏览文件 @
caa71656
{
"vehicleManageUse"
:
{
"name"
:
"用车申请"
,
"key"
:
"
../../tpl/vehicleManageUse/vehicleManageUseAdd.htm
l"
},
"sealManageRevert"
:
{
"name"
:
"印章归还"
,
"key"
:
"
../../tpl/sealManageRevert/sealManageRevertAdd.htm
l"
},
"sealManageBorrow"
:
{
"name"
:
"印章借用"
,
"key"
:
"
../../tpl/sealManageBorrow/sealManageBorrowAdd.htm
l"
},
"putIsSalesReturns"
:
{
"name"
:
"销售退货单申请"
,
"key"
:
"
../../tpl/salesreturns/salesreturnsadd.htm
l"
},
"outIsSalesOutlet"
:
{
"name"
:
"销售出库单申请"
,
"key"
:
"
../../tpl/salesoutlet/salesoutletadd.htm
l"
},
"outchaseOrder"
:
{
"name"
:
"销售订单申请"
,
"key"
:
"
../../tpl/salesorder/salesorderadd.htm
l"
},
"putIsRetailReturns"
:
{
"name"
:
"零售退货单申请"
,
"key"
:
"
../../tpl/retailreturns/retailreturnsadd.htm
l"
},
"outIsRetail"
:
{
"name"
:
"零售出库单申请"
,
"key"
:
"
../../tpl/retailoutlet/retailoutletadd.htm
l"
},
"outIsPurchaseReturns"
:
{
"name"
:
"采购退货单申请"
,
"key"
:
"
../../tpl/purchasereturns/purchasereturnsadd.htm
l"
},
"putIsPurchase"
:
{
"name"
:
"采购入库单申请"
,
"key"
:
"
../../tpl/purchaseput/purchaseputadd.htm
l"
},
"purchaseOrder"
:
{
"name"
:
"采购订单申请"
,
"key"
:
"
../../tpl/purchaseorder/purchaseorderadd.htm
l"
},
"proworkLoad"
:
{
"name"
:
"项目工作量审核"
,
"key"
:
"
../../tpl/proworkload/proworkloadadd.htm
l"
},
"proTask"
:
{
"name"
:
"项目任务审核"
,
"key"
:
"
../../tpl/protask/protaskadd.htm
l"
},
"proProject"
:
{
"name"
:
"项目立项审批"
,
"key"
:
"
../../tpl/proproject/proprojectadd.htm
l"
},
"proFile"
:
{
"name"
:
"项目文档审核"
,
"key"
:
"
../../tpl/profile/profileadd.htm
l"
},
"proCostExpense"
:
{
"name"
:
"项目费用报销审核"
,
"key"
:
"
../../tpl/procostexpense/procostexpenseadd.htm
l"
},
"putIsOthers"
:
{
"name"
:
"其他入库单申请"
,
"key"
:
"
../../tpl/otherwarehous/otherwarehousadd.htm
l"
},
"outIsOthers"
:
{
"name"
:
"其他出库单申请"
,
"key"
:
"
../../tpl/otheroutlets/otheroutletsadd.htm
l"
},
"licenceManageRevert"
:
{
"name"
:
"证照归还"
,
"key"
:
"
../../tpl/licenceManageRevert/licenceManageRevertAdd.htm
l"
},
"licenceManageBorrow"
:
{
"name"
:
"证照借用"
,
"key"
:
"
../../tpl/licenceManageBorrow/licenceManageBorrowAdd.htm
l"
},
"crmOpportUnity"
:
{
"name"
:
"商机审核一阶段"
,
"key"
:
"
../../tpl/crmopportunity/crmopportunityadd.htm
l"
},
"myCrmContract"
:
{
"name"
:
"合同审批"
,
"key"
:
"
../../tpl/crmcontractmanage/mycrmcontractadd.htm
l"
},
"conFerenceRoomReserve"
:
{
"name"
:
"会议室预定"
,
"key"
:
"
../../tpl/conFerenceRoomReserve/conFerenceRoomReserveAdd.htm
l"
},
"checkWorkOvertime"
:
{
"name"
:
"加班申请"
,
"key"
:
"
../../tpl/checkWorkOvertime/checkWorkOvertimeAdd.htm
l"
},
"checkWorkLeave"
:
{
"name"
:
"请假申请"
,
"key"
:
"
../../tpl/checkWorkLeave/checkWorkLeaveAdd.htm
l"
},
"checkWorkCancelLeave"
:
{
"name"
:
"销假申请"
,
"key"
:
"
../../tpl/checkWorkCancelLeave/checkWorkCancelLeaveAdd.htm
l"
},
"checkWorkBusinessTrip"
:
{
"name"
:
"出差申请"
,
"key"
:
"
../../tpl/checkWorkBusinessTrip/checkWorkBusinessTripAdd.htm
l"
},
"assetManageUse"
:
{
"name"
:
"资产领用"
,
"key"
:
"
../../tpl/assetManageUse/assetManageUseAdd.htm
l"
},
"assetManageReturn"
:
{
"name"
:
"资产归还"
,
"key"
:
"
../../tpl/assetManageReturn/assetManageReturnAdd.htm
l"
},
"assetManagePurchase"
:
{
"name"
:
"资产采购"
,
"key"
:
"
../../tpl/assetManagePurchase/assetManagePurchaseAdd.htm
l"
},
"assetArticlesUse"
:
{
"name"
:
"用品领用"
,
"key"
:
"
../../tpl/assetArticlesUse/assetArticlesUseAdd.htm
l"
},
"assetArticlesPurchase"
:
{
"name"
:
"用品采购"
,
"key"
:
"
../../tpl/assetArticlesPurchase/assetArticlesPurchaseAdd.htm
l"
},
"vehicleManageUse"
:
{
"name"
:
"用车申请"
,
"key"
:
"
com.skyeye.eve.service.impl.VehicleApplyUseServiceImp
l"
},
"sealManageRevert"
:
{
"name"
:
"印章归还"
,
"key"
:
"
com.skyeye.eve.service.impl.SealApplyRevertServiceImp
l"
},
"sealManageBorrow"
:
{
"name"
:
"印章借用"
,
"key"
:
"
com.skyeye.eve.service.impl.SealApplyBorrowServiceImp
l"
},
"putIsSalesReturns"
:
{
"name"
:
"销售退货单申请"
,
"key"
:
"
com.skyeye.service.impl.SalesReturnsServiceImp
l"
},
"outIsSalesOutlet"
:
{
"name"
:
"销售出库单申请"
,
"key"
:
"
com.skyeye.service.impl.SalesOutLetServiceImp
l"
},
"outchaseOrder"
:
{
"name"
:
"销售订单申请"
,
"key"
:
"
com.skyeye.service.impl.SalesOrderServiceImp
l"
},
"putIsRetailReturns"
:
{
"name"
:
"零售退货单申请"
,
"key"
:
"
com.skyeye.service.impl.RetailReturnsServiceImp
l"
},
"outIsRetail"
:
{
"name"
:
"零售出库单申请"
,
"key"
:
"
com.skyeye.service.impl.RetailOutLetServiceImp
l"
},
"outIsPurchaseReturns"
:
{
"name"
:
"采购退货单申请"
,
"key"
:
"
com.skyeye.service.impl.PurchaseReturnsServiceImp
l"
},
"putIsPurchase"
:
{
"name"
:
"采购入库单申请"
,
"key"
:
"
com.skyeye.service.impl.PurchasePutServiceImp
l"
},
"purchaseOrder"
:
{
"name"
:
"采购订单申请"
,
"key"
:
"
com.skyeye.service.impl.PurchaseOrderServiceImp
l"
},
"proworkLoad"
:
{
"name"
:
"项目工作量审核"
,
"key"
:
"
com.skyeye.service.impl.ProWorkloadServiceImp
l"
},
"proTask"
:
{
"name"
:
"项目任务审核"
,
"key"
:
"
com.skyeye.service.impl.ProTaskServiceImp
l"
},
"proProject"
:
{
"name"
:
"项目立项审批"
,
"key"
:
"
com.skyeye.service.impl.ProProjectServiceImp
l"
},
"proFile"
:
{
"name"
:
"项目文档审核"
,
"key"
:
"
com.skyeye.service.impl.ProFileServiceImp
l"
},
"proCostExpense"
:
{
"name"
:
"项目费用报销审核"
,
"key"
:
"
com.skyeye.service.impl.ProCostExpenseServiceImp
l"
},
"putIsOthers"
:
{
"name"
:
"其他入库单申请"
,
"key"
:
"
com.skyeye.service.impl.OtherWareHousServiceImp
l"
},
"outIsOthers"
:
{
"name"
:
"其他出库单申请"
,
"key"
:
"
com.skyeye.service.impl.OtherOutLetsServiceImp
l"
},
"licenceManageRevert"
:
{
"name"
:
"证照归还"
,
"key"
:
"
com.skyeye.eve.service.impl.LicenceApplyRevertServiceImp
l"
},
"licenceManageBorrow"
:
{
"name"
:
"证照借用"
,
"key"
:
"
com.skyeye.eve.service.impl.LicenceApplyBorrowServiceImp
l"
},
"crmOpportUnity"
:
{
"name"
:
"商机审核一阶段"
,
"key"
:
"
com.skyeye.service.impl.CrmOpportunityServiceImp
l"
},
"myCrmContract"
:
{
"name"
:
"合同审批"
,
"key"
:
"
com.skyeye.service.impl.CrmContractServiceImp
l"
},
"conFerenceRoomReserve"
:
{
"name"
:
"会议室预定"
,
"key"
:
"
com.skyeye.eve.service.impl.ConferenceRoomReserveServiceImp
l"
},
"checkWorkOvertime"
:
{
"name"
:
"加班申请"
,
"key"
:
"
com.skyeye.eve.service.impl.CheckWorkOvertimeServiceImp
l"
},
"checkWorkLeave"
:
{
"name"
:
"请假申请"
,
"key"
:
"
com.skyeye.eve.service.impl.CheckWorkLeaveServiceImp
l"
},
"checkWorkCancelLeave"
:
{
"name"
:
"销假申请"
,
"key"
:
"
com.skyeye.eve.service.impl.CheckWorkCancelLeaveServiceImp
l"
},
"checkWorkBusinessTrip"
:
{
"name"
:
"出差申请"
,
"key"
:
"
com.skyeye.eve.service.impl.CheckWorkBusinessTripServiceImp
l"
},
"assetManageUse"
:
{
"name"
:
"资产领用"
,
"key"
:
"
com.skyeye.eve.service.impl.AssetApplyUseServiceImp
l"
},
"assetManageReturn"
:
{
"name"
:
"资产归还"
,
"key"
:
"
com.skyeye.eve.service.impl.AssetApplyReturnServiceImp
l"
},
"assetManagePurchase"
:
{
"name"
:
"资产采购"
,
"key"
:
"
com.skyeye.eve.service.impl.AssetApplyPurchaseServiceImp
l"
},
"assetArticlesUse"
:
{
"name"
:
"用品领用"
,
"key"
:
"
com.skyeye.eve.service.impl.AssetArticlesApplyUseServiceImp
l"
},
"assetArticlesPurchase"
:
{
"name"
:
"用品采购"
,
"key"
:
"
com.skyeye.eve.service.impl.AssetArticlesApplyPurchaseServiceImp
l"
},
"incomeOrder"
:
{
"name"
:
"财务明细账"
,
"key"
:
"
../../tpl/income/incomeAdd.htm
l"
},
"incomeOrder"
:
{
"name"
:
"财务明细账"
,
"key"
:
"
com.skyeye.service.impl.IncomeServiceImp
l"
},
"bossPersonRequire"
:
{
"name"
:
"人员需求申请"
,
"key"
:
"
../../tpl/bossPersonRequire/bossPersonRequireAdd.htm
l"
},
"bossInterviewRegularWorker"
:
{
"name"
:
"转正申请"
,
"key"
:
"
../../tpl/bossInterviewRegularWorker/bossInterviewRegularWorkerAdd.htm
l"
},
"bossInterviewQuit"
:
{
"name"
:
"离职申请"
,
"key"
:
"
../../tpl/bossInterviewQuit/bossInterviewQuitAdd.htm
l"
},
"bossInterviewJobTransfer"
:
{
"name"
:
"岗位调动申请"
,
"key"
:
"
../../tpl/bossInterviewJobTransfer/bossInterviewJobTransferAdd.htm
l"
}
"bossPersonRequire"
:
{
"name"
:
"人员需求申请"
,
"key"
:
"
com.skyeye.service.impl.BossPersonRequireServiceImp
l"
},
"bossInterviewRegularWorker"
:
{
"name"
:
"转正申请"
,
"key"
:
"
com.skyeye.service.impl.BossInterviewRegularWorkerServiceImp
l"
},
"bossInterviewQuit"
:
{
"name"
:
"离职申请"
,
"key"
:
"
com.skyeye.service.impl.BossInterviewQuitServiceImp
l"
},
"bossInterviewJobTransfer"
:
{
"name"
:
"岗位调动申请"
,
"key"
:
"
com.skyeye.service.impl.BossInterviewJobTransferServiceImp
l"
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录