|
@@ -39,7 +39,7 @@ public class WxplaySendDateAfter implements CebReqSendDateAfter {
|
|
if (sucList.size() > 0) {
|
|
if (sucList.size() > 0) {
|
|
LOGGER.info("--- 【WxPlay】更新【成功】报文订单记录......");
|
|
LOGGER.info("--- 【WxPlay】更新【成功】报文订单记录......");
|
|
sucList.stream().forEach(x->{
|
|
sucList.stream().forEach(x->{
|
|
- Map<String, Object> map = ImmutableMap.of("subOrderNo", x, "sendStatus", Contants.DECLARATION_SUCCESS_STATUS);
|
|
|
|
|
|
+ Map<String, Object> map = ImmutableMap.of("orderSn", x, "sendStatus", Contants.DECLARATION_SUCCESS_STATUS);
|
|
sucs.add(map);
|
|
sucs.add(map);
|
|
});
|
|
});
|
|
if(sucs.size() > 0){
|
|
if(sucs.size() > 0){
|
|
@@ -47,7 +47,7 @@ public class WxplaySendDateAfter implements CebReqSendDateAfter {
|
|
wxCuspayStatusService.updatewxCuspayStatusServiceBatch(sucs);
|
|
wxCuspayStatusService.updatewxCuspayStatusServiceBatch(sucs);
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
String info = "【WxPlay】更新【成功】报文订单记录失败";
|
|
String info = "【WxPlay】更新【成功】报文订单记录失败";
|
|
- LOGGER.error("--- {}", info);
|
|
|
|
|
|
+ LOGGER.error("--- "+info, e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -55,7 +55,7 @@ public class WxplaySendDateAfter implements CebReqSendDateAfter {
|
|
if (failedList.size() > 0) {
|
|
if (failedList.size() > 0) {
|
|
LOGGER.info("--- 【WxPlay】更新【失败】报文订单记录......");
|
|
LOGGER.info("--- 【WxPlay】更新【失败】报文订单记录......");
|
|
failedList.stream().forEach(x->{
|
|
failedList.stream().forEach(x->{
|
|
- Map<String, Object> map = ImmutableMap.of("subOrderNo", x, "sendStatus", Contants.FAIL_STATUS);
|
|
|
|
|
|
+ Map<String, Object> map = ImmutableMap.of("orderSn", x, "sendStatus", Contants.FAIL_STATUS);
|
|
Map<String, Object> wxMap = ImmutableMap.of("orderSn", x, "playOrderStatus", Contants.FAIL_STATUS);
|
|
Map<String, Object> wxMap = ImmutableMap.of("orderSn", x, "playOrderStatus", Contants.FAIL_STATUS);
|
|
faileds.add(map);
|
|
faileds.add(map);
|
|
wxFaileds.add(wxMap);
|
|
wxFaileds.add(wxMap);
|