...
|
...
|
@@ -577,7 +577,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
|
|
|
private String getUserNameByUid(Integer uid) {
|
|
|
Map<String,Integer> request = Collections.singletonMap("uid", uid);
|
|
|
JSONObject jsonObject = serviceCaller.get("uic.getProfileAction", "http://" + uicServerIpAndPort + UIC_GETUSERPROFILE_URL, request, JSONObject.class, null).get(1);
|
|
|
JSONObject jsonObject = serviceCaller.post("uic.getProfileAction", "http://" + uicServerIpAndPort + UIC_GETUSERPROFILE_URL, request, JSONObject.class, null).get(1);
|
|
|
|
|
|
if(null != jsonObject.getJSONObject("data") && null != jsonObject.getJSONObject("data").getInteger("profile_name")) {
|
|
|
return jsonObject.getJSONObject("data").getString("profile_name");
|
...
|
...
|
|