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
de480ad9
Commit
de480ad9
authored
Mar 07, 2019
by
gary
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev_mysql' into dev_mysql
parents
532ec1d0
b8d188a2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
28 additions
and
8 deletions
+28
-8
EbsApiServiceImplTest.java
.../pwc/taxtech/atms/service/impl/EbsApiServiceImplTest.java
+1
-1
ReportDto.java
atms-dao/src/main/java/pwc/taxtech/atms/dpo/ReportDto.java
+9
-0
TemplateExtendsMapper.xml
...es/pwc/taxtech/atms/dao/extends/TemplateExtendsMapper.xml
+5
-2
constant.js
atms-web/src/main/webapp/app/common/utils/constant.js
+5
-3
enums.js
atms-web/src/main/webapp/app/common/utils/enums.js
+7
-1
vat-report-layout.ctrl.js
...pp/vat/report/vat-report-layout/vat-report-layout.ctrl.js
+0
-0
vat-report-layout.html
...p/app/vat/report/vat-report-layout/vat-report-layout.html
+1
-1
No files found.
atms-api/src/test/java/pwc/taxtech/atms/service/impl/EbsApiServiceImplTest.java
View file @
de480ad9
...
...
@@ -30,7 +30,7 @@ public class EbsApiServiceImplTest extends CommonIT {
}
@Test
public
void
queryRemoteServerThenUpdateOrg
(){
List
<
OrganizationQueryDto
>
items
=
new
ArrayList
<>
();
List
<
OrganizationQueryDto
>
items
=
new
ArrayList
();
for
(
int
i
=
0
;
i
<
2
;
i
++){
OrganizationQueryDto
dto
=
new
OrganizationQueryDto
();
dto
.
setTaxPayerNumber
(
"sadsafsdf3232"
);
...
...
atms-dao/src/main/java/pwc/taxtech/atms/dpo/ReportDto.java
View file @
de480ad9
...
...
@@ -13,6 +13,15 @@ public class ReportDto {
private
Date
createTime
;
private
String
updater
;
private
Date
updateTime
;
private
Integer
reportType
;
public
Integer
getReportType
()
{
return
reportType
;
}
public
void
setReportType
(
Integer
reportType
)
{
this
.
reportType
=
reportType
;
}
public
String
getId
()
{
return
id
;
...
...
atms-dao/src/main/resources/pwc/taxtech/atms/dao/extends/TemplateExtendsMapper.xml
View file @
de480ad9
...
...
@@ -103,6 +103,7 @@
<result
column=
"TEMPLATE_ID"
jdbcType=
"INTEGER"
property=
"templateId"
/>
<result
column=
"TEMPLATE_NAME"
jdbcType=
"VARCHAR"
property=
"templateName"
/>
<result
column=
"TEMPLATE_CODE"
jdbcType=
"VARCHAR"
property=
"templateCode"
/>
<result
column=
"REPORT_TYPE"
jdbcType=
"INTEGER"
property=
"reportType"
/>
</resultMap>
<!--TODO: 考虑项目库表迁移-->
...
...
@@ -112,13 +113,15 @@
D.period AS PERIOD,
C.id AS TEMPLATE_ID,
C.name AS TEMPLATE_NAME,
C.code AS TEMPLATE_CODE
C.code AS TEMPLATE_CODE,
C.reportType AS REPORT_TYPE
FROM
(
SELECT
A.id as ID,
A.name AS NAME,
A.code AS CODE
A.code AS CODE,
A.report_type AS reportType
FROM
template A
WHERE
...
...
atms-web/src/main/webapp/app/common/utils/constant.js
View file @
de480ad9
...
...
@@ -54,9 +54,11 @@ constant.payTaxTypeList = [
{
value
:
2
,
name
:
'小规模纳税人'
}];
constant
.
citReportTypeList
=
[
{
value
:
1
,
name
:
'纳税申报表'
},
{
value
:
2
,
name
:
'季度预缴表'
},
{
value
:
3
,
name
:
'工作底稿'
}];
{
value
:
1
,
name
:
'TaxReturnType'
,
orderIndex
:
2
},
{
value
:
2
,
name
:
'QuarterlyFilingReturnType'
,
orderIndex
:
3
},
{
value
:
3
,
name
:
'WorkingPaperType'
,
orderIndex
:
1
},
{
value
:
4
,
name
:
'DocumentListType'
,
orderIndex
:
4
},
{
value
:
5
,
name
:
'OtherTaxes'
,
orderIndex
:
5
}];
constant
.
cfReportTypeList
=
[
{
value
:
1
,
name
:
'企业所得税预算'
},
...
...
atms-web/src/main/webapp/app/common/utils/enums.js
View file @
de480ad9
...
...
@@ -129,7 +129,13 @@ commonModule.factory('enums', ['$translate', function ($translate) {
CF
:
"11"
,
AssetsManage
:
"12"
},
reportType
:
{
taxReturn
:
1
,
prepay
:
2
,
workingPaper
:
3
,
documentList
:
4
,
others
:
5
},
//发票类型
invoiceType
:
{
VATInvoice
:
1
,
...
...
atms-web/src/main/webapp/app/vat/report/vat-report-layout/vat-report-layout.ctrl.js
View file @
de480ad9
This diff is collapsed.
Click to expand it.
atms-web/src/main/webapp/app/vat/report/vat-report-layout/vat-report-layout.html
View file @
de480ad9
...
...
@@ -16,7 +16,7 @@
<a
ui-sref-active=
"active"
data-template-id=
"{{menu.id}}"
ng-class=
"{'active':selectedTemplateId===menu.id}"
ui-sref=
".reportView({ id: menu.reportId, templateid: menu.id, name:menu.name,templatecode:menu.code })"
ng-bind-html=
"::menu.name"
></a>
ng-bind-html=
"::menu.
code+'_'+menu.
name"
></a>
</div>
</div>
</li>
...
...
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