mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-09 00:18:07 +08:00
update
This commit is contained in:
@@ -386,7 +386,7 @@ public class OrderService {
|
|||||||
throw new BusinessException(ReturnCodeEnum.CODE_BALANCE_IS_INSUFFICIENT);
|
throw new BusinessException(ReturnCodeEnum.CODE_BALANCE_IS_INSUFFICIENT);
|
||||||
}
|
}
|
||||||
BigDecimal principalAmount = memberVO.getPrincipalBalance(); // 会员剩余本金金额
|
BigDecimal principalAmount = memberVO.getPrincipalBalance(); // 会员剩余本金金额
|
||||||
BigDecimal giftAmount = memberVO.getGiftBalance(); // 会员剩余赠送余额
|
// BigDecimal giftAmount = memberVO.getGiftBalance(); // 会员剩余赠送余额
|
||||||
|
|
||||||
BigDecimal principalPay = null; // 30
|
BigDecimal principalPay = null; // 30
|
||||||
BigDecimal giftPay = null; // 10
|
BigDecimal giftPay = null; // 10
|
||||||
|
|||||||
@@ -13,7 +13,6 @@ import com.jsowell.pile.mapper.MemberWalletInfoMapper;
|
|||||||
import com.jsowell.pile.mapper.MemberWalletLogMapper;
|
import com.jsowell.pile.mapper.MemberWalletLogMapper;
|
||||||
import com.jsowell.pile.service.IMemberBasicInfoService;
|
import com.jsowell.pile.service.IMemberBasicInfoService;
|
||||||
import com.jsowell.pile.service.IPileBasicInfoService;
|
import com.jsowell.pile.service.IPileBasicInfoService;
|
||||||
import com.jsowell.pile.vo.MemberPlateNumberVO;
|
|
||||||
import com.jsowell.pile.vo.uniapp.MemberVO;
|
import com.jsowell.pile.vo.uniapp.MemberVO;
|
||||||
import com.jsowell.pile.vo.uniapp.MemberWalletLogVO;
|
import com.jsowell.pile.vo.uniapp.MemberWalletLogVO;
|
||||||
import com.jsowell.pile.vo.uniapp.PersonalPileInfoVO;
|
import com.jsowell.pile.vo.uniapp.PersonalPileInfoVO;
|
||||||
@@ -245,7 +244,7 @@ public class MemberBasicInfoServiceImpl implements IMemberBasicInfoService {
|
|||||||
if (vo == null) {
|
if (vo == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
vo.setTotalAccountAmount(vo.getPrincipalBalance().add(vo.getGiftBalance()));
|
vo.setTotalAccountAmount(vo.getPrincipalBalance());
|
||||||
|
|
||||||
// 查询用户车牌号
|
// 查询用户车牌号
|
||||||
MemberPlateNumberRelation memberPlateNumberRelation = new MemberPlateNumberRelation();
|
MemberPlateNumberRelation memberPlateNumberRelation = new MemberPlateNumberRelation();
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ public class MemberVO {
|
|||||||
/**
|
/**
|
||||||
* 赠送金额
|
* 赠送金额
|
||||||
*/
|
*/
|
||||||
private BigDecimal giftBalance;
|
// private BigDecimal giftBalance;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 总账户余额
|
* 总账户余额
|
||||||
|
|||||||
Reference in New Issue
Block a user