Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
traffic-front
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxiaoming
traffic-front
Commits
dfcca34c
Commit
dfcca34c
authored
Apr 23, 2019
by
eddie.woo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
去掉workflow老接口
parent
8f6e1f5e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
54 additions
and
54 deletions
+54
-54
tb-ebit-form.ctrl.js
...b/src/main/webapp/app/analysis/table/tb-ebit-form.ctrl.js
+0
-0
cit-layout.ctrl.js
...web/src/main/webapp/app/cit/cit-layout/cit-layout.ctrl.js
+1
-1
cit-report-view.ctrl.js
...pp/app/cit/report/cit-report-view/cit-report-view.ctrl.js
+0
-0
vat-report-view.ctrl.js
...p/common/controls/vat-report-view/vat-report-view.ctrl.js
+0
-0
vatCommonService.js
...rc/main/webapp/app/common/vatservices/vatCommonService.js
+53
-53
No files found.
atms-web/src/main/webapp/app/analysis/table/tb-ebit-form.ctrl.js
View file @
dfcca34c
This diff is collapsed.
Click to expand it.
atms-web/src/main/webapp/app/cit/cit-layout/cit-layout.ctrl.js
View file @
dfcca34c
...
...
@@ -591,7 +591,7 @@ citModule.controller('citLayoutController', ['$scope', '$rootScope', '$location'
function
initStatus
(
dbName
,
id
,
month
)
{
$q
.
all
([
projectService
.
getProjectStatus
(
dbName
,
id
,
month
),
vatWorkflowService
.
getWorkflowDetailByDb
(
dbName
,
month
)
//
vatWorkflowService.getWorkflowDetailByDb(dbName, month)
]).
then
(
function
(
result
)
{
var
statusData
=
result
[
0
].
data
;
var
workflowData
=
result
[
1
].
data
;
...
...
atms-web/src/main/webapp/app/cit/report/cit-report-view/cit-report-view.ctrl.js
View file @
dfcca34c
This diff is collapsed.
Click to expand it.
atms-web/src/main/webapp/app/common/controls/vat-report-view/vat-report-view.ctrl.js
View file @
dfcca34c
This diff is collapsed.
Click to expand it.
atms-web/src/main/webapp/app/common/vatservices/vatCommonService.js
View file @
dfcca34c
...
...
@@ -312,59 +312,59 @@
//数据导入,数据预览,数据整理layout: vat-import-layout.ctl.js
isLayoutMenuShow
:
function
(
dbName
,
month
,
nodeDicKeyValue
,
linkShort
,
menus
)
{
$log
.
debug
(
"start to isLayoutMenuShow"
);
$q
.
all
([
vatWorkflowService
.
getWorkflowDetailByDb
(
dbName
,
month
)]).
then
(
function
(
result
)
{
var
wfData
=
result
[
0
].
data
;
if
(
wfData
.
result
)
{
var
wf
=
wfData
.
data
;
if
(
_
.
isNull
(
wf
)
||
_
.
isUndefined
(
wf
))
{
//当前项目没有配置workflow,就忽略workflow的配置,全部显示
$
.
each
(
menus
,
function
(
index
,
m
)
{
m
.
show
=
true
;
});
}
else
{
var
wfNodesList
=
wf
.
workflowNodeList
;
var
nodeDto
=
_
.
where
(
wfNodesList
,
{
dictionaryKey
:
constant
.
DictionaryDictKey
[
nodeDicKeyValue
]
})[
0
];
if
(
!
_
.
isNull
(
nodeDto
)
&&
!
_
.
isUndefined
(
nodeDto
))
{
if
(
nodeDto
.
isActive
===
false
)
{
//Node不可用,全部隐藏
$
.
each
(
menus
,
function
(
index
,
m
)
{
m
.
show
=
false
;
});
}
else
{
var
taskMenus
=
[];
//存放已经处理过的menu name
$
.
each
(
nodeDto
.
workflowTaskList
,
function
(
index
,
item
)
{
var
menu
=
_
.
where
(
menus
,
{
name
:
enums
.
dictionaryKeyMenusMap
[
item
.
dictionaryKey
]
})[
0
];
if
(
!
_
.
isNull
(
menu
)
&&
!
_
.
isUndefined
(
menu
))
{
menu
.
show
=
item
.
isActive
;
taskMenus
.
push
(
menu
.
name
);
}
});
//没有配置过的Task对应的menu需要隐藏
$
.
each
(
menus
,
function
(
index
,
item
)
{
var
findResult
=
_
.
find
(
taskMenus
,
function
(
n
)
{
return
_
.
isEqual
(
n
,
item
.
name
);
});
if
(
!
findResult
)
{
item
.
show
=
false
;
}
});
}
//上一个节点未完成的话,弹出提示框
var
lastNodeDto
=
_
.
where
(
wfNodesList
,
{
orderIndex
:
nodeDto
.
orderIndex
-
1
})[
0
];
if
(
!
_
.
isNull
(
lastNodeDto
)
&&
!
_
.
isUndefined
(
lastNodeDto
))
{
//debug: only for debug
//lastNodeDto.isDone = false;
if
(
!
lastNodeDto
.
isDone
)
{
SweetAlert
.
warning
(
$translate
.
instant
(
'LastNodeIsNotFinished'
));
}
}
}
else
{
$log
.
debug
(
"nodeDto is undefined"
);
}
}
}
});
//
$q.all([vatWorkflowService.getWorkflowDetailByDb(dbName, month)]).then(function (result) {
//
var wfData = result[0].data;
//
if (wfData.result) {
//
var wf = wfData.data;
//
if (_.isNull(wf) || _.isUndefined(wf)) {//当前项目没有配置workflow,就忽略workflow的配置,全部显示
//
$.each(menus, function (index, m) { m.show = true; });
//
}
//
else {
// var wfNodesList = wf.workflowNodeList;
//
var nodeDto = _.where(wfNodesList, { dictionaryKey: constant.DictionaryDictKey[nodeDicKeyValue] })[0];
//
if (!_.isNull(nodeDto) && !_.isUndefined(nodeDto)) {
//
if (nodeDto.isActive === false) { //Node不可用,全部隐藏
//
$.each(menus, function (index, m) { m.show = false; });
//
}
//
else {
//
var taskMenus = [];//存放已经处理过的menu name
//
$.each(nodeDto.workflowTaskList, function (index, item) {
//
var menu = _.where(menus, { name: enums.dictionaryKeyMenusMap[item.dictionaryKey] })[0];
//
if (!_.isNull(menu) && !_.isUndefined(menu)) {
//
menu.show = item.isActive;
//
taskMenus.push(menu.name);
//
}
//
});
//
//
//没有配置过的Task对应的menu需要隐藏
//
$.each(menus, function (index, item) {
//
var findResult = _.find(taskMenus, function (n) {
//
return _.isEqual(n, item.name);
//
});
//
//
if (!findResult) {
//
item.show = false;
//
}
//
});
//
}
//
//
//上一个节点未完成的话,弹出提示框
//
var lastNodeDto = _.where(wfNodesList, { orderIndex: nodeDto.orderIndex - 1 })[0];
//
if (!_.isNull(lastNodeDto) && !_.isUndefined(lastNodeDto)) {
//
//debug: only for debug
//
//lastNodeDto.isDone = false;
//
if (!lastNodeDto.isDone) {
//
SweetAlert.warning($translate.instant('LastNodeIsNotFinished'));
//
}
//
}
//
}
//
else {
//
//
$log.debug("nodeDto is undefined");
//
}
//
}
//
}
//
});
$log
.
debug
(
"menus before return"
);
$log
.
debug
(
menus
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment