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
128e337d
Commit
128e337d
authored
Apr 28, 2019
by
zhkwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1、总分机构分配比例;2、发票记录导出模板;
parent
a6abc899
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
7 deletions
+11
-7
CitReportController.java
...java/pwc/taxtech/atms/controller/CitReportController.java
+1
-1
CitReportServiceImpl.java
...a/pwc/taxtech/atms/service/impl/CitReportServiceImpl.java
+0
-0
invoice_record.xlsx
...src/main/resources/vat_excel_template/invoice_record.xlsx
+0
-0
cit-distribution-table.ctrl.js
...ion/cit-distribution-table/cit-distribution-table.ctrl.js
+10
-6
No files found.
atms-api/src/main/java/pwc/taxtech/atms/controller/CitReportController.java
View file @
128e337d
...
...
@@ -85,7 +85,7 @@ public class CitReportController {
try
{
apiResultDto
.
setCode
(
1
);
apiResultDto
.
setMessage
(
"生成成功"
);
apiResultDto
.
setData
(
citReportService
.
gene
rateTotalBranchOrgDisTable
(
citDistributionDto
.
getProjectId
()));
apiResultDto
.
setData
(
citReportService
.
gene
TotalBranchOrgDT
(
citDistributionDto
.
getProjectId
()));
return
apiResultDto
;
}
catch
(
Exception
e
){
e
.
printStackTrace
();
...
...
atms-api/src/main/java/pwc/taxtech/atms/service/impl/CitReportServiceImpl.java
View file @
128e337d
This diff is collapsed.
Click to expand it.
atms-api/src/main/resources/vat_excel_template/invoice_record.xlsx
View file @
128e337d
No preview for this file type
atms-web/src/main/webapp/app/cit/reduction/cit-distribution-table/cit-distribution-table.ctrl.js
View file @
128e337d
...
...
@@ -180,11 +180,15 @@
$scope
.
startCalculateData
=
function
()
{
citReportService
.
generateDistributionTable
(
$scope
.
queryParams
).
success
(
function
(
data
)
{
$scope
.
totalBusinessIncome
=
data
.
data
.
totalBusinessIncome
;
$scope
.
totalEmployeeRemuneration
=
data
.
data
.
totalEmployeeRemuneration
;
$scope
.
totalTotalAssets
=
data
.
data
.
totalTotalAssets
;
loadJournalEntryDataFromDB
();
if
(
data
.
code
!=
0
)
{
$scope
.
totalBusinessIncome
=
data
.
data
.
totalBusinessIncome
;
$scope
.
totalEmployeeRemuneration
=
data
.
data
.
totalEmployeeRemuneration
;
$scope
.
totalTotalAssets
=
data
.
data
.
totalTotalAssets
;
loadJournalEntryDataFromDB
();
SweetAlert
.
success
(
$translate
.
instant
(
'ImportSuccess'
))
}
else
{
SweetAlert
.
error
(
$translate
.
instant
(
'PleaseContactAdministrator'
));
}
// if(status===204){
// SweetAlert.warning("没有数据可以下载");
// return;
...
...
@@ -264,7 +268,7 @@
{
caption
:
$translate
.
instant
(
'DistributionRatio'
),
dataField
:
"distributionRatio"
,
format
:
{
type
:
'
fixedPoi
nt'
,
precision
:
2
},
format
:
{
type
:
'
perce
nt'
,
precision
:
2
},
width
:
200
}
],
...
...
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