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