|
@@ -1,12 +1,17 @@
|
|
|
package com.qmrb.system.service.impl;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Collections;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Set;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.time.ZoneId;
|
|
|
+import java.time.temporal.ChronoUnit;
|
|
|
+import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
+import cn.hutool.core.date.DateUnit;
|
|
|
+import cn.hutool.core.date.DateUtil;
|
|
|
+import com.qmrb.system.pojo.entity.CarPark;
|
|
|
import com.qmrb.system.pojo.entity.MyCarPlateNumber;
|
|
|
+import com.qmrb.system.service.ICarParkService;
|
|
|
import com.qmrb.system.service.IMyCarPlateNumberService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
@@ -44,6 +49,10 @@ public class BarnRecordServiceImpl extends ServiceImpl<BarnRecordMapper, BarnRec
|
|
|
|
|
|
@Autowired
|
|
|
private IMyCarPlateNumberService myCarPlateNumberService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ICarParkService carParkService;
|
|
|
+
|
|
|
|
|
|
/**分页查询
|
|
|
* */
|
|
@@ -63,6 +72,9 @@ public class BarnRecordServiceImpl extends ServiceImpl<BarnRecordMapper, BarnRec
|
|
|
}
|
|
|
|
|
|
}
|
|
|
+ if (StrUtil.isNotBlank(queryParams.getCarNumber())) {
|
|
|
+ queryWrapper.eq(BarnRecord::getCarNumber,queryParams.getCarNumber());
|
|
|
+ }
|
|
|
queryWrapper.orderByDesc(BarnRecord::getCreateTime);
|
|
|
// 查询数据
|
|
|
Page<BarnRecord> dictItemPage = this.page(
|
|
@@ -70,9 +82,26 @@ public class BarnRecordServiceImpl extends ServiceImpl<BarnRecordMapper, BarnRec
|
|
|
queryWrapper
|
|
|
|
|
|
);
|
|
|
+ List<CarPark> list = carParkService.list();
|
|
|
+ HashMap<Long, String> map = new HashMap<>();
|
|
|
+ if(CollectionUtil.isNotEmpty(list)){
|
|
|
+ list.stream().forEach(item->{
|
|
|
+ map.put(item.getId(),item.getName());
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
// 实体转换
|
|
|
Page<BarnRecordVO> pageResult = converter.entity2Page(dictItemPage);
|
|
|
+
|
|
|
+ ArrayList<BarnRecordVO> barnRecords = new ArrayList<>();
|
|
|
+ for (BarnRecordVO record : pageResult.getRecords()) {
|
|
|
+ if(record.getCarParkId() != null && map.keySet().contains(record.getCarParkId())){
|
|
|
+ record.setCarParkName(map.get(record.getCarParkId()));
|
|
|
+ }
|
|
|
+ barnRecords.add(record);
|
|
|
+ }
|
|
|
+ pageResult.setRecords(barnRecords);
|
|
|
return pageResult;
|
|
|
}
|
|
|
|
|
@@ -111,4 +140,84 @@ public class BarnRecordServiceImpl extends ServiceImpl<BarnRecordMapper, BarnRec
|
|
|
BarnRecordForm form = converter.entity2Form(entity);
|
|
|
return form;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 计算停车缴纳金额
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public BarnRecordForm getCarParkUseLogOrder(Long id) {
|
|
|
+ // 获取entity
|
|
|
+ BarnRecord entity = this.getById(id);
|
|
|
+ Assert.isTrue(entity != null, "岗亭端停车记录不存在");
|
|
|
+
|
|
|
+ // 实体转换
|
|
|
+ BarnRecordForm form = converter.entity2Form(entity);
|
|
|
+
|
|
|
+ if(form.getOutTime() != null){
|
|
|
+ form.setParkingTime(calculateTimeDifference(form.getInTime(),form.getOutTime()));
|
|
|
+ }else{
|
|
|
+ form.setParkingTime(calculateTimeDifference(form.getInTime(),new Date()));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ List<CarPark> list = carParkService.list();
|
|
|
+ HashMap<Long, String> map = new HashMap<>();
|
|
|
+ if(CollectionUtil.isNotEmpty(list)){
|
|
|
+ list.stream().forEach(item->{
|
|
|
+ map.put(item.getId(),item.getName());
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if(form.getCarParkId() != null && map.keySet().contains(form.getCarParkId())){
|
|
|
+ form.setCarParkName(map.get(form.getCarParkId()));
|
|
|
+ }
|
|
|
+ form.setPendingAmount(new BigDecimal(15));
|
|
|
+ form.setBillingAmount(new BigDecimal(15));
|
|
|
+ form.setReceivedAmount(BigDecimal.ZERO);
|
|
|
+ return form;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 计算两个时间差(年,月,星期,日,时,分,秒)
|
|
|
+ *
|
|
|
+ * @param startDate
|
|
|
+ * @param endDate
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public static String calculateTimeDifference(Date startDate, Date endDate) {
|
|
|
+ if (null == startDate || null == endDate) {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+ ZoneId zoneId = ZoneId.systemDefault();
|
|
|
+ LocalDateTime fromDateTime = LocalDateTime.ofInstant(startDate.toInstant(), zoneId);
|
|
|
+ LocalDateTime toDateTime = LocalDateTime.ofInstant(endDate.toInstant(), zoneId);
|
|
|
+
|
|
|
+ LocalDateTime tempDateTime = LocalDateTime.from(fromDateTime);
|
|
|
+
|
|
|
+ long years = tempDateTime.until(toDateTime, ChronoUnit.YEARS);
|
|
|
+ tempDateTime = tempDateTime.plusYears(years);
|
|
|
+
|
|
|
+ long months = tempDateTime.until(toDateTime, ChronoUnit.MONTHS);
|
|
|
+ tempDateTime = tempDateTime.plusMonths(months);
|
|
|
+
|
|
|
+ long days = tempDateTime.until(toDateTime, ChronoUnit.DAYS);
|
|
|
+ tempDateTime = tempDateTime.plusDays(days);
|
|
|
+
|
|
|
+ long hours = tempDateTime.until(toDateTime, ChronoUnit.HOURS);
|
|
|
+ tempDateTime = tempDateTime.plusHours(hours);
|
|
|
+
|
|
|
+ long minutes = tempDateTime.until(toDateTime, ChronoUnit.MINUTES);
|
|
|
+ tempDateTime = tempDateTime.plusMinutes(minutes);
|
|
|
+
|
|
|
+ long seconds = tempDateTime.until(toDateTime, ChronoUnit.SECONDS);
|
|
|
+
|
|
|
+
|
|
|
+ return (DateUtil.between(endDate, startDate, DateUnit.HOUR) + ":")
|
|
|
+ + (minutes + ":")
|
|
|
+ + (seconds + "");
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|