Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
tianjin-cement
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
竹天卫
tianjin-cement
Commits
b7ccdb33
Commit
b7ccdb33
authored
Nov 03, 2020
by
竹天卫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导出委托单 优化
parent
bb033ef9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
EntrustController.java
...wise/sc/cement/business/controller/EntrustController.java
+7
-7
No files found.
cement-business/src/main/java/cn/wise/sc/cement/business/controller/EntrustController.java
View file @
b7ccdb33
...
@@ -123,13 +123,13 @@ public class EntrustController {
...
@@ -123,13 +123,13 @@ public class EntrustController {
return
;
return
;
}
}
Map
<
String
,
Object
>
beanParams
=
new
HashMap
<>(
7
);
Map
<
String
,
Object
>
beanParams
=
new
HashMap
<>(
7
);
beanParams
.
put
(
"clientName"
,
entrustVo
.
getClientName
());
beanParams
.
put
(
"clientName"
,
entrustVo
.
getClientName
()
==
null
?
""
:
entrustVo
.
getClientName
()
);
beanParams
.
put
(
"entrustCode"
,
entrustVo
.
getEntrustCode
());
beanParams
.
put
(
"entrustCode"
,
entrustVo
.
getEntrustCode
()
==
null
?
""
:
entrustVo
.
getEntrustCode
()
);
beanParams
.
put
(
"userName"
,
entrustVo
.
getUserName
());
beanParams
.
put
(
"userName"
,
entrustVo
.
getUserName
()
==
null
?
""
:
entrustVo
.
getUserName
()
);
beanParams
.
put
(
"userPhone"
,
entrustVo
.
getUserPhone
());
beanParams
.
put
(
"userPhone"
,
entrustVo
.
getUserPhone
()
==
null
?
""
:
entrustVo
.
getUserPhone
()
);
beanParams
.
put
(
"userFax"
,
entrustVo
.
getUserFax
());
beanParams
.
put
(
"userFax"
,
entrustVo
.
getUserFax
()
==
null
?
""
:
entrustVo
.
getUserFax
()
);
beanParams
.
put
(
"projectName"
,
entrustVo
.
getProjectName
());
beanParams
.
put
(
"projectName"
,
entrustVo
.
getProjectName
()
==
null
?
""
:
entrustVo
.
getProjectName
()
);
beanParams
.
put
(
"sampleNum"
,
entrustVo
.
getSampleNum
());
beanParams
.
put
(
"sampleNum"
,
entrustVo
.
getSampleNum
()
==
null
?
""
:
entrustVo
.
getSampleNum
()
);
//获取委托单样品列表(不包含平行样)
//获取委托单样品列表(不包含平行样)
List
<
SampleVo
>
sampleList
=
new
ArrayList
<>(
entrustVo
.
getSampleList
().
size
());
List
<
SampleVo
>
sampleList
=
new
ArrayList
<>(
entrustVo
.
getSampleList
().
size
());
...
...
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