master
kira 6 years ago
parent 5e0fa354b2
commit 001ea48494

@ -32,10 +32,10 @@ public class EncourageMoneyController {
public JSONObject takeEncourageMoney(@PathVariable String orderId, @ModelAttribute(CommonConsts.WECHATINFO) JSONObject wxUser, public JSONObject takeEncourageMoney(@PathVariable String orderId, @ModelAttribute(CommonConsts.WECHATINFO) JSONObject wxUser,
@ModelAttribute(CommonConsts.ALIUSER) JSONObject aliuser) { @ModelAttribute(CommonConsts.ALIUSER) JSONObject aliuser) {
String user_id = ""; String user_id = "";
logger.info("problem order id:"+orderId);
if (wxUser == null) { if (wxUser == null) {
user_id = aliuser.getString("user_id"); user_id = aliuser.getString("user_id");
} else { } else {
logger.info("====wxUser==" + wxUser.toJSONString());
user_id = wxUser.getString("openid"); user_id = wxUser.getString("openid");
} }
if (StringUtils.isEmpty(user_id)) { if (StringUtils.isEmpty(user_id)) {

Loading…
Cancel
Save