全部项目语句bug
This commit is contained in:
parent
a7f93f315b
commit
53a40794d6
|
@ -3538,10 +3538,14 @@ public class WxServiceImpl implements WxService {
|
|||
userMoneyDetails.setBlFlag(2);
|
||||
userMoneyDetailsService.save(userMoneyDetails);
|
||||
|
||||
String value = commonInfoService.findOne(467).getValue();
|
||||
BigDecimal rate = new BigDecimal(value);
|
||||
BigDecimal artificerMoney = bMoney.multiply(rate).setScale(2,BigDecimal.ROUND_HALF_UP);
|
||||
BigDecimal platformMoney = bMoney.subtract(artificerMoney);
|
||||
// 允许发包时打开
|
||||
// String value = commonInfoService.findOne(467).getValue();
|
||||
// BigDecimal rate = new BigDecimal(value);
|
||||
// BigDecimal artificerMoney = bMoney.multiply(rate).setScale(2,BigDecimal.ROUND_HALF_UP);
|
||||
// BigDecimal platformMoney = bMoney.subtract(artificerMoney);
|
||||
|
||||
BigDecimal artificerMoney = bMoney;
|
||||
BigDecimal platformMoney = BigDecimal.ZERO;
|
||||
|
||||
//技师流水
|
||||
UserEntity userEntity = userService.queryByUserId(artificer.getUserId());
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
<if test="params.isTj!=null">
|
||||
and a.is_tj = #{params.isTj}
|
||||
</if>
|
||||
<if test="params.type!=null">
|
||||
<if test="params.isTg!=null">
|
||||
and a.is_tg = #{params.isTg}
|
||||
</if>
|
||||
union all
|
||||
|
@ -126,7 +126,7 @@
|
|||
<if test="params.isTj!=null">
|
||||
and a.is_tj = #{params.isTj}
|
||||
</if>
|
||||
<if test="params.type!=null">
|
||||
<if test="params.isTg!=null">
|
||||
and a.is_tg = #{params.isTg}
|
||||
</if>
|
||||
order by sales desc,id asc
|
||||
|
|
Loading…
Reference in New Issue