|
@@ -4,11 +4,10 @@ import com.bz.smart_city.commom.util.UserUtil;
|
|
|
import com.bz.smart_city.dao.pay.BaseClosingAccountInfoMapper;
|
|
|
import com.bz.smart_city.dao.pay.PayChargeSurveyMapper;
|
|
|
import com.bz.smart_city.dto.LoginUser;
|
|
|
-import com.bz.smart_city.dto.pay.BaseClosingAccountInfoDto;
|
|
|
-import com.bz.smart_city.dto.pay.PayChangePeriodDto;
|
|
|
-import com.bz.smart_city.dto.pay.PayChargeSurveyDto;
|
|
|
-import com.bz.smart_city.dto.pay.PayTransactionSurveyDto;
|
|
|
+import com.bz.smart_city.dto.pay.*;
|
|
|
import com.bz.smart_city.entity.pay.PayAccountSurvey;
|
|
|
+import com.bz.smart_city.entity.pay.PayChargeSurvey;
|
|
|
+import com.bz.smart_city.entity.pay.PayFeeSuevey;
|
|
|
import com.bz.smart_city.entity.pay.PayTransactionSurvey;
|
|
|
import com.bz.smart_city.service.pay.PayChargeSurveyService;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
@@ -167,6 +166,31 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
periodDto.setMeterNumber(sumCurrentMeter);
|
|
|
accountList2.add(periodDto);
|
|
|
accountList2.addAll(accoutList);
|
|
|
+ //填补缺失月
|
|
|
+ PayChangePeriodDto dto = accountList2.get(accountList2.size() - 1);
|
|
|
+ Integer number = dto.getMonth();
|
|
|
+ Integer lastYear = Integer.valueOf(dto.getYear());
|
|
|
+ Integer lastMonth = dto.getMonth();
|
|
|
+ List<PayChangePeriodDto> pList = new ArrayList<PayChangePeriodDto> ();
|
|
|
+ for(int i=accountList2.size(); i<=11; i++){
|
|
|
+ number --;
|
|
|
+ if(number == 0){
|
|
|
+ lastYear = lastYear-1;
|
|
|
+ lastMonth = 12;
|
|
|
+ number = 12;
|
|
|
+ }else{
|
|
|
+ lastYear = lastYear;
|
|
|
+ lastMonth = number;
|
|
|
+ }
|
|
|
+ PayChangePeriodDto info = new PayChangePeriodDto();
|
|
|
+ info.setYear(lastYear+"");
|
|
|
+ info.setMonth(lastMonth);
|
|
|
+ info.setMeterNumber(0);
|
|
|
+ info.setCustomerNumber(0);
|
|
|
+ info.setAccountNumber(0);
|
|
|
+ pList.add(info);
|
|
|
+ }
|
|
|
+ accountList2.addAll(pList);
|
|
|
payChargeSurveyDto.setList(accountList2);
|
|
|
//System.out.println("时间:"+latelyDate);
|
|
|
}catch (Exception e) {
|
|
@@ -176,6 +200,11 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 交易概况
|
|
|
+ * @param periodDate
|
|
|
+ * @return
|
|
|
+ */
|
|
|
public PayTransactionSurveyDto tranSurvey(String periodDate){
|
|
|
PayTransactionSurveyDto payTransactionSurveyDto = new PayTransactionSurveyDto();
|
|
|
LoginUser loginUser = UserUtil.getCurrentUser();
|
|
@@ -207,6 +236,7 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
|
|
|
List<BaseClosingAccountInfoDto> list = baseClosingAccountInfoMapper.getList(null,null,
|
|
|
siteId,customerId,null);
|
|
|
+ //判断是否为当前账期,当前账期需要查询实时数据,历史账期查询记录表中的数据
|
|
|
if((year.equals(list.get(0).getYear())) && (month.equals(list.get(0).getMonth()))){
|
|
|
//当前账期查询交易明细表
|
|
|
List<PayTransactionSurvey> tranList = payChargeSurveyMapper.getCurrentTranRocord(year,month,siteId,customerId);
|
|
@@ -250,7 +280,6 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
transactionSurver.setYear(year);
|
|
|
transactionSurver.setMonth(month);
|
|
|
payTransactionSurveyDto = this.tranCompute(transactionSurver);
|
|
|
-
|
|
|
}
|
|
|
}catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
@@ -259,20 +288,15 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ //计算交易比率
|
|
|
public PayTransactionSurveyDto tranCompute(PayTransactionSurvey transactionSurver){
|
|
|
PayTransactionSurveyDto payTransactionSurveyDto = new PayTransactionSurveyDto();
|
|
|
- Integer year = transactionSurver.getYear();
|
|
|
- Integer month = transactionSurver.getMonth();
|
|
|
+ Integer year = transactionSurver.getYear();//年
|
|
|
+ Integer month = transactionSurver.getMonth();//月
|
|
|
+ //保留一位小数
|
|
|
DecimalFormat df = new DecimalFormat("0.0");
|
|
|
BigDecimal defc = new BigDecimal("0.0");
|
|
|
BigDecimal defb = new BigDecimal("1.0");
|
|
|
-
|
|
|
- //计算较上月比率
|
|
|
- String lastCashRate = "";//现金比率
|
|
|
- String lastWechatRate = "";//微信比率
|
|
|
- String lastAlipayRate = "";//支付宝比率
|
|
|
- String lastBankRate = "";//银行比率
|
|
|
-
|
|
|
//本月
|
|
|
BigDecimal cashIncome = defc;//现金
|
|
|
BigDecimal wechatIncome = defc;//微信支付
|
|
@@ -283,6 +307,11 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
BigDecimal lastwechatIncome = defc;//微信支付
|
|
|
BigDecimal lastalipayIncome = defc; //支付宝
|
|
|
BigDecimal lastbankIncome = defc;//银行
|
|
|
+ //计算较上月比率
|
|
|
+ String lastCashRate = "";//现金比率
|
|
|
+ String lastWechatRate = "";//微信比率
|
|
|
+ String lastAlipayRate = "";//支付宝比率
|
|
|
+ String lastBankRate = "";//银行比率
|
|
|
try {
|
|
|
BigDecimal currentIncome = transactionSurver.getIncomeNumber();//本月收入总数
|
|
|
BigDecimal lastIncome = transactionSurver.getLastIncomeNumber();//上月收入总数
|
|
@@ -291,12 +320,12 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
lastIncomeRate = df.format(income);
|
|
|
|
|
|
//按支付方式
|
|
|
- cashIncome = transactionSurver.getCashIncome();//本月现金收入
|
|
|
- lastcashIncome = transactionSurver.getLastCashIncome();//上月现金收入
|
|
|
- wechatIncome = transactionSurver.getWechatIncome();//本月微信
|
|
|
- lastwechatIncome = transactionSurver.getLastWechatIncome();//上月微信
|
|
|
- alipayIncome = transactionSurver.getAlipayIncome();//本月支付宝
|
|
|
- lastalipayIncome = transactionSurver.getLastAlipayIncome();//上月支付宝
|
|
|
+ cashIncome = transactionSurver.getCashIncome();//本账期现金收入
|
|
|
+ lastcashIncome = transactionSurver.getLastCashIncome();//上期现金收入
|
|
|
+ wechatIncome = transactionSurver.getWechatIncome();//本账期微信
|
|
|
+ lastwechatIncome = transactionSurver.getLastWechatIncome();//上期微信
|
|
|
+ alipayIncome = transactionSurver.getAlipayIncome();//本账期支付宝
|
|
|
+ lastalipayIncome = transactionSurver.getLastAlipayIncome();//上期支付宝
|
|
|
bankIncome = transactionSurver.getBankIncome();//本账期银行
|
|
|
lastbankIncome = transactionSurver.getLastBankIncome();//上期银行
|
|
|
//现金
|
|
@@ -316,21 +345,21 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
lastBankRate = df.format(income);
|
|
|
|
|
|
//饼状态占比率
|
|
|
- currentIncome = alipayIncome.add(wechatIncome).add(bankIncome).add(cashIncome);
|
|
|
+ BigDecimal current = alipayIncome.add(wechatIncome).add(bankIncome).add(cashIncome);
|
|
|
String CashRate = "";
|
|
|
String alipayRate = "";
|
|
|
String wechatRate = "";
|
|
|
String bankRate = "";
|
|
|
- income = cashIncome.divide(currentIncome,2, BigDecimal.ROUND_HALF_UP);
|
|
|
+ income = cashIncome.divide(current,2, BigDecimal.ROUND_HALF_UP);
|
|
|
CashRate = df.format(income);
|
|
|
|
|
|
- income = alipayIncome.divide(currentIncome,2, BigDecimal.ROUND_HALF_UP);
|
|
|
+ income = alipayIncome.divide(current,2, BigDecimal.ROUND_HALF_UP);
|
|
|
alipayRate = df.format(income);
|
|
|
|
|
|
- income = wechatIncome.divide(currentIncome,2, BigDecimal.ROUND_HALF_UP);
|
|
|
+ income = wechatIncome.divide(current,2, BigDecimal.ROUND_HALF_UP);
|
|
|
wechatRate = df.format(income);
|
|
|
|
|
|
- income = bankIncome.divide(currentIncome,2, BigDecimal.ROUND_HALF_UP);
|
|
|
+ income = bankIncome.divide(current,2, BigDecimal.ROUND_HALF_UP);
|
|
|
bankRate = df.format(income);
|
|
|
|
|
|
//收入总数
|
|
@@ -345,10 +374,12 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
payTransactionSurveyDto.setLastAlipayRate(lastAlipayRate);
|
|
|
payTransactionSurveyDto.setBankIncome(bankIncome);
|
|
|
payTransactionSurveyDto.setLastBankRate(lastBankRate);
|
|
|
+ //饼状图
|
|
|
payTransactionSurveyDto.setCashRate(CashRate);
|
|
|
payTransactionSurveyDto.setAlipayRate(alipayRate);
|
|
|
payTransactionSurveyDto.setWechatRate(wechatRate);
|
|
|
payTransactionSurveyDto.setBankRate(bankRate);
|
|
|
+ //年月
|
|
|
payTransactionSurveyDto.setYear(year);
|
|
|
payTransactionSurveyDto.setMonth(month);
|
|
|
payTransactionSurveyDto.setPeriodDates(year+"-"+String.format("%02d",month));
|
|
@@ -357,4 +388,78 @@ public class PayChargeSurveyServiceImpl implements PayChargeSurveyService {
|
|
|
}
|
|
|
return payTransactionSurveyDto;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ public PayFeeSueveyDto feeSurvey(){
|
|
|
+ PayFeeSueveyDto payFeeSveveyDto = new PayFeeSueveyDto();
|
|
|
+ LoginUser loginUser = UserUtil.getCurrentUser();
|
|
|
+ BigInteger siteId = BigInteger.valueOf(loginUser.getSiteId());
|
|
|
+ BigInteger customerId = BigInteger.valueOf(loginUser.getCustomerId());
|
|
|
+ BigDecimal defc = new BigDecimal("0.0");
|
|
|
+ try {
|
|
|
+ List<BaseClosingAccountInfoDto> closinList = baseClosingAccountInfoMapper.getList(null,null,
|
|
|
+ siteId,customerId,null);
|
|
|
+ List<PayFeeSuevey> feeList = new ArrayList<PayFeeSuevey>();
|
|
|
+ PayFeeSuevey feeSuevey = new PayFeeSuevey();
|
|
|
+ //查找当前账期应收
|
|
|
+ Integer year = closinList.get(0).getYear();
|
|
|
+ Integer month = closinList.get(0).getMonth();
|
|
|
+ PayChargeSurvey chargeSurvey = payChargeSurveyMapper.getSumReceivable(year,month,siteId,customerId);
|
|
|
+ BigDecimal sumReceivable = chargeSurvey.getReceivableNumber();//应收总额
|
|
|
+ //查找当前账期实收
|
|
|
+ BigDecimal sumReceived = payChargeSurveyMapper.getSumReceived(year,month,siteId,customerId);
|
|
|
+ //查找当前账期预存
|
|
|
+ BigDecimal sumPrestore = payChargeSurveyMapper.getSumPrestore(year,month,siteId,customerId);
|
|
|
+ //查找当前账期欠费
|
|
|
+ BigDecimal sumDebt = chargeSurvey.getDebtNumber();//欠费总额
|
|
|
+ feeSuevey.setSumReceivable(sumReceivable);
|
|
|
+ feeSuevey.setSumReceived(sumReceived);
|
|
|
+ feeSuevey.setSumRecharge(sumPrestore);
|
|
|
+ feeSuevey.setSumDebt(sumDebt);
|
|
|
+ feeSuevey.setYear(year);
|
|
|
+ feeSuevey.setMonth(month);
|
|
|
+ feeSuevey.setPeriodDate(year+"-"+String.format("%02d",month));
|
|
|
+ feeList.add(feeSuevey);
|
|
|
+ //查找历史数据
|
|
|
+ List<PayFeeSuevey> list = payChargeSurveyMapper.getFeeGroup(null,null,siteId,customerId);
|
|
|
+ feeList.addAll(list);
|
|
|
+
|
|
|
+ Integer lastYear = 0;
|
|
|
+ Integer lastMonth = 0;
|
|
|
+ Integer num =0;
|
|
|
+ PayFeeSuevey fee = feeList.get(feeList.size()-1);
|
|
|
+ num = fee.getMonth();
|
|
|
+ lastYear = fee.getYear();
|
|
|
+ lastMonth = fee.getMonth();
|
|
|
+ List<PayFeeSuevey> sList = new ArrayList<PayFeeSuevey>();
|
|
|
+ for(int i=feeList.size(); i<=11; i++ ){
|
|
|
+ num--;
|
|
|
+ if(num == 0){
|
|
|
+ lastYear = lastYear-1;
|
|
|
+ lastMonth = 12;
|
|
|
+ num = 12;
|
|
|
+ }else{
|
|
|
+ lastYear = lastYear;
|
|
|
+ lastMonth = num;
|
|
|
+ }
|
|
|
+ PayFeeSuevey suevey = new PayFeeSuevey();
|
|
|
+ suevey.setSumReceivable(defc);
|
|
|
+ suevey.setSumReceived(defc);
|
|
|
+ suevey.setSumRecharge(defc);
|
|
|
+ suevey.setSumDebt(defc);
|
|
|
+ suevey.setYear(lastYear);
|
|
|
+ suevey.setMonth(lastMonth);
|
|
|
+ suevey.setPeriodDate(lastYear+"-"+String.format("%02d",lastMonth));
|
|
|
+ sList.add(suevey);
|
|
|
+ }
|
|
|
+ feeList.addAll(sList);
|
|
|
+
|
|
|
+ payFeeSveveyDto.list = feeList;
|
|
|
+ }catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ return payFeeSveveyDto;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|