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
66477505
Commit
66477505
authored
Apr 03, 2019
by
chase
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge 档案管理
parent
5af99a18
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
31 additions
and
15 deletions
+31
-15
TaxDocumentDto.java
...pi/src/main/java/pwc/taxtech/atms/dto/TaxDocumentDto.java
+15
-5
TaxDocumentServiceImpl.java
...pwc/taxtech/atms/service/impl/TaxDocumentServiceImpl.java
+8
-3
TaxDocumentExample.java
...main/java/pwc/taxtech/atms/entity/TaxDocumentExample.java
+0
-0
infrastructure.json
.../main/webapp/app-resources/i18n/zh-CN/infrastructure.json
+1
-0
systemConfiguration.json
.../webapp/app-resources/i18n/zh-CN/systemConfiguration.json
+1
-1
tax-document-list.ctrl.js
...ocumentManage/tax-document-list/tax-document-list.ctrl.js
+0
-0
tax-document-list.html
...axDocumentManage/tax-document-list/tax-document-list.html
+6
-6
No files found.
atms-api/src/main/java/pwc/taxtech/atms/dto/TaxDocumentDto.java
View file @
66477505
...
@@ -53,7 +53,9 @@ public class TaxDocumentDto {
...
@@ -53,7 +53,9 @@ public class TaxDocumentDto {
private
String
physicalIndexNumber
;
//实物索引号
private
String
physicalIndexNumber
;
//实物索引号
private
Integer
ownTime
;
//所属期间
private
Integer
ownBeginTime
;
//所属期间
private
Integer
ownEndTime
;
//所属期间
private
Integer
auditStatus
;
//审核状态
private
Integer
auditStatus
;
//审核状态
...
@@ -215,12 +217,20 @@ public class TaxDocumentDto {
...
@@ -215,12 +217,20 @@ public class TaxDocumentDto {
this
.
companyId
=
companyId
;
this
.
companyId
=
companyId
;
}
}
public
Integer
getOwnTime
()
{
public
Integer
getOwnBeginTime
()
{
return
ownTime
;
return
ownBeginTime
;
}
public
void
setOwnBeginTime
(
Integer
ownBeginTime
)
{
this
.
ownBeginTime
=
ownBeginTime
;
}
public
Integer
getOwnEndTime
()
{
return
ownEndTime
;
}
}
public
void
setOwn
Time
(
Integer
own
Time
)
{
public
void
setOwn
EndTime
(
Integer
ownEnd
Time
)
{
this
.
own
Time
=
own
Time
;
this
.
own
EndTime
=
ownEnd
Time
;
}
}
public
String
getCompanyName
()
{
public
String
getCompanyName
()
{
...
...
atms-api/src/main/java/pwc/taxtech/atms/service/impl/TaxDocumentServiceImpl.java
View file @
66477505
...
@@ -105,9 +105,13 @@ public class TaxDocumentServiceImpl {
...
@@ -105,9 +105,13 @@ public class TaxDocumentServiceImpl {
if
(
null
!=
taxDocumentDto
.
getFileEndTTime
())
{
if
(
null
!=
taxDocumentDto
.
getFileEndTTime
())
{
criteria
.
andFileTimeLessThanOrEqualTo
(
taxDocumentDto
.
getFileEndTTime
());
criteria
.
andFileTimeLessThanOrEqualTo
(
taxDocumentDto
.
getFileEndTTime
());
}
}
//所属时间 ownTime
//所属開始时间 ownBeginTime
if
(
null
!=
taxDocumentDto
.
getOwnTime
())
{
if
(
null
!=
taxDocumentDto
.
getOwnBeginTime
())
{
criteria
.
andOwnTimeEqualTo
(
taxDocumentDto
.
getOwnTime
());
criteria
.
andOwnTimeGreaterThanOrEqualTo
(
taxDocumentDto
.
getOwnBeginTime
());
}
//所属結束时间 ownEndTime
if
(
null
!=
taxDocumentDto
.
getOwnEndTime
())
{
criteria
.
andOwnTimeLessThanOrEqualTo
(
taxDocumentDto
.
getOwnEndTime
());
}
}
//档案名称 fileName
//档案名称 fileName
if
(
StringUtils
.
isNotBlank
(
taxDocumentDto
.
getFileName
()))
{
if
(
StringUtils
.
isNotBlank
(
taxDocumentDto
.
getFileName
()))
{
...
@@ -200,6 +204,7 @@ public class TaxDocumentServiceImpl {
...
@@ -200,6 +204,7 @@ public class TaxDocumentServiceImpl {
taxDocument
.
setCreator
(
authUserHelper
.
getCurrentAuditor
().
get
());
taxDocument
.
setCreator
(
authUserHelper
.
getCurrentAuditor
().
get
());
taxDocument
.
setCreatorId
(
authUserHelper
.
getCurrentUserId
());
taxDocument
.
setCreatorId
(
authUserHelper
.
getCurrentUserId
());
taxDocument
.
setUploadTime
(
new
Date
());
taxDocument
.
setUploadTime
(
new
Date
());
taxDocument
.
setAuditStatus
(
0
);
taxDocument
.
setYearRedundancy
(
Calendar
.
getInstance
().
get
(
Calendar
.
YEAR
));
taxDocument
.
setYearRedundancy
(
Calendar
.
getInstance
().
get
(
Calendar
.
YEAR
));
//根据公司Id 设置业务线
//根据公司Id 设置业务线
String
businessLine
=
organizationService
.
queryBusinessByCompanyId
(
taxDocument
.
getCompanyId
());
String
businessLine
=
organizationService
.
queryBusinessByCompanyId
(
taxDocument
.
getCompanyId
());
...
...
atms-dao/src/main/java/pwc/taxtech/atms/entity/TaxDocumentExample.java
View file @
66477505
This diff is collapsed.
Click to expand it.
atms-web/src/main/webapp/app-resources/i18n/zh-CN/infrastructure.json
View file @
66477505
...
@@ -236,6 +236,7 @@
...
@@ -236,6 +236,7 @@
"MessagePushObject"
:
"消息推送对象"
,
"MessagePushObject"
:
"消息推送对象"
,
"WorkFlowCode"
:
"流程编号"
,
"WorkFlowCode"
:
"流程编号"
,
"CreatedTime"
:
"创建时间"
,
"CreatedTime"
:
"创建时间"
,
"UpdateTime"
:
"更新时间"
,
"HighPriority"
:
"高级"
,
"HighPriority"
:
"高级"
,
"MediumPriority"
:
"中级"
,
"MediumPriority"
:
"中级"
,
"LowPriority"
:
"低级"
,
"LowPriority"
:
"低级"
,
...
...
atms-web/src/main/webapp/app-resources/i18n/zh-CN/systemConfiguration.json
View file @
66477505
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
"DefaultTaxTypeAndReport"
:
"默认纳税类型及报表:"
,
"DefaultTaxTypeAndReport"
:
"默认纳税类型及报表:"
,
"DeleteKeyValueConfiguration"
:
"删除关键数据"
,
"DeleteKeyValueConfiguration"
:
"删除关键数据"
,
"Description"
:
"描述:"
,
"Description"
:
"描述:"
,
"DescriptionWithOutColon"
:
"
描述
"
,
"DescriptionWithOutColon"
:
"
说明
"
,
"DirectionDifferent"
:
"借贷方向不一致"
,
"DirectionDifferent"
:
"借贷方向不一致"
,
"EnterpriceAccountMapping"
:
"自动对应"
,
"EnterpriceAccountMapping"
:
"自动对应"
,
"EtsSubjectNameCol"
:
"对应企业科目"
,
"EtsSubjectNameCol"
:
"对应企业科目"
,
...
...
atms-web/src/main/webapp/app/taxDocumentManage/tax-document-list/tax-document-list.ctrl.js
View file @
66477505
This diff is collapsed.
Click to expand it.
atms-web/src/main/webapp/app/taxDocumentManage/tax-document-list/tax-document-list.html
View file @
66477505
...
@@ -418,12 +418,12 @@
...
@@ -418,12 +418,12 @@
<!--ng-model="queryFieldModel.Duration"/>-->
<!--ng-model="queryFieldModel.Duration"/>-->
<input
type=
'text'
placeholder=
"From"
<input
type=
'text'
placeholder=
"From"
date-time-picker
class=
"form-control TDL-query-val-multi"
date-time-picker
class=
"form-control TDL-query-val-multi"
data-date-format=
"yyyy
/mm/dd
"
ng-model=
"queryFieldModel.ownBeginTime"
data-date-format=
"yyyy
mm
"
ng-model=
"queryFieldModel.ownBeginTime"
data-min-view-mode=
"
0
"
/>
data-min-view-mode=
"
1
"
/>
<input
type=
'text'
placeholder=
"To"
<input
type=
'text'
placeholder=
"To"
date-time-picker
class=
"form-control TDL-query-val-multi"
date-time-picker
class=
"form-control TDL-query-val-multi"
data-date-format=
"yyyy
/mm/dd
"
ng-model=
"queryFieldModel.ownEndTime"
data-date-format=
"yyyy
mm
"
ng-model=
"queryFieldModel.ownEndTime"
data-min-view-mode=
"
0
"
/>
data-min-view-mode=
"
1
"
/>
<!--<input type="text" class="form-control radius3" id="period-picker2"/>-->
<!--<input type="text" class="form-control radius3" id="period-picker2"/>-->
</div>
</div>
...
@@ -1407,8 +1407,8 @@
...
@@ -1407,8 +1407,8 @@
<span>
{{item.fileName}}
</span>
<span>
{{item.fileName}}
</span>
</li>
</li>
</ul>
</ul>
<p
ng-if=
"multiUploadErrorItems.length"
>
{{multiUploadErrorItems.length}}{{'UploadFailCount'|translate}}
</p>
<p
class=
"text-danger"
ng-if=
"multiUploadErrorItems.length"
>
{{multiUploadErrorItems.length}}{{'UploadFailCount'|translate}}
</p>
<ul>
<ul
class=
"text-danger"
>
<li
ng-repeat=
"item in multiUploadErrorItems"
>
<li
ng-repeat=
"item in multiUploadErrorItems"
>
<span>
{{item.fileName}}
</span>
<span>
{{item.fileName}}
</span>
</li>
</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