Commit 7c3d7528 by ping.wu

报错修改

parent 6fcd44ef
......@@ -1200,9 +1200,9 @@ public class OrderAdapter {
OrderExtInfoDto orderExtInfoDto = null;
if (StringUtils.isNotBlank(extInfo)) {
orderExtInfoDto = gson.fromJson(extInfo, OrderExtInfoDto.class);
responseVo.setTotalScore(orderExtInfoDto.getTotalScore());
}
responseVo.setWxappid(orderExtInfoDto != null ? orderExtInfoDto.getAppid() : "");
responseVo.setTotalScore(orderExtInfoDto != null ? orderExtInfoDto.getTotalScore() : 0L);
responseVo.setReserveDeliveryTime("");
if (ordersBean.getGmtExpect() != null) {
Date gmtExpect = new Date(ordersBean.getGmtExpect());
......
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