Commit d217e6e6 by huluobin

# 费用系统 无需付款回调

parent 6a3d971f
...@@ -439,7 +439,7 @@ public abstract class AbstractCostService implements CostService { ...@@ -439,7 +439,7 @@ public abstract class AbstractCostService implements CostService {
CostDomain costDomain = this.getCostByCostNo(costCashiercallbackDomain.getCostNo()); CostDomain costDomain = this.getCostByCostNo(costCashiercallbackDomain.getCostNo());
// 获取xx货币-->CNY的汇率 // 获取xx货币-->CNY的汇率
if (costCashiercallbackDomain.getCashierunitcode() != null) { if (com.bailuntec.common.StringUtils.isNotEmpty(costCashiercallbackDomain.getCashierunitcode())) {
BigDecimal toRmbRate = CurUtils.getCur(costCashiercallbackDomain.getCashierunitcode().toUpperCase(), "CNY"); BigDecimal toRmbRate = CurUtils.getCur(costCashiercallbackDomain.getCashierunitcode().toUpperCase(), "CNY");
costCashiercallbackDomain.setToRmbRate(toRmbRate); costCashiercallbackDomain.setToRmbRate(toRmbRate);
costDomain.setToRmbRate(toRmbRate); costDomain.setToRmbRate(toRmbRate);
......
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