Commit 1e42a074 authored by unset's avatar unset

修改支付信息

parent 6d0f2d3a
...@@ -130,7 +130,7 @@ public class ConfirmOrderService { ...@@ -130,7 +130,7 @@ public class ConfirmOrderService {
confirmOrderInfoVo.setActAmount(confirmOrderInfoVo.getTotalAmount()); confirmOrderInfoVo.setActAmount(confirmOrderInfoVo.getTotalAmount());
Dictionary dictionary = thirdFeign.findDictionaryByTypeAndCode(DictionaryKey.APP_ORDER, DictionaryKey.SEND_FEE); Dictionary dictionary = thirdFeign.findDictionaryByTypeAndCode(DictionaryKey.APP_ORDER, DictionaryKey.SEND_FEE);
if (dictionary != null && StringUtils.isBlank(dictionary.getDetail())) { if (dictionary != null && StringUtils.isNotBlank(dictionary.getDetail())) {
confirmOrderInfoVo.setFee(new BigDecimal(dictionary.getDetail())); confirmOrderInfoVo.setFee(new BigDecimal(dictionary.getDetail()));
} }
return ObjectRestResponse.succ(confirmOrderInfoVo); return ObjectRestResponse.succ(confirmOrderInfoVo);
......
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