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
8d5802cb
Commit
8d5802cb
authored
Nov 28, 2018
by
sherlock
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wpsr
parent
f3481ef3
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
60 additions
and
10 deletions
+60
-10
FormulaDataSourceType.java
...wc/taxtech/atms/constant/enums/FormulaDataSourceType.java
+4
-0
ReportServiceImpl.java
.../pwc/taxtech/atms/vat/service/impl/ReportServiceImpl.java
+9
-6
WPSR.java
.../taxtech/atms/vat/service/impl/report/functions/WPSR.java
+1
-1
tax-report-cell-detail-modal.ctrl.js
...rt-cell-detail-modal/tax-report-cell-detail-modal.ctrl.js
+45
-2
enums.js
atms-web/src/main/webapp/app/common/utils/enums.js
+1
-1
No files found.
atms-api/src/main/java/pwc/taxtech/atms/constant/enums/FormulaDataSourceType.java
View file @
8d5802cb
...
...
@@ -56,10 +56,12 @@ public enum FormulaDataSourceType {
TrialBalanceSource
(
11
),
//QMYESource(12),
ModelSource
(
13
),
WPSRSource
(
33
),
TrialBalance
(
20
),
AssetListSource
(
21
);
// FSESource(14),
private
Integer
code
;
FormulaDataSourceType
(
Integer
code
)
{
...
...
@@ -98,6 +100,8 @@ public enum FormulaDataSourceType {
return
FormulaDataSourceType
.
TrialBalance
;
case
21
:
return
FormulaDataSourceType
.
AssetListSource
;
case
33
:
return
FormulaDataSourceType
.
WPSRSource
;
default
:
return
FormulaDataSourceType
.
Other
;
}
...
...
atms-api/src/main/java/pwc/taxtech/atms/vat/service/impl/ReportServiceImpl.java
View file @
8d5802cb
...
...
@@ -694,13 +694,16 @@ public class ReportServiceImpl {
if
(
z
.
getItem2
().
getItems
()
!=
null
&&
!
z
.
getItem2
().
getItems
().
isEmpty
()
&&
z
.
getItem2
().
getItems
().
get
(
0
).
contains
(
"tag"
))
{
z
.
getItem2
().
getItems
().
forEach
(
m
->
{
ReportCellDataSourceDto
dto
=
JSON
.
parseObject
(
m
,
ReportCellDataSourceDto
.
class
);
PeriodTemplateExample
periodTemplateExample1
=
new
PeriodTemplateExample
();
periodTemplateExample1
.
createCriteria
().
andTemplateIdEqualTo
(
a
.
getReportTemplateId
())
.
andPeriodEqualTo
(
report
.
getPeriod
());
Optional
<
PeriodTemplate
>
optional
=
periodTemplateMapper
.
selectByExample
(
periodTemplateExample1
).
stream
().
findFirst
();
if
(
optional
.
isPresent
()){
dto
.
setReportName
(
optional
.
get
().
getName
());
if
(
dto
!=
null
&&
dto
.
getReportTemplateId
()
!=
null
&&
!
Pattern
.
compile
(
"\\D"
).
matcher
(
dto
.
getReportTemplateId
()).
find
()){
PeriodTemplateExample
periodTemplateExample1
=
new
PeriodTemplateExample
();
periodTemplateExample1
.
createCriteria
().
andTemplateIdEqualTo
(
Long
.
parseLong
(
dto
.
getReportTemplateId
()))
.
andPeriodEqualTo
(
report
.
getPeriod
());
Optional
<
PeriodTemplate
>
optional
=
periodTemplateMapper
.
selectByExample
(
periodTemplateExample1
).
stream
().
findFirst
();
if
(
optional
.
isPresent
()){
dto
.
setReportName
(
optional
.
get
().
getName
());
}
}
dataSourceDtoList
.
add
(
dto
);
});
}
else
...
...
atms-api/src/main/java/pwc/taxtech/atms/vat/service/impl/report/functions/WPSR.java
View file @
8d5802cb
...
...
@@ -127,7 +127,7 @@ public class WPSR extends FunctionBase implements FreeRefFunction {
dto
.
setColumnName
(
""
);
dto
.
setRowName
(
""
);
dto
.
setReportName
(
ec
.
getWorkbook
().
getSheetName
(
ec
.
getSheetIndex
()));
dto
.
setType
(
FormulaDataSourceType
.
TrialBalance
Source
.
getCode
());
dto
.
setType
(
FormulaDataSourceType
.
WPSR
Source
.
getCode
());
Long
dataSourceId
=
saveDataSource
(
ec
,
Lists
.
newArrayList
(
dto
),
FormulaDataSourceDetailType
.
InputInvoiceDataSourceDto
,
val
,
formulaContext
.
getPeriod
(),
formulaContext
.
getReportTemplateGroupId
(),
formulaContext
.
getProjectId
());
saveFormulaBlock
(
formulaContext
.
getPeriod
(),
ec
,
formulaExpression
,
val
,
dataSourceId
,
...
...
atms-web/src/main/webapp/app/common/controls/tax-report-cell-detail-modal/tax-report-cell-detail-modal.ctrl.js
View file @
8d5802cb
...
...
@@ -767,8 +767,6 @@
return
'贷方发生'
;
}
else
if
(
formula
.
indexOf
(
'JFFS'
)
>
-
1
){
return
'借方发生'
;
}
else
if
(
formula
.
indexOf
(
'WPSR'
)
>
-
1
){
return
'WPSR'
;
}
return
''
;
},
...
...
@@ -799,6 +797,48 @@
}
];
break
;
case
enums
.
formulaDataSourceType
.
WPSR
:
//平衡表数据源
dataGridColumns
=
[
{
calculateCellValue
:
function
(){
return
$scope
.
projectPeriod
},
// dataField: 'projectPeriod',
caption
:
$translate
.
instant
(
'InvoiceQJ'
),
alignment
:
'center'
,
width
:
'10%'
},
{
calculateCellValue
:
function
(){
return
'WPSR'
;
},
// dataField: 'type',
caption
:
$translate
.
instant
(
'类型'
),
alignment
:
'center'
,
width
:
'30%'
},
{
calculateCellValue
:
function
(){
return
''
;
},
// dataField: 'description',
caption
:
$translate
.
instant
(
'描述'
),
alignment
:
'center'
,
width
:
'30%'
},
{
calculateCellValue
:
function
(){
return
$scope
.
detail
.
cellInfo
.
money
;
},
// dataField: 'value',
caption
:
$translate
.
instant
(
'数值'
),
alignment
:
'center'
,
width
:
'30%'
}
];
break
;
case
enums
.
formulaDataSourceType
.
InputInvoice
:
//进项数据源
dataGridColumns
=
[
...
...
@@ -2105,6 +2145,9 @@
case
enums
.
formulaDataSourceType
.
OutputInvoice
:
$scope
.
detail
.
dataGridSourceBind
=
[
$scope
.
detail
.
dataGridSource
[
0
]];
break
;
case
enums
.
formulaDataSourceType
.
WPSR
:
$scope
.
detail
.
dataGridSourceBind
=
[
$scope
.
detail
.
dataGridSource
[
0
]];
break
;
case
enums
.
formulaDataSourceType
.
TrialBalanceSource
:
$scope
.
detail
.
dataGridSourceBind
=
[
$scope
.
detail
.
dataGridSource
[
0
]];
break
;
...
...
atms-web/src/main/webapp/app/common/utils/enums.js
View file @
8d5802cb
...
...
@@ -459,7 +459,7 @@ commonModule.factory('enums', ['$translate', function ($translate) {
Special
:
19
,
BSPL
:
20
,
summary
:
100
WPSR
:
33
},
...
...
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