|
|
|
@ -448,7 +448,7 @@ public class PushInvoiceServiceImpl implements PushInvoiceService { |
|
|
|
|
} else if (OrderInfoEnum.SYS_SOURCE_SNYXX.getKey().equals(orderProcessInfo.getXtly()) && StringUtils.isNotBlank(pushInfo.getByzd1()) |
|
|
|
|
&& pushInfo.getByzd1().equals(orderProcessInfo.getXtly())) { |
|
|
|
|
Map map = Maps.newHashMap(); |
|
|
|
|
map.put("authorization",baseServiceConfig.getYxKey()); |
|
|
|
|
map.put("authorization",MD5.getMd5Encode(baseServiceConfig.getYxKey())); |
|
|
|
|
result = HttpUtils.sendPoWithHead(pushInfo.getPushUrl(), fptsParam,baseServiceConfig.getPoUserName(),baseServiceConfig.getPoPassword(),map); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
@ -1312,6 +1312,13 @@ public class PushInvoiceServiceImpl implements PushInvoiceService { |
|
|
|
|
return content; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
|
try { |
|
|
|
|
System.out.println(MD5.getMd5Encode("e4b0190b2fadc0adbe54471ffd79a729")); |
|
|
|
|
} catch (NoSuchAlgorithmException e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
public String convertToYwxtParam(CommonTsMqData fpTsMqData,String content){ |
|
|
|
|
String ywxtParam = ""; |
|
|
|
|
|
|
|
|
|