Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
manager
Project
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
reyun
manager
Commits
5b38e7ab
Commit
5b38e7ab
authored
Jul 03, 2020
by
kangxiaoshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
9c558399
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ContractController.java
src/main/java/common/controller/ContractController.java
+3
-3
No files found.
src/main/java/common/controller/ContractController.java
View file @
5b38e7ab
...
...
@@ -104,7 +104,7 @@ public class ContractController {
for
(
Contract
c
:
contractList
)
{
sb
.
append
(
c
.
getDs
()).
append
(
","
).
append
(
c
.
getContractCode
()).
append
(
","
)
.
append
(
c
.
getEmail
()).
append
(
","
)
.
append
(
c
.
getEmail
()
==
null
?
"无"
:
c
.
getEmail
()
).
append
(
","
)
.
append
(
c
.
getMyBodyName
()).
append
(
","
)
.
append
(
c
.
getCustomerBody
()).
append
(
","
)
.
append
(
c
.
getTradeName
()).
append
(
","
)
...
...
@@ -115,13 +115,13 @@ public class ContractController {
.
append
(
c
.
getMoney
()).
append
(
","
)
.
append
(
CONTRACT_STATUS
.
get
(
c
.
getContractType
())).
append
(
","
)
.
append
(
CONTRACT_STATUS
.
get
(
c
.
getStatus
())).
append
(
","
)
.
append
(
CONTRACT_STATUS
.
get
(
c
.
getBackStatus
()
+
"_back"
)).
append
(
","
)
.
append
(
CONTRACT_STATUS
.
get
(
c
.
getBackStatus
()
+
"_back"
)).
append
(
","
)
.
append
(
c
.
getRelationCode
()
==
null
?
""
:
c
.
getRelationCode
()).
append
(
","
)
.
append
(
"\r\n"
);
}
}
String
fileName
=
"合同管理_"
+
new
DateTime
(
startDate
).
toString
(
"yyyyMMdd"
)+
"_"
+
new
DateTime
(
endDate
).
toString
(
"yyyyMMdd"
)
String
fileName
=
"合同管理_"
+
new
DateTime
(
startDate
).
toString
(
"yyyyMMdd"
)
+
"_"
+
new
DateTime
(
endDate
).
toString
(
"yyyyMMdd"
)
+
".csv"
;
this
.
exportWrite
(
fileName
,
sb
.
toString
(),
"合同管理"
,
response
);
...
...
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