1. 程式人生 > >微信退款---內附原始碼

微信退款---內附原始碼

今天更新一波微信退款的操作,微信退款,最主要的資料就是訂單號,如果有了訂單號我們就能從資料庫中獲取之前我們所支付成功的訂單所有的資料,廢話不多少來碼!
Controller

//	@RequestMapping("refund")
//	public void refund(HttpServletRequest request) throws Exception{
//		String tradeno = request.getParameter("tradeno");
//		paymanager.reFund(tradeno);
//	}

這裡為什麼要註釋起來呢?原因很簡單,怕被別人惡意獲取到你的訂單號直接請求退款,那事情豈不是大條了!!!
Service

//退款
	public Map<String, String> reFund(String tradeno){
		WXPayConfigImpl payconfig;
		try {
			payconfig = WXPayConfigImpl.getInstance(config.getKey(), config.getAppID(),
					config.getMchID(), config.getCertLocalPath());
			WXPay wxpay = new WXPay(payconfig);
			HashMap<String, String> data = new HashMap<String, String>();
			WXPayOrders order = wxpayDao.getOrder(tradeno);
			String refundno = "T" + tradeno;
	        data.put("out_trade_no", tradeno);
	        data.put("out_refund_no", refundno);//退款訂單號
	        data.put("total_fee", order.getTotalfee()+"");//總價格
	        data.put("refund_fee", order.getTotalfee()+"");//退款價格
	        data.put("refund_fee_type", "CNY");
	        data.put("op_user_id", config.getMchID());

	       
	        Map<String, String> r = wxpay.refund(data);
	        if(r.get("return_code").equals("SUCCESS") && r.get("result_code").equals("SUCCESS")){
	        	wxpayDao.reFund(tradeno,refundno);
	        }
	        return r;
	       
		} catch (Exception e) {
//			e.printStackTrace();
			Util.logException("微信退款失敗", e);
			return null;
		}	
	}

WXpay

 /**
     * 作用:申請退款<br>
     * 場景:刷卡支付、公共號支付、掃碼支付、APP支付
     * @param reqData 向wxpay post的請求資料
     * @return API返回資料
     * @throws Exception
     */
    public Map<String, String> refund(Map<String, String> reqData) throws Exception {
        return this.refund(reqData, this.config.getHttpConnectTimeoutMs(), this.config.getHttpReadTimeoutMs());
    }

上面那就是微信提供的程式碼。
走到這一部,你就能發現退款成功了。
有時候需要退回到某些頁面比如

WeixinJSBridge.call('closeWindow');

直接退回到公眾號頁面上了,同時給出個友好提示就好了嘛!!!!