定时任务,小程序首页桩统计
This commit is contained in:
parent
8e11f5665d
commit
b1c6171bea
@ -555,6 +555,14 @@ public class XhpcChargingStationServiceImpl implements IXhpcChargingStationServi
|
|||||||
|
|
||||||
Map<String, Object> map = xhpcChargingStationMapper.getXhpcChargingStationMessage(chargingStationId);
|
Map<String, Object> map = xhpcChargingStationMapper.getXhpcChargingStationMessage(chargingStationId);
|
||||||
|
|
||||||
|
if(map !=null&& map.get("stationType") !=null){
|
||||||
|
map.put("stationType",map.get("stationType").toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
if(map !=null&& map.get("constructionSite") !=null){
|
||||||
|
map.put("constructionSite",map.get("constructionSite").toString());
|
||||||
|
}
|
||||||
|
|
||||||
//图片信息
|
//图片信息
|
||||||
List<String> imgList = new ArrayList<>();
|
List<String> imgList = new ArrayList<>();
|
||||||
if (map !=null &&map.get("imgId") != null && map.get("imgId").toString() != "") {
|
if (map !=null &&map.get("imgId") != null && map.get("imgId").toString() != "") {
|
||||||
@ -618,8 +626,10 @@ public class XhpcChargingStationServiceImpl implements IXhpcChargingStationServi
|
|||||||
for (int i = 0; i < list.size(); i++) {
|
for (int i = 0; i < list.size(); i++) {
|
||||||
Map<String, Object> map = list.get(i);
|
Map<String, Object> map = list.get(i);
|
||||||
//桩(空闲和使用从redis获取)
|
//桩(空闲和使用从redis获取)
|
||||||
if(map.get("serialNumbers") !=null){
|
Map<String, Object> map1 =new HashMap<>();
|
||||||
map.put("free", countTerminal(map.get("serialNumbers").toString()));
|
map1 = getTerminalStatusSum(map1, Long.valueOf(map.get("chargingStationId").toString()), 0);
|
||||||
|
if(map1 !=null && map1.get("free") !=null){
|
||||||
|
map.put("free", map1.get("freeTime").toString());
|
||||||
}else{
|
}else{
|
||||||
map.put("free", 0);
|
map.put("free", 0);
|
||||||
}
|
}
|
||||||
@ -638,8 +648,11 @@ public class XhpcChargingStationServiceImpl implements IXhpcChargingStationServi
|
|||||||
Map<String, Object> map = xhpcChargingStationMapper.getWXXhpcChargingStationMessage(chargingStationId, longitude, latitude);
|
Map<String, Object> map = xhpcChargingStationMapper.getWXXhpcChargingStationMessage(chargingStationId, longitude, latitude);
|
||||||
|
|
||||||
//桩(空闲和使用从redis获取)
|
//桩(空闲和使用从redis获取)
|
||||||
if(map.get("serialNumbers") !=null){
|
|
||||||
map.put("free", countTerminal(map.get("serialNumbers").toString()));
|
Map<String, Object> map1 =new HashMap<>();
|
||||||
|
map1 = getTerminalStatusSum(map1, chargingStationId, 0);
|
||||||
|
if(map1 !=null && map1.get("free") !=null){
|
||||||
|
map.put("free", map1.get("freeTime").toString());
|
||||||
}else{
|
}else{
|
||||||
map.put("free", 0);
|
map.put("free", 0);
|
||||||
}
|
}
|
||||||
@ -1105,7 +1118,7 @@ public class XhpcChargingStationServiceImpl implements IXhpcChargingStationServi
|
|||||||
//终端状态用 redis数据
|
//终端状态用 redis数据
|
||||||
if(!"".equals(serialNumber) && serialNumber!=null){
|
if(!"".equals(serialNumber) && serialNumber!=null){
|
||||||
Map<String, Object> cacheMap =redisService.getCacheMap("gun:"+serialNumber);
|
Map<String, Object> cacheMap =redisService.getCacheMap("gun:"+serialNumber);
|
||||||
if(!cacheMap.isEmpty()){
|
if(cacheMap !=null && cacheMap.get("status") !=null){
|
||||||
if ("离线".equals(cacheMap.get("status").toString())){
|
if ("离线".equals(cacheMap.get("status").toString())){
|
||||||
status =0;
|
status =0;
|
||||||
}else if("故障".equals(cacheMap.get("status").toString())){
|
}else if("故障".equals(cacheMap.get("status").toString())){
|
||||||
|
|||||||
@ -377,7 +377,7 @@ public class XhpcPileOrderController extends BaseController {
|
|||||||
public R abnormalOrder(@RequestParam(value = "orderNo") String orderNo) {
|
public R abnormalOrder(@RequestParam(value = "orderNo") String orderNo) {
|
||||||
xhpcHistoryOrderService.addXhpcChargeOrder(orderNo,1);
|
xhpcHistoryOrderService.addXhpcChargeOrder(orderNo,1);
|
||||||
//获取实时订单
|
//获取实时订单
|
||||||
XhpcChargeOrder xhpcChargeOrder = xhpcChargeOrderService.getSerialNumberMessage(orderNo);
|
XhpcChargeOrder xhpcChargeOrder = xhpcChargeOrderService.getSerialNumberMessage(orderNo);
|
||||||
Long userId = xhpcChargeOrder.getUserId();
|
Long userId = xhpcChargeOrder.getUserId();
|
||||||
Map<String, Object> map = new HashMap<>();
|
Map<String, Object> map = new HashMap<>();
|
||||||
map.put("code", 500);
|
map.put("code", 500);
|
||||||
|
|||||||
@ -15,6 +15,8 @@ import com.xhpc.order.service.IXhpcChargeOrderService;
|
|||||||
import com.xhpc.order.service.IXhpcHistoryOrderService;
|
import com.xhpc.order.service.IXhpcHistoryOrderService;
|
||||||
import com.xhpc.order.service.IXhpcStatisticsService;
|
import com.xhpc.order.service.IXhpcStatisticsService;
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.scheduling.annotation.EnableScheduling;
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||||||
import org.springframework.scheduling.annotation.Scheduled;
|
import org.springframework.scheduling.annotation.Scheduled;
|
||||||
@ -46,6 +48,9 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private IXhpcChargeOrderService chargeOrderService;
|
private IXhpcChargeOrderService chargeOrderService;
|
||||||
|
|
||||||
|
|
||||||
|
private static final Logger logger = LoggerFactory.getLogger(XhpcHistoryOrderController.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 历史订单
|
* 历史订单
|
||||||
* @param phone 用户账号
|
* @param phone 用户账号
|
||||||
@ -84,7 +89,7 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
@GetMapping("/test3")
|
@GetMapping("/test3")
|
||||||
@Scheduled(cron = "0 0 12 * * ?")
|
@Scheduled(cron = "0 0 12 * * ?")
|
||||||
public void test3(){
|
public void test3(){
|
||||||
add(100,3);
|
add(1000,3);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 场站统计
|
* 场站统计
|
||||||
@ -92,7 +97,7 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
@GetMapping("/test2")
|
@GetMapping("/test2")
|
||||||
@Scheduled(cron = "0 0 11 * * ?")
|
@Scheduled(cron = "0 0 11 * * ?")
|
||||||
public void test2(){
|
public void test2(){
|
||||||
add(100,2);
|
add(1000,2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -105,7 +110,7 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
//跨时段,跨费率,计费模型
|
//跨时段,跨费率,计费模型
|
||||||
//日期统计
|
//日期统计
|
||||||
int type =1;
|
int type =1;
|
||||||
List<XhpcChargeHistoryOrder> list = xhpcHistoryOrderService.getStatistisList(100,type);
|
List<XhpcChargeHistoryOrder> list = xhpcHistoryOrderService.getStatistisList(1000,type);
|
||||||
//是否跨天
|
//是否跨天
|
||||||
if(list !=null && list.size()>0){
|
if(list !=null && list.size()>0){
|
||||||
for (XhpcChargeHistoryOrder xhpc:list) {
|
for (XhpcChargeHistoryOrder xhpc:list) {
|
||||||
@ -117,9 +122,18 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
DateTime parse1 = DateUtil.parse(DateUtil.format(endTime, "yyyy-MM-dd"), "yyyy-MM-dd");
|
DateTime parse1 = DateUtil.parse(DateUtil.format(endTime, "yyyy-MM-dd"), "yyyy-MM-dd");
|
||||||
long betweenDay = DateUtil.between(parse,parse1, DateUnit.DAY);
|
long betweenDay = DateUtil.between(parse,parse1, DateUnit.DAY);
|
||||||
|
|
||||||
BigDecimal decimal = new BigDecimal(xhpc.getChargingTimeNumber() / 3600).setScale(2, RoundingMode.HALF_UP);
|
if(xhpc.getTotalPrice().compareTo(new BigDecimal(0)) !=1){
|
||||||
//每分钟多少度点
|
continue;
|
||||||
BigDecimal divide = xhpc.getChargingDegree().divide(decimal, 2, RoundingMode.HALF_UP);
|
}
|
||||||
|
if(xhpc.getChargingDegree().compareTo(new BigDecimal(0)) !=1){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
//每分钟多少度电
|
||||||
|
BigDecimal decimal = new BigDecimal((endTime.getTime() - startTime.getTime())).divide(new BigDecimal(60000),2,RoundingMode.HALF_UP);
|
||||||
|
if(decimal.compareTo(new BigDecimal(0)) !=1){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
BigDecimal divide = xhpc.getChargingDegree().divide(decimal,2,RoundingMode.HALF_UP);
|
||||||
|
|
||||||
if(betweenDay==0){
|
if(betweenDay==0){
|
||||||
XhpcStatisticsStation xhpcSt =new XhpcStatisticsStation();
|
XhpcStatisticsStation xhpcSt =new XhpcStatisticsStation();
|
||||||
@ -150,6 +164,9 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
xhpcSt.setChargingPileId(xhpc.getChargingPileId());
|
xhpcSt.setChargingPileId(xhpc.getChargingPileId());
|
||||||
xhpcSt.setType(type);
|
xhpcSt.setType(type);
|
||||||
xhpcStatisticsService.addStatisticsStation(xhpcSt);
|
xhpcStatisticsService.addStatisticsStation(xhpcSt);
|
||||||
|
|
||||||
|
//修改历史订单表状态
|
||||||
|
xhpcHistoryOrderService.updateXhpcHistoryOrder(xhpc.getHistoryOrderId(),type + 1);
|
||||||
}else{
|
}else{
|
||||||
//跨天
|
//跨天
|
||||||
BigDecimal dec = new BigDecimal(DateUtil.between(startTime, DateUtil.endOfDay(startTime), DateUnit.MINUTE)/ 60).setScale(2, RoundingMode.HALF_UP);
|
BigDecimal dec = new BigDecimal(DateUtil.between(startTime, DateUtil.endOfDay(startTime), DateUnit.MINUTE)/ 60).setScale(2, RoundingMode.HALF_UP);
|
||||||
@ -163,8 +180,6 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
addStation(xhpc, tim,type, DateUtil.formatTime(startTime3), DateUtil.formatTime(endTime),divide);
|
addStation(xhpc, tim,type, DateUtil.formatTime(startTime3), DateUtil.formatTime(endTime),divide);
|
||||||
}
|
}
|
||||||
|
|
||||||
//修改历史订单表状态
|
|
||||||
xhpcHistoryOrderService.updateXhpcHistoryOrder(xhpc.getHistoryOrderId(),type + 1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -175,103 +190,113 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
@GetMapping("/test")
|
@GetMapping("/test")
|
||||||
@Scheduled(cron = "0 */1 * * * ?")
|
@Scheduled(cron = "0 */1 * * * ?")
|
||||||
public void test(){
|
public void test(){
|
||||||
|
logger.info(">>>>>>>>>>>>>>>>>>>>>>>小时统计定时任务>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
logger.info(">>>>>>>>>>>>>>>>>>>>>>>小时统计定时任务>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
logger.info(">>>>>>>>>>>>>>>>>>>>>>>小时统计定时任务>>>>>>>>>>>>>>>>>>>>>");
|
||||||
//获取500条待统计历史订单
|
//获取500条待统计历史订单
|
||||||
//跨时段,跨费率,计费模型
|
//跨时段,跨费率,计费模型
|
||||||
//小时统计
|
try{
|
||||||
List<XhpcChargeHistoryOrder> list = xhpcHistoryOrderService.getStatistisList(50,0);
|
//小时统计
|
||||||
if(list !=null && list.size()>0){
|
List<XhpcChargeHistoryOrder> list = xhpcHistoryOrderService.getStatistisList(50,0);
|
||||||
for (XhpcChargeHistoryOrder xhpc:list) {
|
if(list !=null && list.size()>0){
|
||||||
//开始时间、结束时间、模型id、状态、用户id、运营商、订单id、场站id、终端id、历史订单id、时间
|
for (XhpcChargeHistoryOrder xhpc:list) {
|
||||||
Date startTime = xhpc.getStartTime();
|
//开始时间、结束时间、模型id、状态、用户id、运营商、订单id、场站id、终端id、历史订单id、时间
|
||||||
Date endTime = xhpc.getEndTime();
|
Date startTime = xhpc.getStartTime();
|
||||||
Long rateModelId = xhpc.getRateModelId();
|
Date endTime = xhpc.getEndTime();
|
||||||
Long operatorId =xhpc.getOperatorId();
|
Long rateModelId = xhpc.getRateModelId();
|
||||||
Long chargingStationId = xhpc.getChargingStationId();
|
Long operatorId =xhpc.getOperatorId();
|
||||||
Long terminalId = xhpc.getTerminalId();
|
Long chargingStationId = xhpc.getChargingStationId();
|
||||||
Long historyOrderId = xhpc.getHistoryOrderId();
|
Long terminalId = xhpc.getTerminalId();
|
||||||
Date data = Calendar.getInstance().getTime();
|
Long historyOrderId = xhpc.getHistoryOrderId();
|
||||||
if(xhpc.getTotalPrice().compareTo(new BigDecimal(0)) !=1){
|
Date data = Calendar.getInstance().getTime();
|
||||||
break;
|
if(xhpc.getTotalPrice().compareTo(new BigDecimal(0)) !=1){
|
||||||
}
|
continue;
|
||||||
if(xhpc.getChargingDegree().compareTo(new BigDecimal(0)) !=1){
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
//每分钟多少度电
|
|
||||||
BigDecimal v = new BigDecimal((endTime.getTime() - startTime.getTime())).divide(new BigDecimal(60000),2,RoundingMode.HALF_UP);
|
|
||||||
if(v.compareTo(new BigDecimal(0)) !=1){
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
BigDecimal multiply = xhpc.getChargingDegree().divide(v,2,RoundingMode.HALF_UP);
|
|
||||||
|
|
||||||
//1时间没有跨天
|
|
||||||
DateTime parse = DateUtil.parse(DateUtil.format(startTime, "yyyy-MM-dd"), "yyyy-MM-dd");
|
|
||||||
DateTime parse1 = DateUtil.parse(DateUtil.format(endTime, "yyyy-MM-dd"), "yyyy-MM-dd");
|
|
||||||
long betweenDay = DateUtil.between(parse,parse1, DateUnit.DAY);
|
|
||||||
if(betweenDay==0){
|
|
||||||
//没有跨天
|
|
||||||
//是否跨时段
|
|
||||||
int startHour = DateUtil.hour(startTime, true);
|
|
||||||
int endHour = DateUtil.hour(endTime, true);
|
|
||||||
if(endHour==startHour){
|
|
||||||
//没有跨时段
|
|
||||||
XhpcStatisticsTimeInterval xhpcSt = new XhpcStatisticsTimeInterval();
|
|
||||||
xhpcSt.setStatus(endHour+1);
|
|
||||||
xhpcSt.setChargingDegree(xhpc.getChargingDegree());
|
|
||||||
xhpcSt.setChargingTime(new BigDecimal(xhpc.getChargingTimeNumber()).divide(new BigDecimal(3600),2, RoundingMode.HALF_UP));
|
|
||||||
xhpcSt.setChargingNumber(1);
|
|
||||||
xhpcSt.setPowerPrice(xhpc.getPowerPriceTotal());
|
|
||||||
xhpcSt.setServicePrice(xhpc.getServicePriceTotal());
|
|
||||||
xhpcSt.setTotalPrice(xhpc.getTotalPrice());
|
|
||||||
xhpcSt.setPromotionDiscount(xhpc.getPromotionDiscount());
|
|
||||||
xhpcSt.setActPrice(xhpc.getActPrice());
|
|
||||||
xhpcSt.setActPowerPrice(xhpc.getActPowerPrice());
|
|
||||||
xhpcSt.setActServicePrice(xhpc.getActServicePrice());
|
|
||||||
xhpcSt.setInternetCommission(xhpc.getInternetCommission());
|
|
||||||
xhpcSt.setInternetSvcCommission(xhpc.getInternetSvcCommission());
|
|
||||||
xhpcSt.setPlatformCommission(xhpc.getPlatformCommission());
|
|
||||||
xhpcSt.setPlatformSvcCommisssion(xhpc.getPlatformSvcCommisssion());
|
|
||||||
xhpcSt.setOperationCommission(xhpc.getOperationCommission());
|
|
||||||
xhpcSt.setOperationSvcCommission(xhpc.getOperationSvcCommission());
|
|
||||||
xhpcSt.setOperatorId(operatorId);
|
|
||||||
xhpcSt.setChargingStationId(chargingStationId);
|
|
||||||
xhpcSt.setCreateTime(data);
|
|
||||||
xhpcSt.setTerminalId(terminalId);
|
|
||||||
xhpcSt.setHistoryOrderId(historyOrderId);
|
|
||||||
if(xhpc.getSource()==1){
|
|
||||||
xhpcSt.setInternetUserId(xhpc.getUserId());
|
|
||||||
}
|
|
||||||
List<Map<String, Object>> reatTimeList = xhpcHistoryOrderService.getReatTimeList(DateUtil.formatTime(startTime), DateUtil.formatTime(endTime), rateModelId);
|
|
||||||
Map<String, Object> map = reatTimeList.get(0);
|
|
||||||
xhpcSt.setElecPriceEvcs(new BigDecimal(map.get("powerFee").toString()));
|
|
||||||
xhpcSt.setServicePriceEvcs(new BigDecimal(map.get("serviceFee").toString()));
|
|
||||||
xhpcSt.setStartTimeEvcs(DateUtil.format(startTime, "yyyy-MM-dd HH:mm:ss"));
|
|
||||||
xhpcSt.setEndTimeEvcs(DateUtil.format(endTime, "yyyy-MM-dd HH:mm:ss"));
|
|
||||||
xhpcStatisticsService.addStatisticsTime(xhpcSt);
|
|
||||||
}else {
|
|
||||||
//跨时段
|
|
||||||
//总共时段 endHour+1-startHour
|
|
||||||
String yyyyMMdd = DateUtil.format(startTime, "yyyy-MM-dd");
|
|
||||||
addStatisTime(xhpc, startTime, endTime, rateModelId, operatorId, chargingStationId, terminalId, historyOrderId, startHour, endHour,yyyyMMdd,multiply);
|
|
||||||
}
|
}
|
||||||
}else{
|
if(xhpc.getChargingDegree().compareTo(new BigDecimal(0)) !=1){
|
||||||
//跨天
|
continue;
|
||||||
Date updateTime2= DateUtil.parse(parse+" 23:59:59");
|
}
|
||||||
int startHour = DateUtil.hour(startTime, true);
|
//每分钟多少度电
|
||||||
int endHour = DateUtil.hour(updateTime2, true);
|
BigDecimal v = new BigDecimal((endTime.getTime() - startTime.getTime())).divide(new BigDecimal(60000),2,RoundingMode.HALF_UP);
|
||||||
String yyyyMMdd = DateUtil.format(startTime, "yyyy-MM-dd");
|
if(v.compareTo(new BigDecimal(0)) !=1){
|
||||||
addInterval(xhpc, startTime, updateTime2, rateModelId, operatorId, chargingStationId, terminalId, historyOrderId, startHour, endHour,yyyyMMdd,multiply);
|
continue;
|
||||||
//明天
|
}
|
||||||
DateTime tomorrow = DateUtil.offsetDay(startTime,1);
|
BigDecimal multiply = xhpc.getChargingDegree().divide(v,2,RoundingMode.HALF_UP);
|
||||||
Date startTime3 =DateUtil.beginOfDay(tomorrow);
|
|
||||||
int startHour1 = DateUtil.hour(startTime3, true);
|
//1时间没有跨天
|
||||||
int endHour1 = DateUtil.hour(endTime, true);
|
DateTime parse = DateUtil.parse(DateUtil.format(startTime, "yyyy-MM-dd"), "yyyy-MM-dd");
|
||||||
String yyyyMMdd1 = DateUtil.format(startTime3, "yyyy-MM-dd");
|
DateTime parse1 = DateUtil.parse(DateUtil.format(endTime, "yyyy-MM-dd"), "yyyy-MM-dd");
|
||||||
addInterval(xhpc, startTime3, endTime, rateModelId, operatorId, chargingStationId, terminalId, historyOrderId, startHour1, endHour1,yyyyMMdd1,multiply);
|
long betweenDay = DateUtil.between(parse,parse1, DateUnit.DAY);
|
||||||
|
if(betweenDay==0){
|
||||||
|
//没有跨天
|
||||||
|
//是否跨时段
|
||||||
|
int startHour = DateUtil.hour(startTime, true);
|
||||||
|
int endHour = DateUtil.hour(endTime, true);
|
||||||
|
if(endHour==startHour){
|
||||||
|
//没有跨时段
|
||||||
|
XhpcStatisticsTimeInterval xhpcSt = new XhpcStatisticsTimeInterval();
|
||||||
|
xhpcSt.setStatus(endHour+1);
|
||||||
|
xhpcSt.setChargingDegree(xhpc.getChargingDegree());
|
||||||
|
xhpcSt.setChargingTime(new BigDecimal(xhpc.getChargingTimeNumber()).divide(new BigDecimal(3600),2, RoundingMode.HALF_UP));
|
||||||
|
xhpcSt.setChargingNumber(1);
|
||||||
|
xhpcSt.setPowerPrice(xhpc.getPowerPriceTotal());
|
||||||
|
xhpcSt.setServicePrice(xhpc.getServicePriceTotal());
|
||||||
|
xhpcSt.setTotalPrice(xhpc.getTotalPrice());
|
||||||
|
xhpcSt.setPromotionDiscount(xhpc.getPromotionDiscount());
|
||||||
|
xhpcSt.setActPrice(xhpc.getActPrice());
|
||||||
|
xhpcSt.setActPowerPrice(xhpc.getActPowerPrice());
|
||||||
|
xhpcSt.setActServicePrice(xhpc.getActServicePrice());
|
||||||
|
xhpcSt.setInternetCommission(xhpc.getInternetCommission());
|
||||||
|
xhpcSt.setInternetSvcCommission(xhpc.getInternetSvcCommission());
|
||||||
|
xhpcSt.setPlatformCommission(xhpc.getPlatformCommission());
|
||||||
|
xhpcSt.setPlatformSvcCommisssion(xhpc.getPlatformSvcCommisssion());
|
||||||
|
xhpcSt.setOperationCommission(xhpc.getOperationCommission());
|
||||||
|
xhpcSt.setOperationSvcCommission(xhpc.getOperationSvcCommission());
|
||||||
|
xhpcSt.setOperatorId(operatorId);
|
||||||
|
xhpcSt.setChargingStationId(chargingStationId);
|
||||||
|
xhpcSt.setCreateTime(data);
|
||||||
|
xhpcSt.setTerminalId(terminalId);
|
||||||
|
xhpcSt.setHistoryOrderId(historyOrderId);
|
||||||
|
if(xhpc.getSource()==1){
|
||||||
|
xhpcSt.setInternetUserId(xhpc.getUserId());
|
||||||
|
}
|
||||||
|
List<Map<String, Object>> reatTimeList = xhpcHistoryOrderService.getReatTimeList(DateUtil.formatTime(startTime), DateUtil.formatTime(endTime), rateModelId);
|
||||||
|
Map<String, Object> map = reatTimeList.get(0);
|
||||||
|
xhpcSt.setElecPriceEvcs(new BigDecimal(map.get("powerFee").toString()));
|
||||||
|
xhpcSt.setServicePriceEvcs(new BigDecimal(map.get("serviceFee").toString()));
|
||||||
|
xhpcSt.setStartTimeEvcs(DateUtil.format(startTime, "yyyy-MM-dd HH:mm:ss"));
|
||||||
|
xhpcSt.setEndTimeEvcs(DateUtil.format(endTime, "yyyy-MM-dd HH:mm:ss"));
|
||||||
|
xhpcStatisticsService.addStatisticsTime(xhpcSt);
|
||||||
|
//修改历史订单表状态
|
||||||
|
xhpcHistoryOrderService.updateXhpcHistoryOrder(xhpc.getHistoryOrderId(),1);
|
||||||
|
|
||||||
|
}else {
|
||||||
|
//跨时段
|
||||||
|
//总共时段 endHour+1-startHour
|
||||||
|
String yyyyMMdd = DateUtil.format(startTime, "yyyy-MM-dd");
|
||||||
|
addStatisTime(xhpc, startTime, endTime, rateModelId, operatorId, chargingStationId, terminalId, historyOrderId, startHour, endHour,yyyyMMdd,multiply);
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
//跨天
|
||||||
|
Date updateTime2= DateUtil.endOfDay(startTime);
|
||||||
|
int startHour = DateUtil.hour(startTime, true);
|
||||||
|
int endHour = DateUtil.hour(updateTime2, true);
|
||||||
|
String yyyyMMdd = DateUtil.format(startTime, "yyyy-MM-dd");
|
||||||
|
addInterval(xhpc, startTime, updateTime2, rateModelId, operatorId, chargingStationId, terminalId, historyOrderId, startHour, endHour,yyyyMMdd,multiply);
|
||||||
|
//明天
|
||||||
|
DateTime tomorrow = DateUtil.offsetDay(startTime,1);
|
||||||
|
Date startTime3 =DateUtil.beginOfDay(tomorrow);
|
||||||
|
int startHour1 = DateUtil.hour(startTime3, true);
|
||||||
|
int endHour1 = DateUtil.hour(endTime, true);
|
||||||
|
String yyyyMMdd1 = DateUtil.format(startTime3, "yyyy-MM-dd");
|
||||||
|
addInterval(xhpc, startTime3, endTime, rateModelId, operatorId, chargingStationId, terminalId, historyOrderId, startHour1, endHour1,yyyyMMdd1,multiply);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
//修改状态
|
|
||||||
//修改历史订单表状态
|
|
||||||
xhpcHistoryOrderService.updateXhpcHistoryOrder(xhpc.getHistoryOrderId(),1);
|
|
||||||
}
|
}
|
||||||
|
}catch (Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
logger.info(">>>>>>>>>>>>>>>>>>>>>>>小时统计定时任务异常>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
logger.info(">>>>>>>>>>>>>>>>>>>>>>>小时统计定时任务异常>>>>>>>>>>>>>>>>>>>>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -293,6 +318,23 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 标记异常大于创建4小时,标记为异常
|
||||||
|
* @param
|
||||||
|
* @param
|
||||||
|
*/
|
||||||
|
@GetMapping("/test5")
|
||||||
|
@Scheduled(cron = "0 0/5 * * * ?")
|
||||||
|
public void test5(){
|
||||||
|
logger.info(">>>>>>>>>>>>>>>>>>>>>>>标记异常大于创建4小时,标记为异常>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
chargeOrderService.updateStatus();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void add(int number,int type){
|
public void add(int number,int type){
|
||||||
//获取500条待统计历史订单
|
//获取500条待统计历史订单
|
||||||
@ -392,6 +434,9 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
xhpcSt.setChargingPileId(xhpc.getChargingPileId());
|
xhpcSt.setChargingPileId(xhpc.getChargingPileId());
|
||||||
xhpcSt.setType(type);
|
xhpcSt.setType(type);
|
||||||
xhpcStatisticsService.addStatisticsStation(xhpcSt);
|
xhpcStatisticsService.addStatisticsStation(xhpcSt);
|
||||||
|
|
||||||
|
//修改历史订单表状态
|
||||||
|
xhpcHistoryOrderService.updateXhpcHistoryOrder(xhpc.getHistoryOrderId(),type + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void addStatisTime(XhpcChargeHistoryOrder xhpc, Date startTime, Date endTime, Long rateModelId, Long operatorId, Long chargingStationId, Long terminalId, Long historyOrderId, int startHour, int endHour,String yyyyMMdd,BigDecimal multiply) {
|
private void addStatisTime(XhpcChargeHistoryOrder xhpc, Date startTime, Date endTime, Long rateModelId, Long operatorId, Long chargingStationId, Long terminalId, Long historyOrderId, int startHour, int endHour,String yyyyMMdd,BigDecimal multiply) {
|
||||||
@ -448,6 +493,9 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
xhpcSt.setStartTimeEvcs(DateUtil.format(startTime, "yyyy-MM-dd HH:mm:ss"));
|
xhpcSt.setStartTimeEvcs(DateUtil.format(startTime, "yyyy-MM-dd HH:mm:ss"));
|
||||||
xhpcSt.setEndTimeEvcs(DateUtil.format(endTime, "yyyy-MM-dd HH:mm:ss"));
|
xhpcSt.setEndTimeEvcs(DateUtil.format(endTime, "yyyy-MM-dd HH:mm:ss"));
|
||||||
xhpcStatisticsService.addStatisticsTime(xhpcSt);
|
xhpcStatisticsService.addStatisticsTime(xhpcSt);
|
||||||
|
//修改状态
|
||||||
|
//修改历史订单表状态
|
||||||
|
xhpcHistoryOrderService.updateXhpcHistoryOrder(xhpc.getHistoryOrderId(),1);
|
||||||
}else{
|
}else{
|
||||||
//跨时段
|
//跨时段
|
||||||
//总共时段 endHour+1-startHour
|
//总共时段 endHour+1-startHour
|
||||||
@ -550,6 +598,9 @@ public class XhpcHistoryOrderController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
xhpcStatisticsService.addStatisticsTime(xhpcSt);
|
xhpcStatisticsService.addStatisticsTime(xhpcSt);
|
||||||
|
//修改状态
|
||||||
|
//修改历史订单表状态
|
||||||
|
xhpcHistoryOrderService.updateXhpcHistoryOrder(xhpc.getHistoryOrderId(),1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|||||||
@ -177,4 +177,9 @@ public interface XhpcChargeOrderMapper {
|
|||||||
@Param(value = "chargingAmt") Integer chargingAmt,
|
@Param(value = "chargingAmt") Integer chargingAmt,
|
||||||
@Param(value = "plateNum") String plateNum,
|
@Param(value = "plateNum") String plateNum,
|
||||||
@Param(value = "status") Integer status);
|
@Param(value = "status") Integer status);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 标记异常大于创建4小时,标记为异常
|
||||||
|
*/
|
||||||
|
void updateStatus();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -154,4 +154,9 @@ public interface IXhpcChargeOrderService {
|
|||||||
List<XhpcChargeOrder> getXhpcChargeOrderStatus(Integer status,Integer source);
|
List<XhpcChargeOrder> getXhpcChargeOrderStatus(Integer status,Integer source);
|
||||||
|
|
||||||
R startUpBy3rd(String internetSerialNumber, String driverId, Integer chargingAmt, String plateNum, Integer status, String connectorId);
|
R startUpBy3rd(String internetSerialNumber, String driverId, Integer chargingAmt, String plateNum, Integer status, String connectorId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 标记异常大于创建4小时,标记为异常
|
||||||
|
*/
|
||||||
|
void updateStatus();
|
||||||
}
|
}
|
||||||
@ -488,6 +488,11 @@ public class XhpcChargeOrderServiceImpl implements IXhpcChargeOrderService {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateStatus() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public static boolean isValidDate(String str) {
|
public static boolean isValidDate(String str) {
|
||||||
try {
|
try {
|
||||||
if (0 != str.length()) {
|
if (0 != str.length()) {
|
||||||
|
|||||||
@ -87,11 +87,16 @@ public class XhpcHistoryOrderServiceImpl implements IXhpcHistoryOrderService {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public AjaxResult getById(Long historyOrderId) {
|
public AjaxResult getById(Long historyOrderId) {
|
||||||
Map<String, Object> byId = xhpcHistoryOrderMapper.getById(historyOrderId);
|
try{
|
||||||
if(byId !=null){
|
Map<String, Object> byId = xhpcHistoryOrderMapper.getById(historyOrderId);
|
||||||
byId.putAll(getRateTime(byId.get("serialNumber").toString(),byId.get("actPrice").toString()));
|
if(byId !=null){
|
||||||
|
byId.putAll(getRateTime(byId.get("serialNumber").toString(),byId.get("actPrice").toString()));
|
||||||
|
}
|
||||||
|
return AjaxResult.success(byId);
|
||||||
|
}catch (Exception e){
|
||||||
|
|
||||||
}
|
}
|
||||||
return AjaxResult.success(byId);
|
return AjaxResult.success();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -173,8 +178,7 @@ public class XhpcHistoryOrderServiceImpl implements IXhpcHistoryOrderService {
|
|||||||
powerPrice=getBigDecimal(rateModelId,startTime2,updateTime2,xhpcChargeOrder.getChargingDegree());
|
powerPrice=getBigDecimal(rateModelId,startTime2,updateTime2,xhpcChargeOrder.getChargingDegree());
|
||||||
}else{
|
}else{
|
||||||
//跨天
|
//跨天
|
||||||
String startTime = DateUtil.format(startTime2, "yyyy-MM-dd");
|
Date updateTime = DateUtil.endOfDay(startTime2);
|
||||||
Date updateTime = DateUtil.parse(startTime+" 23:59:59");
|
|
||||||
powerPrice=getBigDecimal(rateModelId,startTime2,updateTime,xhpcChargeOrder.getChargingDegree());
|
powerPrice=getBigDecimal(rateModelId,startTime2,updateTime,xhpcChargeOrder.getChargingDegree());
|
||||||
//明天
|
//明天
|
||||||
DateTime tomorrow = DateUtil.offsetDay(startTime2,1);
|
DateTime tomorrow = DateUtil.offsetDay(startTime2,1);
|
||||||
@ -435,11 +439,9 @@ public class XhpcHistoryOrderServiceImpl implements IXhpcHistoryOrderService {
|
|||||||
return getBigDecimal(actPrice, powerPriceTotal, servicePriceTotal, chargeOrder, rateModelId, startTime2, updateTime2, chargingDegree, list);
|
return getBigDecimal(actPrice, powerPriceTotal, servicePriceTotal, chargeOrder, rateModelId, startTime2, updateTime2, chargingDegree, list);
|
||||||
}else{
|
}else{
|
||||||
//跨天
|
//跨天
|
||||||
String startTime = DateUtil.format(startTime2, "yyyy-MM-dd");
|
Date updateTime = DateUtil.endOfDay(startTime2);
|
||||||
Date updateTime = DateUtil.parse(startTime+" 23:59:59");
|
|
||||||
Map<String, Object> map1 = getBigDecimal(actPrice, powerPriceTotal, servicePriceTotal, chargeOrder, rateModelId, startTime2, updateTime, chargingDegree, list);
|
Map<String, Object> map1 = getBigDecimal(actPrice, powerPriceTotal, servicePriceTotal, chargeOrder, rateModelId, startTime2, updateTime, chargingDegree, list);
|
||||||
//获取
|
//获取
|
||||||
List<Map<String, Object>> list1 = (List<Map<String, Object>>)map1.get("list");
|
|
||||||
BigDecimal powerPriceTotal1 =(BigDecimal)map1.get("powerPriceTotal");
|
BigDecimal powerPriceTotal1 =(BigDecimal)map1.get("powerPriceTotal");
|
||||||
BigDecimal servicePriceTotal1 =(BigDecimal)map1.get("servicePriceTotal");
|
BigDecimal servicePriceTotal1 =(BigDecimal)map1.get("servicePriceTotal");
|
||||||
//明天
|
//明天
|
||||||
@ -465,9 +467,9 @@ public class XhpcHistoryOrderServiceImpl implements IXhpcHistoryOrderService {
|
|||||||
int size = reatTimeList.size();
|
int size = reatTimeList.size();
|
||||||
if(size==1){
|
if(size==1){
|
||||||
BigDecimal powerFee = new BigDecimal(reatTimeList.get(0).get("powerFee").toString()).setScale(2, BigDecimal.ROUND_DOWN);
|
BigDecimal powerFee = new BigDecimal(reatTimeList.get(0).get("powerFee").toString()).setScale(2, BigDecimal.ROUND_DOWN);
|
||||||
powerPriceTotal = powerFee.multiply(degree).setScale(2, BigDecimal.ROUND_DOWN);
|
//powerPriceTotal = powerFee.multiply(degree).setScale(2, BigDecimal.ROUND_DOWN);
|
||||||
BigDecimal servicePrice = new BigDecimal(reatTimeList.get(0).get("serviceFee").toString()).setScale(2, BigDecimal.ROUND_DOWN);
|
BigDecimal servicePrice = new BigDecimal(reatTimeList.get(0).get("serviceFee").toString()).setScale(2, BigDecimal.ROUND_DOWN);
|
||||||
servicePriceTotal=servicePrice.multiply(chargingDegree).setScale(2, BigDecimal.ROUND_DOWN);
|
//servicePriceTotal=servicePrice.multiply(chargingDegree).setScale(2, BigDecimal.ROUND_DOWN);
|
||||||
map1.put("time",startTime+"-"+endTime);
|
map1.put("time",startTime+"-"+endTime);
|
||||||
map1.put("powerPrice",powerFee);
|
map1.put("powerPrice",powerFee);
|
||||||
map1.put("servicePrice",servicePrice);
|
map1.put("servicePrice",servicePrice);
|
||||||
|
|||||||
@ -138,13 +138,11 @@ public class XhpcRealTimeOrderServiceImpl implements IXhpcRealTimeOrderService {
|
|||||||
powerPriceTotal = getBigDecimal(rateModelId, startTime2, updateTime2, chargingDegree, powerPriceTotal);
|
powerPriceTotal = getBigDecimal(rateModelId, startTime2, updateTime2, chargingDegree, powerPriceTotal);
|
||||||
}else{
|
}else{
|
||||||
//跨天
|
//跨天
|
||||||
String startTime = DateUtil.format(startTime2, "yyyy-MM-dd");
|
Date updateTime = DateUtil.endOfDay(startTime2);
|
||||||
Date updateTime = DateUtil.parse(startTime+" 23:59:59");
|
|
||||||
powerPriceTotal = getBigDecimal(rateModelId, startTime2, updateTime, chargingDegree, powerPriceTotal);
|
powerPriceTotal = getBigDecimal(rateModelId, startTime2, updateTime, chargingDegree, powerPriceTotal);
|
||||||
//明天
|
//明天
|
||||||
DateTime tomorrow = DateUtil.offsetDay(startTime2,1);
|
DateTime tomorrow = DateUtil.offsetDay(startTime2,1);
|
||||||
String startTime1 = DateUtil.format(tomorrow, "yyyy-MM-dd");
|
Date startTime3 = DateUtil.beginOfDay(tomorrow);
|
||||||
Date startTime3 = DateUtil.parse(startTime1+" 00:00:00");
|
|
||||||
powerPriceTotal = getBigDecimal(rateModelId, startTime3, updateTime2, chargingDegree, powerPriceTotal);
|
powerPriceTotal = getBigDecimal(rateModelId, startTime3, updateTime2, chargingDegree, powerPriceTotal);
|
||||||
}
|
}
|
||||||
//算服务费和电费
|
//算服务费和电费
|
||||||
@ -188,6 +186,8 @@ public class XhpcRealTimeOrderServiceImpl implements IXhpcRealTimeOrderService {
|
|||||||
}
|
}
|
||||||
//生成一条历史订单
|
//生成一条历史订单
|
||||||
XhpcHistoryOrder xhpcHistoryOrder = new XhpcHistoryOrder();
|
XhpcHistoryOrder xhpcHistoryOrder = new XhpcHistoryOrder();
|
||||||
|
|
||||||
|
|
||||||
addSettlement(powerPrice, servicePrice, money, surplusPowerPrice, surplusServicePrice, xhpcChargeOrder, userId, userMessage,0,null,xhpcHistoryOrder);
|
addSettlement(powerPrice, servicePrice, money, surplusPowerPrice, surplusServicePrice, xhpcChargeOrder, userId, userMessage,0,null,xhpcHistoryOrder);
|
||||||
|
|
||||||
return AjaxResult.success();
|
return AjaxResult.success();
|
||||||
@ -425,12 +425,12 @@ public class XhpcRealTimeOrderServiceImpl implements IXhpcRealTimeOrderService {
|
|||||||
logger.info("<<<<<<<<<<<<<<<<发送短信失败>>>>>>>>>>>>>>>>>");
|
logger.info("<<<<<<<<<<<<<<<<发送短信失败>>>>>>>>>>>>>>>>>");
|
||||||
}
|
}
|
||||||
// 另起线程处理业务上传redis数据
|
// 另起线程处理业务上传redis数据
|
||||||
executorService.execute(new Runnable() {
|
// executorService.execute(new Runnable() {
|
||||||
@Override
|
// @Override
|
||||||
public void run() {
|
// public void run() {
|
||||||
addPileEndOrder(xhpcHistoryOrder, xhpcChargeOrder, xhpcChargeOrder.getSerialNumber(),1);
|
// addPileEndOrder(xhpcHistoryOrder, xhpcChargeOrder, xhpcChargeOrder.getSerialNumber(),1);
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
}
|
}
|
||||||
xhpcChargeOrderService.updateXhpcChargeOrder(xhpcChargeOrder);
|
xhpcChargeOrderService.updateXhpcChargeOrder(xhpcChargeOrder);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -512,4 +512,5 @@
|
|||||||
#{status},1)
|
#{status},1)
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
@ -600,6 +600,7 @@
|
|||||||
co.end_time as endTime,
|
co.end_time as endTime,
|
||||||
co.update_time as updateTime,
|
co.update_time as updateTime,
|
||||||
co.source as source,
|
co.source as source,
|
||||||
|
dispute_order_status as disputeOrderStatus,
|
||||||
(SELECT phone FROM xhpc_app_user where app_user_id = co.user_id) as appUserPhone,
|
(SELECT phone FROM xhpc_app_user where app_user_id = co.user_id) as appUserPhone,
|
||||||
(SELECT phone from xhpc_internet_user where internet_user_id = co.user_id) as internetUserPhone
|
(SELECT phone from xhpc_internet_user where internet_user_id = co.user_id) as internetUserPhone
|
||||||
from xhpc_history_order as ho
|
from xhpc_history_order as ho
|
||||||
@ -608,6 +609,7 @@
|
|||||||
left join xhpc_charge_order co on co.charge_order_id = ho.charge_order_id
|
left join xhpc_charge_order co on co.charge_order_id = ho.charge_order_id
|
||||||
left join xhpc_terminal as ter on ter.terminal_id = ho.terminal_id
|
left join xhpc_terminal as ter on ter.terminal_id = ho.terminal_id
|
||||||
left join xhpc_charging_pile as cp on cp.charging_pile_id = ter.charging_pile_id
|
left join xhpc_charging_pile as cp on cp.charging_pile_id = ter.charging_pile_id
|
||||||
|
left join et_dispute_orders as ed on ed.start_charge_seq = ho.internet_serial_number and ed.dispute_order_status !=2
|
||||||
where ho.status =0 and ho.del_flag=0
|
where ho.status =0 and ho.del_flag=0
|
||||||
<if test="type !=null">
|
<if test="type !=null">
|
||||||
and ho.type=#{type}
|
and ho.type=#{type}
|
||||||
@ -706,6 +708,14 @@
|
|||||||
ho.operation_svc_commission as operationSvcCommission,
|
ho.operation_svc_commission as operationSvcCommission,
|
||||||
ho.act_power_price as actPowerPrice,
|
ho.act_power_price as actPowerPrice,
|
||||||
ho.act_service_price as actServicePrice,
|
ho.act_service_price as actServicePrice,
|
||||||
|
ed.total_power as sanTotalPower,
|
||||||
|
ed.total_money as sanTotalMoney,
|
||||||
|
case when ed.dispute_reason=1 then "交易不存在"
|
||||||
|
when ed.dispute_reason=2 then "交易金额错误"
|
||||||
|
when ed.dispute_reason=3 then "交易电量错误"
|
||||||
|
else "自定义!"
|
||||||
|
end sanDisputeReason,
|
||||||
|
ed.check_order_seq as sanCheckOrderSeq,
|
||||||
(SELECT phone FROM xhpc_app_user where app_user_id = co.user_id) as appUserPhone,
|
(SELECT phone FROM xhpc_app_user where app_user_id = co.user_id) as appUserPhone,
|
||||||
(SELECT phone from xhpc_internet_user where internet_user_id = co.user_id) as internetUserPhone,
|
(SELECT phone from xhpc_internet_user where internet_user_id = co.user_id) as internetUserPhone,
|
||||||
case when ho.stop_reason_evcs=40 then "APP远程停止"
|
case when ho.stop_reason_evcs=40 then "APP远程停止"
|
||||||
@ -726,6 +736,7 @@
|
|||||||
left join xhpc_charge_order co on co.charge_order_id = ho.charge_order_id
|
left join xhpc_charge_order co on co.charge_order_id = ho.charge_order_id
|
||||||
left join xhpc_terminal as ter on ter.terminal_id = ho.terminal_id
|
left join xhpc_terminal as ter on ter.terminal_id = ho.terminal_id
|
||||||
left join xhpc_charging_pile as cp on cp.charging_pile_id = ter.charging_pile_id
|
left join xhpc_charging_pile as cp on cp.charging_pile_id = ter.charging_pile_id
|
||||||
|
left join et_dispute_orders as ed on ed.start_charge_seq = ho.internet_serial_number and ed.dispute_order_status !=2
|
||||||
where ho.history_order_id=#{historyOrderId}
|
where ho.history_order_id=#{historyOrderId}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
@ -749,8 +760,8 @@
|
|||||||
co.charge_order_id as chargeOrderId,
|
co.charge_order_id as chargeOrderId,
|
||||||
co.charging_station_id as chargingStationId,
|
co.charging_station_id as chargingStationId,
|
||||||
co.terminal_id as terminalId,
|
co.terminal_id as terminalId,
|
||||||
co.start_time as startTime,
|
ho.start_time as startTime,
|
||||||
co.end_time as endTime,
|
ho.end_time as endTime,
|
||||||
co.charging_time_number as chargingTimeNumber,
|
co.charging_time_number as chargingTimeNumber,
|
||||||
co.charging_degree as chargingDegree,
|
co.charging_degree as chargingDegree,
|
||||||
co.rate_model_id as rateModelId,
|
co.rate_model_id as rateModelId,
|
||||||
@ -761,7 +772,7 @@
|
|||||||
left join xhpc_charge_order co on co.charge_order_id = ho.charge_order_id
|
left join xhpc_charge_order co on co.charge_order_id = ho.charge_order_id
|
||||||
left join xhpc_charging_station cs on cs.charging_station_id = co.charging_station_id
|
left join xhpc_charging_station cs on cs.charging_station_id = co.charging_station_id
|
||||||
left join xhpc_terminal as te on te.terminal_id = ho.terminal_id
|
left join xhpc_terminal as te on te.terminal_id = ho.terminal_id
|
||||||
where state = #{state}
|
where ho.state = #{state} and ho.total_price >0 and ho.end_time > ho.start_time
|
||||||
limit 0,#{number}
|
limit 0,#{number}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|||||||
@ -726,6 +726,4 @@
|
|||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|||||||
@ -130,11 +130,13 @@ public class XhpcAppUserServiceImpl implements IXhpcAppUserUserService {
|
|||||||
if (StatusConstants.OPERATION_WX_TYPE.equals(type)) {
|
if (StatusConstants.OPERATION_WX_TYPE.equals(type)) {
|
||||||
if (StringUtils.isEmpty(info.getWeixinOpenId())) {
|
if (StringUtils.isEmpty(info.getWeixinOpenId())) {
|
||||||
info.setWeixinOpenId(openid);
|
info.setWeixinOpenId(openid);
|
||||||
|
info.setWeixinLogin(1);
|
||||||
xhpcAppUserMapper.update(info);
|
xhpcAppUserMapper.update(info);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (StringUtils.isEmpty(info.getAlipayOpenId())) {
|
if (StringUtils.isEmpty(info.getAlipayOpenId())) {
|
||||||
info.setAlipayOpenId(openid);
|
info.setAlipayOpenId(openid);
|
||||||
|
info.setAlipayLogin(1);
|
||||||
xhpcAppUserMapper.update(info);
|
xhpcAppUserMapper.update(info);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -16,10 +16,10 @@ spring:
|
|||||||
nacos:
|
nacos:
|
||||||
discovery:
|
discovery:
|
||||||
# 服务注册地址
|
# 服务注册地址
|
||||||
server-addr: 127.0.0.1:8848
|
server-addr: 172.31.183.135:8848
|
||||||
config:
|
config:
|
||||||
# 配置中心地址
|
# 配置中心地址
|
||||||
server-addr: 127.0.0.1:8848
|
server-addr: 172.31.183.135:8848
|
||||||
# 配置文件格式
|
# 配置文件格式
|
||||||
file-extension: yml
|
file-extension: yml
|
||||||
# 共享配置
|
# 共享配置
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user