java110
2020-09-17 18dcf51511adffe8a0d4ebf7eb07d9ec50b37885
service-front/src/main/java/com/java110/front/controller/PaymentController.java
@@ -1,11 +1,9 @@
package com.java110.front.controller;
import com.java110.front.smo.payment.IToNotifySMO;
import com.java110.front.smo.payment.IToPaySMO;
import com.java110.front.smo.payment.IToPayTempCarInoutSMO;
import com.java110.core.base.controller.BaseController;
import com.java110.core.context.IPageData;
import com.java110.core.context.PageData;
import com.java110.front.smo.payment.*;
import com.java110.utils.constant.CommonConstant;
import com.java110.utils.util.StringUtil;
import org.slf4j.Logger;
@@ -31,10 +29,18 @@
    private IToPaySMO toPaySMOImpl;
    @Autowired
    private IRentingToPaySMO rentingToPaySMOImpl;
    @Autowired
    private IToPayTempCarInoutSMO toPayTempCarInoutSMOImpl;
    @Autowired
    private IToNotifySMO toNotifySMOImpl;
    @Autowired
    private IRentingToNotifySMO rentingToNotifySMOImpl;
    /**
     * <p>统一下单入口</p>
@@ -46,8 +52,8 @@
    public ResponseEntity<String> toPay(@RequestBody String postInfo, HttpServletRequest request) {
        IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);
        /*IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);*/
       String appId = request.getHeader("APP_ID");
        if(StringUtil.isEmpty(appId)){
        String appId = request.getHeader("APP_ID");
        if (StringUtil.isEmpty(appId)) {
            appId = request.getHeader("APP-ID");
        }
@@ -68,7 +74,7 @@
        IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);
        /*IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);*/
        String appId = request.getHeader("APP_ID");
        if(StringUtil.isEmpty(appId)){
        if (StringUtil.isEmpty(appId)) {
            appId = request.getHeader("APP-ID");
        }
        IPageData newPd = PageData.newInstance().builder(pd.getUserId(), pd.getUserName(), pd.getToken(), postInfo,
@@ -89,7 +95,43 @@
        logger.debug("微信支付回调报文" + postInfo);
        return toNotifySMOImpl.toNotify(postInfo,request);
        return toNotifySMOImpl.toNotify(postInfo, request);
    }
    /**
     * <p>出租统一下单入口</p>
     *
     * @param request
     * @throws Exception
     */
    @RequestMapping(path = "/rentingToPay", method = RequestMethod.POST)
    public ResponseEntity<String> rentingToPay(@RequestBody String postInfo, HttpServletRequest request) {
        IPageData pd = (IPageData) request.getAttribute(CommonConstant.CONTEXT_PAGE_DATA);
        String appId = request.getHeader("APP_ID");
        if (StringUtil.isEmpty(appId)) {
            appId = request.getHeader("APP-ID");
        }
        IPageData newPd = PageData.newInstance().builder(pd.getUserId(), pd.getUserName(), pd.getToken(), postInfo,
                "", "", "", pd.getSessionId(),
                appId);
        return rentingToPaySMOImpl.toPay(newPd);
    }
    /**
     * <p>支付回调Api</p>
     *
     * @param request
     * @throws Exception
     */
    @RequestMapping(path = "/rentingNotify", method = RequestMethod.POST)
    public ResponseEntity<String> rentingNotify(@RequestBody String postInfo, HttpServletRequest request) {
        logger.debug("微信支付回调报文" + postInfo);
        return rentingToNotifySMOImpl.toNotify(postInfo, request);
    }