Commit 723c1623 authored by Quxl's avatar Quxl

x

parent fa5edd05
......@@ -297,7 +297,7 @@ public class UserController {
public String queryUserInfoByOpenId(String openId, String langID, HttpServletRequest request, HttpServletResponse response) {
Map<String, Object> customerMap = userService.queryCustomerByOpenId(openId);
if(customerMap == null) {
return Rjx.jsonErr().setMessage(I18NUtils.getMessage(langID, "Msg_OpenID_notExist")).toJson();
return Rjx.jsonErr().setCode(201).setMessage(I18NUtils.getMessage(langID, "Msg_OpenID_notExist")).toJson();
}
List<Map<String, Object>> shopList = userService.queryShopList((String)customerMap.get("sCustNO"));
customerMap.put("sShopNO", shopList.get(0).get("sShopNO"));
......
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