|
@@ -7,17 +7,18 @@ import java.time.temporal.ChronoUnit;
|
|
|
import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.bean.copier.CopyOptions;
|
|
|
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.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
-import com.qmrb.system.common.enums.StatusEnum;
|
|
|
-import com.qmrb.system.pojo.vo.Option;
|
|
|
import com.qmrb.system.converter.BarnRecordConverter;
|
|
|
import com.qmrb.system.pojo.entity.BarnRecord;
|
|
|
import com.qmrb.system.pojo.form.BarnRecordForm;
|
|
@@ -44,190 +45,214 @@ import jakarta.validation.Valid;
|
|
|
@Service
|
|
|
public class BarnRecordServiceImpl extends ServiceImpl<BarnRecordMapper, BarnRecord> implements IBarnRecordService {
|
|
|
|
|
|
- @Autowired
|
|
|
- private BarnRecordConverter converter;
|
|
|
-
|
|
|
- @Autowired
|
|
|
- private IMyCarPlateNumberService myCarPlateNumberService;
|
|
|
-
|
|
|
- @Autowired
|
|
|
- private ICarParkService carParkService;
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- * */
|
|
|
- @Override
|
|
|
- public Page<BarnRecordVO> getPage(BarnRecordQuery queryParams) {
|
|
|
-
|
|
|
+ @Autowired
|
|
|
+ private BarnRecordConverter converter;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IMyCarPlateNumberService myCarPlateNumberService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ICarParkService carParkService;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ * 分页查询
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public Page<BarnRecordVO> getPage(BarnRecordQuery queryParams) {
|
|
|
+
|
|
|
int pageNum = queryParams.getPageNum();
|
|
|
int pageSize = queryParams.getPageSize();
|
|
|
-
|
|
|
- LambdaQueryWrapper<BarnRecord> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
- if(queryParams.getUserId() != null){
|
|
|
-
|
|
|
- List<MyCarPlateNumber> list = myCarPlateNumberService.list(new LambdaQueryWrapper<MyCarPlateNumber>().eq(MyCarPlateNumber::getUserId, queryParams.getUserId()).orderByDesc(MyCarPlateNumber::getCreateTime));
|
|
|
- Assert.isTrue(CollectionUtil.isNotEmpty(list), "用户暂未绑定车牌!");
|
|
|
- if(CollectionUtil.isNotEmpty(list)){
|
|
|
- queryWrapper.eq(BarnRecord::getCarNumber,list.get(0).getPlateNumber());
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
- if (StrUtil.isNotBlank(queryParams.getCarNumber())) {
|
|
|
- queryWrapper.eq(BarnRecord::getCarNumber,queryParams.getCarNumber());
|
|
|
- }
|
|
|
- queryWrapper.ge(StrUtil.isNotBlank(queryParams.getIntimeBegin()),BarnRecord::getInTime,queryParams.getIntimeBegin())
|
|
|
- .le(StrUtil.isNotBlank(queryParams.getIntimeEnd()),BarnRecord::getInTime,queryParams.getIntimeEnd());
|
|
|
- queryWrapper.ge(StrUtil.isNotBlank(queryParams.getOutTimeBegin()),BarnRecord::getOutTime,queryParams.getOutTimeBegin())
|
|
|
- .le(StrUtil.isNotBlank(queryParams.getOutTimeEnd()),BarnRecord::getOutTime,queryParams.getOutTimeEnd());
|
|
|
-
|
|
|
- queryWrapper.orderByDesc(BarnRecord::getCreateTime);
|
|
|
+
|
|
|
+ LambdaQueryWrapper<BarnRecord> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
+ if (queryParams.getUserId() != null) {
|
|
|
+
|
|
|
+ List<MyCarPlateNumber> list = myCarPlateNumberService.list(new LambdaQueryWrapper<MyCarPlateNumber>().eq(MyCarPlateNumber::getUserId, queryParams.getUserId()).orderByDesc(MyCarPlateNumber::getCreateTime));
|
|
|
+ Assert.isTrue(CollectionUtil.isNotEmpty(list), "用户暂未绑定车牌!");
|
|
|
+ if (CollectionUtil.isNotEmpty(list)) {
|
|
|
+ queryWrapper.eq(BarnRecord::getCarNumber, list.get(0).getPlateNumber());
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ if (StrUtil.isNotBlank(queryParams.getCarNumber())) {
|
|
|
+ queryWrapper.eq(BarnRecord::getCarNumber, queryParams.getCarNumber());
|
|
|
+ }
|
|
|
+ queryWrapper.ge(StrUtil.isNotBlank(queryParams.getIntimeBegin()), BarnRecord::getInTime, queryParams.getIntimeBegin()).le(StrUtil.isNotBlank(queryParams.getIntimeEnd()), BarnRecord::getInTime, queryParams.getIntimeEnd());
|
|
|
+ queryWrapper.ge(StrUtil.isNotBlank(queryParams.getOutTimeBegin()), BarnRecord::getOutTime, queryParams.getOutTimeBegin()).le(StrUtil.isNotBlank(queryParams.getOutTimeEnd()), BarnRecord::getOutTime, queryParams.getOutTimeEnd());
|
|
|
+
|
|
|
+ queryWrapper.orderByDesc(BarnRecord::getCreateTime);
|
|
|
|
|
|
- Page<BarnRecord> dictItemPage = this.page(
|
|
|
- new Page<>(pageNum, pageSize),
|
|
|
- queryWrapper
|
|
|
-
|
|
|
+ Page<BarnRecord> dictItemPage = this.page(new Page<>(pageNum, pageSize), 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());
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
+ 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()));
|
|
|
- }
|
|
|
- if(record.getOutTime() != null){
|
|
|
- record.setParkingTime(calculateTimeDifference(record.getInTime(),record.getOutTime()));
|
|
|
- }else{
|
|
|
- record.setParkingTime(calculateTimeDifference(record.getInTime(),new Date()));
|
|
|
- }
|
|
|
- barnRecords.add(record);
|
|
|
- }
|
|
|
- pageResult.setRecords(barnRecords);
|
|
|
+ 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()));
|
|
|
+ }
|
|
|
+ if (record.getOutTime() != null) {
|
|
|
+ record.setParkingTime(calculateTimeDifference(record.getInTime(), record.getOutTime()));
|
|
|
+ } else {
|
|
|
+ record.setParkingTime(calculateTimeDifference(record.getInTime(), new Date()));
|
|
|
+ }
|
|
|
+ barnRecords.add(record);
|
|
|
+ }
|
|
|
+ pageResult.setRecords(barnRecords);
|
|
|
return pageResult;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 保存表单
|
|
|
- * */
|
|
|
- @Override
|
|
|
- public BarnRecordForm saveForm(@Valid BarnRecordForm form) {
|
|
|
-
|
|
|
- BarnRecord entity = converter.form2Entity(form);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 保存表单
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public BarnRecordForm saveForm(@Valid BarnRecordForm form) {
|
|
|
+
|
|
|
+ BarnRecord entity = converter.form2Entity(form);
|
|
|
|
|
|
this.save(entity);
|
|
|
BarnRecordForm result = converter.entity2Form(entity);
|
|
|
return result;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * */
|
|
|
- @Override
|
|
|
- public boolean updateForm(Long id, BarnRecordForm form) {
|
|
|
- BarnRecord entity = converter.form2Entity(form);
|
|
|
- entity.setId(id);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 更新
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public boolean updateForm(Long id, BarnRecordForm form) {
|
|
|
+ BarnRecord entity = converter.form2Entity(form);
|
|
|
+ entity.setId(id);
|
|
|
boolean result = this.updateById(entity);
|
|
|
return result;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * */
|
|
|
- @Override
|
|
|
- public BarnRecordForm getFormData(Long id) {
|
|
|
-
|
|
|
- BarnRecord entity = this.getById(id);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 获取表单数据
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public BarnRecordForm getFormData(Long id) {
|
|
|
+
|
|
|
+ BarnRecord entity = this.getById(id);
|
|
|
Assert.isTrue(entity != null, "岗亭端停车记录不存在");
|
|
|
|
|
|
|
|
|
BarnRecordForm form = converter.entity2Form(entity);
|
|
|
return form;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- * 计算停车缴纳金额
|
|
|
- * @param id
|
|
|
- * @return
|
|
|
- */
|
|
|
- @Override
|
|
|
- public BarnRecordForm getCarParkUseLogOrder(Long id) {
|
|
|
-
|
|
|
- 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 + "");
|
|
|
-
|
|
|
- }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * 计算停车缴纳金额
|
|
|
+ *
|
|
|
+ * @param id
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public BarnRecordForm getCarParkUseLogOrder(Long id) {
|
|
|
+
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<BarnRecordForm> saveBatchOrUpdate(@Valid List<BarnRecordForm> list) {
|
|
|
+ List<BarnRecord> saveList = new ArrayList<>();
|
|
|
+ List<BarnRecord> updateList = new ArrayList<>();
|
|
|
+ for (BarnRecordForm barnRecordForm : list) {
|
|
|
+ BarnRecord barnRecord = new BarnRecord();
|
|
|
+ BeanUtil.copyProperties(barnRecordForm, barnRecord);
|
|
|
+
|
|
|
+ List<BarnRecord> equalList = this.list(new LambdaQueryWrapper<BarnRecord>()
|
|
|
+ .eq(BarnRecord::getPlaceNo, barnRecordForm.getPlaceNo())
|
|
|
+ .eq(BarnRecord::getCarNumber, barnRecordForm.getCarNumber())
|
|
|
+ .eq(BarnRecord::getInTime, barnRecordForm.getInTime())
|
|
|
+ );
|
|
|
+ if (CollectionUtil.isNotEmpty(equalList)) {
|
|
|
+
|
|
|
+ updateList.add(barnRecord);
|
|
|
+ }else{
|
|
|
+
|
|
|
+ saveList.add(barnRecord);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ boolean saveFlag = this.saveBatch(saveList);
|
|
|
+ boolean updateFlag = this.updateBatchById(updateList);
|
|
|
+ return list;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ * 计算两个时间差(年,月,星期,日,时,分,秒)
|
|
|
+ *
|
|
|
+ * @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 + "");
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
}
|