Authored by tanling

Merge branch 'test6.8.4' of http://git.yoho.cn/ufo/yohoufo-fore into test6.8.4

@@ -111,7 +111,7 @@ public class PaymentController { @@ -111,7 +111,7 @@ public class PaymentController {
111 * 退款结果确认 111 * 退款结果确认
112 * @return 112 * @return
113 */ 113 */
114 - @RequestMapping(params = "method=ufo.order.refund") 114 + @RequestMapping(params = "/erp/order/refund")
115 public ApiResponse refund(@RequestParam(name = "orderCode") long orderCode, 115 public ApiResponse refund(@RequestParam(name = "orderCode") long orderCode,
116 @RequestParam(name = "refundAmount") double refundAmount){ 116 @RequestParam(name = "refundAmount") double refundAmount){
117 117
@@ -45,7 +45,7 @@ public class ProductIdentifyController { @@ -45,7 +45,7 @@ public class ProductIdentifyController {
45 ProductIdentifyResp info = identifyService.queryIdentifyInfo(tagId, nfcUid); 45 ProductIdentifyResp info = identifyService.queryIdentifyInfo(tagId, nfcUid);
46 return new ApiResponse.ApiResponseBuilder().code(200).data(info).build(); 46 return new ApiResponse.ApiResponseBuilder().code(200).data(info).build();
47 }catch (Exception e){ 47 }catch (Exception e){
48 - logger.warn("queryIdentifyInfo error! tagId={}, nfcUid={}, ", tagId, nfcUid); 48 + logger.warn("queryIdentifyInfo error! tagId={}, nfcUid={}, e is {}", tagId, nfcUid, e);
49 if( e instanceof GatewayException){ 49 if( e instanceof GatewayException){
50 throw e; 50 throw e;
51 } 51 }
@@ -158,7 +158,7 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{ @@ -158,7 +158,7 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{
158 identifyTrack.setTimeStr(formatDate(authTime, "yyyy.MM.dd HH:mm:ss")); 158 identifyTrack.setTimeStr(formatDate(authTime, "yyyy.MM.dd HH:mm:ss"));
159 identifyTrack.setContent( authGroup + "鉴定结果为\"真\""); 159 identifyTrack.setContent( authGroup + "鉴定结果为\"真\"");
160 //鉴定中心,默认的展示头像 160 //鉴定中心,默认的展示头像
161 - String auth_inco = configReader.getString("ufo.product.defaultAuthHeadIcon", "http://head.static.yhbimg.com/yhb-head/2018/12/24/10/01187dd372e153ea9c062cd0604cd169b2.jpg?imageView2/{mode}/w/{width}/h/{height}"); 161 + String auth_inco = configReader.getString("ufo.product.defaultAuthHeadIcon", "http://head.static.yhbimg.com/yhb-head/2018/12/28/14/01384244a3ca86fa5345df87c59317b81f.png?imageView2/{mode}/w/{width}/h/{height}");
162 identifyTrack.setHeadIcon(auth_inco); 162 identifyTrack.setHeadIcon(auth_inco);
163 trackRespList.add(identifyTrack); 163 trackRespList.add(identifyTrack);
164 164
@@ -175,7 +175,7 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{ @@ -175,7 +175,7 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{
175 String headIcon = buyerInfo.getHeadIco(); 175 String headIcon = buyerInfo.getHeadIco();
176 if(DEFAULT_HEAD_IMG.equals(headIcon) || StringUtils.isBlank(headIcon)){//有货的默认头像 176 if(DEFAULT_HEAD_IMG.equals(headIcon) || StringUtils.isBlank(headIcon)){//有货的默认头像
177 //ufo 用户的默认头像 177 //ufo 用户的默认头像
178 - headIcon = configReader.getString("ufo.product.defaultUserHeadIcon", "http://head.static.yhbimg.com/yhb-head/2018/12/27/15/01e4d5f0761cab78186e709ba910f1930d.jpg?imageView2/{mode}/w/{width}/h/{height}"); 178 + headIcon = configReader.getString("ufo.product.defaultUserHeadIcon", "http://head.static.yhbimg.com/yhb-head/2018/12/28/14/0160773bb87685aade796ea4f94e0587cf.png?imageView2/{mode}/w/{width}/h/{height}");
179 } 179 }
180 //2)订单完成 180 //2)订单完成
181 if(orderStatus != null && orderStatus.intValue() == 5){//订单已完成 181 if(orderStatus != null && orderStatus.intValue() == 5){//订单已完成
1 #UFO鉴定中心默认头像 1 #UFO鉴定中心默认头像
2 -ufo.product.defaultAuthHeadIcon=http://head.static.yhbimg.com/yhb-head/2018/12/24/10/01187dd372e153ea9c062cd0604cd169b2.jpg?imageView2/{mode}/w/{width}/h/{height} 2 +ufo.product.defaultAuthHeadIcon=http://head.static.yhbimg.com/yhb-head/2018/12/28/14/01384244a3ca86fa5345df87c59317b81f.png?imageView2/{mode}/w/{width}/h/{height}
3 #UFO用户的默认头像 3 #UFO用户的默认头像
4 -ufo.product.defaultUserHeadIcon=http://head.static.yhbimg.com/yhb-head/2018/12/27/15/01e4d5f0761cab78186e709ba910f1930d.jpg?imageView2/{mode}/w/{width}/h/{height}  
  4 +ufo.product.defaultUserHeadIcon=http://head.static.yhbimg.com/yhb-head/2018/12/28/14/0160773bb87685aade796ea4f94e0587cf.png?imageView2/{mode}/w/{width}/h/{height}
  5 +