Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
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
youjj
cloud-platform
Commits
d852169f
Commit
d852169f
authored
Sep 20, 2019
by
周健威
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
9a370439
8f0b7221
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
80 additions
and
49 deletions
+80
-49
OrderTourVerificationBiz.java
...com/xxfc/platform/order/biz/OrderTourVerificationBiz.java
+1
-1
TourGoodVerificationBiz.java
...a/com/xxfc/platform/tour/biz/TourGoodVerificationBiz.java
+3
-0
TourGoodVerificationMapper.java
...xxfc/platform/tour/mapper/TourGoodVerificationMapper.java
+2
-0
TourGoodVerificationController.java
...fc/platform/tour/rest/TourGoodVerificationController.java
+6
-0
TourGoodVerificationMapper.xml
.../src/main/resources/mapper/TourGoodVerificationMapper.xml
+68
-48
No files found.
xx-order/xx-order-server/src/main/java/com/xxfc/platform/order/biz/OrderTourVerificationBiz.java
View file @
d852169f
...
@@ -130,7 +130,7 @@ public class OrderTourVerificationBiz{
...
@@ -130,7 +130,7 @@ public class OrderTourVerificationBiz{
tourDetail
=
tourDetailBiz
.
updateSelectiveByIdReT
(
tourDetail
);
tourDetail
=
tourDetailBiz
.
updateSelectiveByIdReT
(
tourDetail
);
tourFeign
.
updateTourGoodPersonNum
(
verificationId
,
"verification_person"
,
total_number
);
tourFeign
.
updateTourGoodPersonNum
(
verificationId
,
"verification_person"
,
total_number
);
baseOrderBiz
.
sendOrderMq
(
null
,
tourDetail
,
null
,
baseOrder
,
OrderMQDTO
.
ORDER_FINISH
);
baseOrderBiz
.
sendOrderMq
(
null
,
tourDetail
,
null
,
baseOrder
,
OrderMQDTO
.
ORDER_FINISH
);
return
ObjectRestResponse
.
succ
(
tourDetail
.
get
Good
Id
());
return
ObjectRestResponse
.
succ
(
tourDetail
.
get
Verification
Id
());
}
}
//确定上车
//确定上车
...
...
xx-tour/xx-tour-server/src/main/java/com/xxfc/platform/tour/biz/TourGoodVerificationBiz.java
View file @
d852169f
...
@@ -130,5 +130,8 @@ public class TourGoodVerificationBiz extends BaseBiz<TourGoodVerificationMapper,
...
@@ -130,5 +130,8 @@ public class TourGoodVerificationBiz extends BaseBiz<TourGoodVerificationMapper,
return
ObjectRestResponse
.
succ
(
mapper
.
getVerification
(
verificationId
));
return
ObjectRestResponse
.
succ
(
mapper
.
getVerification
(
verificationId
));
}
}
public
TourGoodOrderVo
findDetailById
(
Integer
id
){
return
mapper
.
findById
(
id
);
}
}
}
\ No newline at end of file
xx-tour/xx-tour-server/src/main/java/com/xxfc/platform/tour/mapper/TourGoodVerificationMapper.java
View file @
d852169f
...
@@ -68,4 +68,6 @@ public interface TourGoodVerificationMapper extends Mapper<TourGoodVerification>
...
@@ -68,4 +68,6 @@ public interface TourGoodVerificationMapper extends Mapper<TourGoodVerification>
//获取核销路线信息
//获取核销路线信息
TourVerificationInfoVo
getVerification
(
@Param
(
"verificationId"
)
Integer
verificationId
);
TourVerificationInfoVo
getVerification
(
@Param
(
"verificationId"
)
Integer
verificationId
);
TourGoodOrderVo
findById
(
@Param
(
"id"
)
Integer
id
);
}
}
xx-tour/xx-tour-server/src/main/java/com/xxfc/platform/tour/rest/TourGoodVerificationController.java
View file @
d852169f
...
@@ -70,4 +70,10 @@ public class TourGoodVerificationController extends BaseController<TourGoodVerif
...
@@ -70,4 +70,10 @@ public class TourGoodVerificationController extends BaseController<TourGoodVerif
return
baseBiz
.
selectDepartureStatusByVerificationId
(
verificationId
);
return
baseBiz
.
selectDepartureStatusByVerificationId
(
verificationId
);
}
}
@GetMapping
(
"/app/unauth/detail/{id}"
)
public
ObjectRestResponse
<
TourGoodOrderVo
>
findTourGoodOrderDetail
(
@PathVariable
(
value
=
"id"
)
Integer
id
){
TourGoodOrderVo
tourGoodOrderVo
=
baseBiz
.
findDetailById
(
id
);
return
ObjectRestResponse
.
succ
(
tourGoodOrderVo
);
}
}
}
\ No newline at end of file
xx-tour/xx-tour-server/src/main/resources/mapper/TourGoodVerificationMapper.xml
View file @
d852169f
...
@@ -31,7 +31,8 @@
...
@@ -31,7 +31,8 @@
</update>
</update>
<select
id=
"findVerificationAll"
resultType=
"com.xxfc.platform.tour.vo.TourGoodOrderVo"
>
<select
id=
"findVerificationAll"
resultType=
"com.xxfc.platform.tour.vo.TourGoodOrderVo"
>
select * from (SELECT v.id as `id`,v.total_person as `headCount`,v.status as `travelStatus`,v.verification_person as `tripOfNum`,g.name as `name`,
select * from (SELECT v.id as `id`,v.total_person as `headCount`,v.status as
`travelStatus`,v.verification_person as `tripOfNum`,g.name as `name`,
g.cover as `coverUrl`,p.start_time as `startDate`,s.depart_time as `startTime`FROM tour_good_verification v
g.cover as `coverUrl`,p.start_time as `startDate`,s.depart_time as `startTime`FROM tour_good_verification v
LEFT JOIN tour_good_site s ON v.site_id=s.id
LEFT JOIN tour_good_site s ON v.site_id=s.id
LEFT JOIN tour_good g ON v.good_id=g.id
LEFT JOIN tour_good g ON v.good_id=g.id
...
@@ -45,7 +46,8 @@
...
@@ -45,7 +46,8 @@
</if>
</if>
<if
test=
"travelDate!=null"
>
<if
test=
"travelDate!=null"
>
and p.start_time=#{travelDate}
and p.start_time=#{travelDate}
</if>
ORDER BY p.start_time DESC ) as `goodOrder`
</if>
ORDER BY p.start_time DESC ) as `goodOrder`
</select>
</select>
<!-- 获取旅游路线id-->
<!-- 获取旅游路线id-->
<select
id=
"getGoodList"
resultType=
"com.xxfc.platform.tour.vo.TourVerificationInfoVo"
>
<select
id=
"getGoodList"
resultType=
"com.xxfc.platform.tour.vo.TourVerificationInfoVo"
>
...
@@ -142,4 +144,22 @@
...
@@ -142,4 +144,22 @@
WHERE v.id=#{verificationId}
WHERE v.id=#{verificationId}
</select>
</select>
<select
id=
"findById"
resultType=
"com.xxfc.platform.tour.vo.TourGoodOrderVo"
>
SELECT
v.id AS `id`,
v.total_person AS `headCount`,
v.STATUS AS `travelStatus`,
v.verification_person AS `tripOfNum`,
g.NAME AS `name`,
g.cover AS `coverUrl`,
p.start_time AS `startDate`,
s.depart_time AS `startTime`
FROM
tour_good_verification v
LEFT JOIN tour_good_site s ON v.site_id = s.id
LEFT JOIN tour_good g ON v.good_id = g.id
LEFT JOIN tour_good_spe_price p ON v.spe_id = p.id
WHERE
v.id = #{id}
</select>
</mapper>
</mapper>
\ No newline at end of file
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