Commit 992d784b authored by hezhen's avatar hezhen

123

parent 5b283654
...@@ -101,7 +101,7 @@ public class OrderTourVerificationBiz{ ...@@ -101,7 +101,7 @@ public class OrderTourVerificationBiz{
//核销列表 //核销列表
public ObjectRestResponse getVerifications(TourGoodOrderFindVo tourGoodOrderFindVo){ public ObjectRestResponse getVerifications(TourGoodOrderFindVo tourGoodOrderFindVo){
return ObjectRestResponse.succ(tourFeign.findTourGoodOrders(BeanUtil.beanToMap(tourGoodOrderFindVo))); return ObjectRestResponse.succ(tourFeign.findTourGoodOrders(tourGoodOrderFindVo));
} }
public boolean isPower(List<BranchCompany> list,Integer companyId){ public boolean isPower(List<BranchCompany> list,Integer companyId){
......
...@@ -83,8 +83,8 @@ public interface TourFeign { ...@@ -83,8 +83,8 @@ public interface TourFeign {
* @param tourGoodOrderFindVo * @param tourGoodOrderFindVo
* @return * @return
*/ */
@GetMapping("/tourGood/verfication/orders") @RequestMapping(value = "/tourGood/verfication/orders", method = RequestMethod.POST)
PageDataVO<TourGoodOrderVo> findTourGoodOrders(@RequestParam("tourGoodOrderFindVo") Map<String,Object> tourGoodOrderFindVo); PageDataVO<TourGoodOrderVo> findTourGoodOrders(@RequestBody TourGoodOrderFindVo tourGoodOrderFindVo);
@ApiOperation("首页旅游列表") @ApiOperation("首页旅游列表")
@GetMapping(value = "/tourGood/app/shopList") @GetMapping(value = "/tourGood/app/shopList")
......
...@@ -21,8 +21,8 @@ public class TourGoodVerificationController extends BaseController<TourGoodVerif ...@@ -21,8 +21,8 @@ public class TourGoodVerificationController extends BaseController<TourGoodVerif
* @return * @return
*/ */
@ApiOperation("订单列表的查询") @ApiOperation("订单列表的查询")
@GetMapping("/orders") @RequestMapping(value = "/orders", method = RequestMethod.POST)
public PageDataVO<TourGoodOrderVo> findTourGoodOrders( TourGoodOrderFindVo tourGoodOrderFindVo){ public PageDataVO<TourGoodOrderVo> findTourGoodOrders( @RequestBody TourGoodOrderFindVo tourGoodOrderFindVo){
PageDataVO<TourGoodOrderVo> tourGoodOrderPageDataVo = getBaseBiz().findTourGoodOrdersPage(tourGoodOrderFindVo); PageDataVO<TourGoodOrderVo> tourGoodOrderPageDataVo = getBaseBiz().findTourGoodOrdersPage(tourGoodOrderFindVo);
return tourGoodOrderPageDataVo; return tourGoodOrderPageDataVo;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment