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
3b897680
Commit
3b897680
authored
Nov 12, 2018
by
neo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DEV] fixed parameter for appravl skip
parent
10cf66cf
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
6 deletions
+22
-6
ApprovalTask.java
...main/java/pwc/taxtech/atms/dto/approval/ApprovalTask.java
+0
-1
vat-report-view.ctrl.js
...p/common/controls/vat-report-view/vat-report-view.ctrl.js
+16
-0
vat-report-view.js
...pp/app/common/controls/vat-report-view/vat-report-view.js
+2
-1
app-approve.ctrl.js
...main/webapp/app/framework/app-approve/app-approve.ctrl.js
+4
-4
No files found.
atms-api/src/main/java/pwc/taxtech/atms/dto/approval/ApprovalTask.java
View file @
3b897680
...
...
@@ -3,7 +3,6 @@ package pwc.taxtech.atms.dto.approval;
import
lombok.Getter
;
import
lombok.Setter
;
import
org.activiti.engine.task.Task
;
import
pwc.taxtech.atms.controller.ApprovalController
;
@Getter
@Setter
...
...
atms-web/src/main/webapp/app/common/controls/vat-report-view/vat-report-view.ctrl.js
View file @
3b897680
...
...
@@ -2539,11 +2539,27 @@
};
$scope
.
commitApprove
=
function
(){
SweetAlert
.
swal
({
title
:
"warning!"
,
text
:
$translate
.
instant
(
'报表提审后不能手工录入和重新生成!'
),
type
:
"warning"
,
showCancelButton
:
true
,
confirmButtonColor
:
"#DD6B55"
,
confirmButtonText
:
$translate
.
instant
(
'Yes'
),
cancelButtonText
:
$translate
.
instant
(
'No'
),
closeOnConfirm
:
true
,
closeOnCancel
:
true
},
function
(
isConfirm
)
{
if
(
isConfirm
)
{
var
approveParam
=
{};
approveParam
.
projectId
=
vatSessionService
.
project
.
id
;
approveParam
.
periodDate
=
vatSessionService
.
project
.
periodDate
;
vatApproveService
.
commitNewApproval
(
approveParam
);
}
});
}
$scope
.
doApprove
=
function
(){
$
(
"#ApprovalComment"
).
modal
(
'show'
);
...
...
atms-web/src/main/webapp/app/common/controls/vat-report-view/vat-report-view.js
View file @
3b897680
...
...
@@ -14,7 +14,8 @@
isDocumentList
:
'='
,
serviceType
:
'='
,
initRow
:
'=?'
,
initCol
:
'=?'
initCol
:
'=?'
,
instanceId
:
'='
},
controller
:
'VatReportViewController'
,
link
:
function
(
$scope
,
$ele
,
$attr
)
{
...
...
atms-web/src/main/webapp/app/framework/app-approve/app-approve.ctrl.js
View file @
3b897680
...
...
@@ -609,10 +609,10 @@
vatApproveService
.
getApprovalTemplateInfo
(
approvalInfo
.
templateIds
.
split
(
","
)[
0
]).
success
(
function
(
template
){
$state
.
go
(
'vat.generateReport.reportView'
,
{
reportI
d
:
approvalInfo
.
reportIds
.
split
(
","
)[
0
],
template
I
d
:
template
.
id
,
templateN
ame
:
template
.
name
,
template
C
ode
:
template
.
code
i
d
:
approvalInfo
.
reportIds
.
split
(
","
)[
0
],
template
i
d
:
template
.
id
,
n
ame
:
template
.
name
,
template
c
ode
:
template
.
code
});
});
});
...
...
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