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
8605405b
Commit
8605405b
authored
Nov 12, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DEv] fixed some filed not see ok
parent
fecfab64
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
ApprovalService.java
...va/pwc/taxtech/atms/vat/service/impl/ApprovalService.java
+1
-1
app-approve.ctrl.js
...main/webapp/app/framework/app-approve/app-approve.ctrl.js
+13
-2
No files found.
atms-api/src/main/java/pwc/taxtech/atms/vat/service/impl/ApprovalService.java
View file @
8605405b
...
...
@@ -152,7 +152,7 @@ public class ApprovalService {
taskService
.
complete
(
task
.
getId
(),
map
);
pa
.
setId
(
uuid
);
pa
.
setApprovalBy
(
"Admin"
);
pa
.
setApprovalBy
(
authUserHelper
.
getCurrentUserId
()
==
null
?
"Admin"
:
authUserHelper
.
getCurrentUserId
()
);
pa
.
setApprovalTime
(
new
Date
());
pa
.
setApprovalResualt
(
comment
);
periodApproveMapper
.
updateByPrimaryKeySelective
(
pa
);
...
...
atms-web/src/main/webapp/app/framework/app-approve/app-approve.ctrl.js
View file @
8605405b
...
...
@@ -586,9 +586,20 @@
{
caption
:
'期间'
,
width
:
'7%'
,
dataField
:
"period"
},
{
caption
:
'提审人'
,
width
:
'10%'
,
dataField
:
"createBy"
},
{
caption
:
'审批人'
,
width
:
'10%'
,
dataField
:
"approvalBy"
},
{
caption
:
'审批状态'
,
width
:
'10%'
,
dataField
:
"status"
},
{
caption
:
'审批状态'
,
width
:
'10%'
,
calculateCellValue
:
function
(
data
)
{
if
(
data
.
status
==
'disagreed'
){
return
'驳回'
;
}
else
if
(
data
.
status
==
'agreed'
){
return
'通过'
;
}
else
if
(
data
.
status
==
'committed'
){
return
'审核中'
;
}
}
},
{
caption
:
'审批意见'
,
width
:
'15%'
,
dataField
:
"approvalResult"
},
{
caption
:
'创建时间'
,
width
:
'7.5%'
,
dataField
:
"createTime"
}
{
caption
:
'提审时间'
,
width
:
'7.5%'
,
dataField
:
"createTime"
},
{
caption
:
'审批时间'
,
width
:
'7.5%'
,
dataField
:
"approvalTime"
}
],
onRowClick
:
function
(
e
)
{
$scope
.
goToService
(
e
.
data
);
...
...
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