Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
京
京能客户端
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王亚宁
京能客户端
Commits
66ebab2e
Commit
66ebab2e
authored
Aug 23, 2024
by
liangyb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#20240823 报表生成增加健壮性
parent
84357993
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
18 deletions
+24
-18
OBE-REPORT/src/com/gx/obe/report/dataset/word/JingNengEvaluationReportDataSet.java
.../report/dataset/word/JingNengEvaluationReportDataSet.java
+24
-18
No files found.
OBE-REPORT/src/com/gx/obe/report/dataset/word/JingNengEvaluationReportDataSet.java
View file @
66ebab2e
...
@@ -80,6 +80,7 @@ public class JingNengEvaluationReportDataSet extends BaseDateSet {
...
@@ -80,6 +80,7 @@ public class JingNengEvaluationReportDataSet extends BaseDateSet {
List
<
Map
<
String
,
String
>>
supplierAssMapList
=
new
ArrayList
<
Map
<
String
,
String
>>();
List
<
Map
<
String
,
String
>>
supplierAssMapList
=
new
ArrayList
<
Map
<
String
,
String
>>();
List
<
EvaluationStep
>
associationStepList
=
evaluationStepService
.
getEvaluationStepListByType
(
tenderProject
.
getId
(),
EvaluationStepEnum
.
ASSOCIATION_QUERY
);
List
<
EvaluationStep
>
associationStepList
=
evaluationStepService
.
getEvaluationStepListByType
(
tenderProject
.
getId
(),
EvaluationStepEnum
.
ASSOCIATION_QUERY
);
try
{
if
(
null
!=
associationStepList
&&
associationStepList
.
size
()
>
0
){
if
(
null
!=
associationStepList
&&
associationStepList
.
size
()
>
0
){
EvaluationStep
step
=
associationStepList
.
get
(
0
);
EvaluationStep
step
=
associationStepList
.
get
(
0
);
List
<
SupplierEvaluationStep
>
resultList
=
supplierEvaluationStepService
.
getSupplierEvaluationStepByTenderIdAndStepId
(
tenderProject
.
getId
(),
step
.
getId
());
List
<
SupplierEvaluationStep
>
resultList
=
supplierEvaluationStepService
.
getSupplierEvaluationStepByTenderIdAndStepId
(
tenderProject
.
getId
(),
step
.
getId
());
...
@@ -94,7 +95,8 @@ public class JingNengEvaluationReportDataSet extends BaseDateSet {
...
@@ -94,7 +95,8 @@ public class JingNengEvaluationReportDataSet extends BaseDateSet {
if
(
null
==
opinion
)
{
if
(
null
==
opinion
)
{
opinion
=
expertEvaluationResult
.
getSupplierOpinion
();
opinion
=
expertEvaluationResult
.
getSupplierOpinion
();
}
else
{
}
else
{
opinion
=
opinion
.
concat
(
";"
).
concat
(
expertEvaluationResult
.
getSupplierOpinion
());
String
supplierOpinion
=
expertEvaluationResult
.
getSupplierOpinion
();
opinion
=
opinion
.
concat
(
";"
).
concat
(
supplierOpinion
!=
null
?
supplierOpinion
:
""
);
}
}
}
}
}
}
...
@@ -104,6 +106,10 @@ public class JingNengEvaluationReportDataSet extends BaseDateSet {
...
@@ -104,6 +106,10 @@ public class JingNengEvaluationReportDataSet extends BaseDateSet {
}
}
}
}
}
}
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
System
.
out
.
println
();
}
reportDataSet
.
putParam
(
"associationOpinionList"
,
supplierAssMapList
);
reportDataSet
.
putParam
(
"associationOpinionList"
,
supplierAssMapList
);
// 获得打分评标步骤集合
// 获得打分评标步骤集合
...
...
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