Merge remote-tracking branch 'origin/master' into dev
This commit is contained in:
commit
2d21223a5e
|
@ -15,14 +15,17 @@ public class MchRevenueVO {
|
||||||
@ApiModelProperty("今日收入")
|
@ApiModelProperty("今日收入")
|
||||||
private BigDecimal todayIncome;
|
private BigDecimal todayIncome;
|
||||||
|
|
||||||
@ApiModelProperty("昨日收入")
|
@ApiModelProperty("总收入")
|
||||||
private BigDecimal yesterdayIncome;
|
private BigDecimal totalIncome;
|
||||||
|
|
||||||
@ApiModelProperty("今日订单")
|
@ApiModelProperty("今日订单")
|
||||||
private Integer todayOrder;
|
private Integer todayOrder;
|
||||||
|
|
||||||
@ApiModelProperty("昨日订单")
|
@ApiModelProperty("总订单")
|
||||||
private Integer yesterdayOrder;
|
private Integer totalOrder;
|
||||||
|
|
||||||
|
@ApiModelProperty("余额")
|
||||||
|
private BigDecimal balance;
|
||||||
|
|
||||||
@ApiModelProperty("设备总数")
|
@ApiModelProperty("设备总数")
|
||||||
private Integer deviceCount;
|
private Integer deviceCount;
|
||||||
|
|
|
@ -40,6 +40,8 @@ import com.ruoyi.ss.transactionBill.domain.enums.TransactionBillStatus;
|
||||||
import com.ruoyi.ss.transactionBill.domain.enums.TransactionBillType;
|
import com.ruoyi.ss.transactionBill.domain.enums.TransactionBillType;
|
||||||
import com.ruoyi.ss.transactionBill.domain.vo.TransactionAmountVO;
|
import com.ruoyi.ss.transactionBill.domain.vo.TransactionAmountVO;
|
||||||
import com.ruoyi.ss.transactionBill.service.TransactionBillService;
|
import com.ruoyi.ss.transactionBill.service.TransactionBillService;
|
||||||
|
import com.ruoyi.ss.user.domain.SmUserVO;
|
||||||
|
import com.ruoyi.ss.user.service.UserService;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
@ -85,6 +87,9 @@ public class DashboardService {
|
||||||
@Autowired
|
@Autowired
|
||||||
private BonusService bonusService;
|
private BonusService bonusService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private UserService userService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private RiskInfoService riskInfoService;
|
private RiskInfoService riskInfoService;
|
||||||
|
|
||||||
|
@ -255,13 +260,22 @@ public class DashboardService {
|
||||||
public MchRevenueVO mchRevenue(Long mchId) {
|
public MchRevenueVO mchRevenue(Long mchId) {
|
||||||
MchRevenueVO vo = new MchRevenueVO();
|
MchRevenueVO vo = new MchRevenueVO();
|
||||||
LocalDate today = LocalDate.now();
|
LocalDate today = LocalDate.now();
|
||||||
LocalDate yesterday = today.plusDays(-1);
|
|
||||||
|
// 余额
|
||||||
|
SmUserVO mch = userService.selectSmUserByUserId(mchId);
|
||||||
|
vo.setBalance(mch.getBalance());
|
||||||
|
|
||||||
// 营业额统计
|
// 营业额统计
|
||||||
BonusQuery bonusQuery = new BonusQuery();
|
BonusQuery bonusQuery = new BonusQuery();
|
||||||
bonusQuery.setArrivalId(mchId);
|
bonusQuery.setArrivalId(mchId);
|
||||||
bonusQuery.setArrivalTypes(BonusArrivalType.userList());
|
bonusQuery.setArrivalTypes(BonusArrivalType.userList());
|
||||||
bonusQuery.setStatus(BonusStatus.DIVIDEND.getStatus());
|
bonusQuery.setStatus(BonusStatus.DIVIDEND.getStatus());
|
||||||
|
// 总营业额
|
||||||
|
BigDecimal totalIncome = bonusService.selectSumOfPayedAmount(bonusQuery);
|
||||||
|
if (totalIncome == null) {
|
||||||
|
totalIncome = BigDecimal.ZERO;
|
||||||
|
}
|
||||||
|
vo.setTotalIncome(totalIncome);
|
||||||
// 今日营业额
|
// 今日营业额
|
||||||
bonusQuery.setPayDate(today);
|
bonusQuery.setPayDate(today);
|
||||||
BigDecimal todayIncome = bonusService.selectSumOfPayedAmount(bonusQuery);
|
BigDecimal todayIncome = bonusService.selectSumOfPayedAmount(bonusQuery);
|
||||||
|
@ -269,29 +283,19 @@ public class DashboardService {
|
||||||
todayIncome = BigDecimal.ZERO;
|
todayIncome = BigDecimal.ZERO;
|
||||||
}
|
}
|
||||||
vo.setTodayIncome(todayIncome);
|
vo.setTodayIncome(todayIncome);
|
||||||
// 昨日营业额
|
|
||||||
bonusQuery.setPayDate(yesterday);
|
|
||||||
BigDecimal yesterdayIncome = bonusService.selectSumOfPayedAmount(bonusQuery);
|
|
||||||
if (yesterdayIncome == null) {
|
|
||||||
yesterdayIncome = BigDecimal.ZERO;
|
|
||||||
}
|
|
||||||
vo.setYesterdayIncome(yesterdayIncome);
|
|
||||||
|
|
||||||
|
|
||||||
// 订单数统计
|
// 订单数统计
|
||||||
TransactionBillQuery billQuery = new TransactionBillQuery();
|
TransactionBillQuery billQuery = new TransactionBillQuery();
|
||||||
billQuery.setType(TransactionBillType.RECHARGE.getType());
|
billQuery.setType(TransactionBillType.RECHARGE.getType());
|
||||||
billQuery.setStatusList(TransactionBillStatus.payedOrder());
|
billQuery.setStatusList(TransactionBillStatus.payedOrder());
|
||||||
billQuery.setMchId(mchId);
|
billQuery.setMchId(mchId);
|
||||||
|
// 总订单数
|
||||||
|
int totalOrder = transactionBillService.selectSimpleCount(billQuery);
|
||||||
|
vo.setTotalOrder(totalOrder);
|
||||||
// 今日订单数
|
// 今日订单数
|
||||||
billQuery.setCreateDate(today);
|
billQuery.setCreateDate(today);
|
||||||
int todayOrder = transactionBillService.selectSimpleCount(billQuery);
|
int todayOrder = transactionBillService.selectSimpleCount(billQuery);
|
||||||
vo.setTodayOrder(todayOrder);
|
vo.setTodayOrder(todayOrder);
|
||||||
// 昨日订单数
|
|
||||||
billQuery.setCreateDate(yesterday);
|
|
||||||
int yesterdayOrder = transactionBillService.selectSimpleCount(billQuery);
|
|
||||||
vo.setYesterdayOrder(yesterdayOrder);
|
|
||||||
|
|
||||||
|
|
||||||
// 设备统计
|
// 设备统计
|
||||||
DeviceQuery deviceQuery = new DeviceQuery();
|
DeviceQuery deviceQuery = new DeviceQuery();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user