Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
api
Overview
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
首航-临时账号
api
Commits
6923b82a
Commit
6923b82a
authored
May 26, 2020
by
java-李谡
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改条件评估论证bug
parent
68dc1ed8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
10 deletions
+4
-10
CondationDao.xml
resources/mapper/modules/verify/CondationDao.xml
+2
-0
VerifyConditionDao.xml
resources/mapper/modules/verify/VerifyConditionDao.xml
+0
-0
ImGroupController.java
src/com/ejweb/modules/im/api/ImGroupController.java
+0
-0
RouteVerifyController.java
src/com/ejweb/modules/route/api/RouteVerifyController.java
+2
-10
No files found.
resources/mapper/modules/verify/CondationDao.xml
View file @
6923b82a
...
...
@@ -121,6 +121,7 @@
from foc_verify_condition
where depart_id=#{departId}
and verif_id=#{verifId}
and `condition` is not null
</select>
<select
id=
"getConditionVerifyDetails"
resultType=
"com.ejweb.modules.verify.data.ConditionVerifyDetailData"
>
...
...
@@ -135,6 +136,7 @@
left join foc_condition_feedback f on v.id=f.condition_id
where v.depart_id=#{departId}
and v.verif_id=#{verifId}
and v.`condition` is not null
group by v.id
</select>
...
...
resources/mapper/modules/verify/VerifyConditionDao.xml
View file @
6923b82a
src/com/ejweb/modules/im/api/ImGroupController.java
View file @
6923b82a
This diff is collapsed.
Click to expand it.
src/com/ejweb/modules/route/api/RouteVerifyController.java
View file @
6923b82a
...
...
@@ -291,14 +291,10 @@ public class RouteVerifyController {
@ResponseBody
@RequestMapping
(
value
=
"/export"
)
public
void
export
(
RequestBean
requestBean
,
HttpServletResponse
response
)
{
/* PageEntity<AirlineVerifyEntity> list = null;*/
AirlineVerifyBean
bean
=
requestBean
.
getObjectBean
(
AirlineVerifyBean
.
class
);
String
message
=
airlineVerifyService
.
validate
(
bean
);
if
(
message
==
null
)
{
// 通过参数校验
/* list = airlineVerifyService.getRiskAssessmentListForExcel(bean);
List<AirlineVerifyEntity> list1= list.getList();
if(list1==null)list1=new ArrayList<AirlineVerifyEntity>();*/
if
(
message
==
null
)
{
// 通过参数校验
bean
.
setPageNo
(
1
);
bean
.
setPageSize
(
10000
);
PageEntity
<
AirlineVerifyEntity
>
page
=
airlineVerifyService
.
getRiskAssessmentList
(
bean
);
...
...
@@ -310,12 +306,8 @@ public class RouteVerifyController {
new
ExportExcel
(
"待论证航线列表"
,
AirlineVerifyEntity
.
class
).
setDataList
(
list
).
write
(
response
,
fileName
).
dispose
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
/*return ;*/
}
/* return ;*/
}
}
/* return ;*/
}
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