localizer
ljw 2025-10-27 16:12:42 +08:00
commit 1b2687a441
5 changed files with 299 additions and 237 deletions

View File

@ -71,30 +71,32 @@ public class SupervisionStatisticsService {
.thenApply(dataStatistics -> {
Double todayTotalWeight = MapUtil.getDouble(dataStatistics, "todayTotalWeight", 0.0);
Double yesterdayTotalWeight = MapUtil.getDouble(dataStatistics, "yesterdayTotalWeight", 0.0);
Double dayRate = yesterdayTotalWeight == 0 ? 100 : (todayTotalWeight - yesterdayTotalWeight) / yesterdayTotalWeight * 100;
Double dayRate = yesterdayTotalWeight == 0 ? 0 : (todayTotalWeight - yesterdayTotalWeight) / yesterdayTotalWeight * 100;
Double currentMonthTotalWeight = MapUtil.getDouble(dataStatistics, "currentMonthTotalWeight", 0.0);
Double lastMonthTotalWeight = MapUtil.getDouble(dataStatistics, "lastMonthTotalWeight", 0.0);
Double monthRate = lastMonthTotalWeight == 0 ? 100 : (currentMonthTotalWeight - lastMonthTotalWeight) / lastMonthTotalWeight * 100;
Double monthRate = lastMonthTotalWeight == 0 ? 0 : (currentMonthTotalWeight - lastMonthTotalWeight) / lastMonthTotalWeight * 100;
Double todayFinishCount = MapUtil.getDouble(dataStatistics, "todayFinishCount", 0.0);
Double todayTotalCount = MapUtil.getDouble(dataStatistics, "todayTotalCount", 0.0);
Double todayFinishRate = todayTotalCount == 0 ? 100 : todayFinishCount / todayTotalCount * 100;
Double todayFinishRate = todayTotalCount == 0 ? 0 : todayFinishCount / todayTotalCount * 100;
Double yesterdayFinishCount = MapUtil.getDouble(dataStatistics, "yesterdayFinishCount", 0.0);
// Double yesterdayTotalCount = MapUtil.getDouble(dataStatistics, "yesterdayTotalCount", 0.0);
// Double yesterdayFinishRate = yesterdayFinishCount == 0 ? 100 : yesterdayFinishCount / yesterdayTotalCount * 100;
Double incFinishRate = yesterdayFinishCount == 0 ? 100 : (todayFinishCount - yesterdayFinishCount) / yesterdayFinishCount * 100;
Double incFinishRate = yesterdayFinishCount == 0 ? 0 : (todayFinishCount - yesterdayFinishCount) / yesterdayFinishCount * 100;
Double todayWarnCount = MapUtil.getDouble(dataStatistics, "todayWarnCount", 0.0);
Double yesterdayWarnCount = MapUtil.getDouble(dataStatistics, "yesterdayWarnCount", 0.0);
Double warnRate = yesterdayWarnCount == 0 ? 100 : (todayWarnCount - yesterdayWarnCount) / yesterdayWarnCount * 100;
Double warnRate = todayTotalCount == 0 ? 0 : todayWarnCount / todayTotalCount * 100;
Double incWarnRate = yesterdayWarnCount == 0 ? 0 : (todayWarnCount - yesterdayWarnCount) / yesterdayWarnCount * 100;
dataStatistics.put("dayRate", dayRate);
dataStatistics.put("monthRate", monthRate);
dataStatistics.put("finishRate", todayFinishRate);
dataStatistics.put("incFinishRate", incFinishRate);
dataStatistics.put("warnRate", warnRate);
dataStatistics.put("incWarnRate", incWarnRate);
return dataStatistics;
})
.exceptionally(ex -> {

View File

@ -13,7 +13,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "app")
public class AppProperties {
private int inOutGap = 300;
private int inOutGap = 60;
private DefaultPlace defaultPlace;

View File

@ -13,16 +13,19 @@ import com.njzscloud.common.core.tuple.Tuple2;
import com.njzscloud.common.mp.support.PageParam;
import com.njzscloud.common.mp.support.PageResult;
import com.njzscloud.common.mqtt.util.Mqtt;
import com.njzscloud.supervisory.config.AppProperties;
import com.njzscloud.supervisory.device.contant.DeviceCode;
import com.njzscloud.supervisory.device.mapper.DeviceInfoMapper;
import com.njzscloud.supervisory.device.pojo.entity.DeviceInfoEntity;
import com.njzscloud.supervisory.order.contant.CheckStatus;
import com.njzscloud.supervisory.order.contant.OrderStatus;
import com.njzscloud.supervisory.order.contant.PaymentStatus;
import com.njzscloud.supervisory.order.pojo.entity.OrderCarInOutEntity;
import com.njzscloud.supervisory.order.pojo.entity.OrderInfoEntity;
import com.njzscloud.supervisory.order.pojo.param.TruckComingOrderParam;
import com.njzscloud.supervisory.order.pojo.param.TruckLeavingOrderParam;
import com.njzscloud.supervisory.order.pojo.result.OrderPagingResult;
import com.njzscloud.supervisory.order.service.OrderCarInOutService;
import com.njzscloud.supervisory.order.service.OrderInfoService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
@ -31,6 +34,8 @@ import org.springframework.transaction.annotation.Transactional;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.time.Duration;
import java.time.LocalDateTime;
import java.util.List;
import java.util.Map;
import java.util.Objects;
@ -44,6 +49,22 @@ import java.util.Objects;
public class DeviceInfoService extends ServiceImpl<DeviceInfoMapper, DeviceInfoEntity> implements IService<DeviceInfoEntity> {
private static final TimedCache<String, Tuple2<String, String>> waitOpen = CacheUtil.newTimedCache(600000);
private final OrderInfoService orderInfoService;
private final OrderCarInOutService orderCarInOutService;
private final AppProperties appProperties;
public static void open(String oredrSn) {
Tuple2<String, String> tuple2 = waitOpen.get(oredrSn);
if (tuple2 == null) {
log.warn("开门: {} 无等待订单", oredrSn);
return;
}
String sn = tuple2.get_0();
String cid = tuple2.get_1();
log.info("开门: {} {}", sn, cid);
Mqtt.publish(cid + "/1/barrier", MapUtil.builder()
.put("deviceNo", sn)
.build());
}
/**
*
@ -87,17 +108,6 @@ public class DeviceInfoService extends ServiceImpl<DeviceInfoMapper, DeviceInfoE
return this.getById(id);
}
/**
*
*
* @param deviceInfoEntity
* @param pageParam
* @return PageResult&lt;DeviceInfoEntity&gt;
*/
public PageResult<DeviceInfoEntity> paging(PageParam pageParam, DeviceInfoEntity deviceInfoEntity) {
return PageResult.of(this.page(pageParam.toPage(), Wrappers.<DeviceInfoEntity>query(deviceInfoEntity)));
}
/* public void recognition(DeviceRecognitionParam deviceRecognitionParam) {
String sn = deviceRecognitionParam.getSn();
DeviceInfoEntity deviceInfoEntity = this.getOne(Wrappers.<DeviceInfoEntity>lambdaQuery().eq(DeviceInfoEntity::getSn, sn));
@ -184,6 +194,17 @@ public class DeviceInfoService extends ServiceImpl<DeviceInfoMapper, DeviceInfoE
} */
/**
*
*
* @param deviceInfoEntity
* @param pageParam
* @return PageResult&lt;DeviceInfoEntity&gt;
*/
public PageResult<DeviceInfoEntity> paging(PageParam pageParam, DeviceInfoEntity deviceInfoEntity) {
return PageResult.of(this.page(pageParam.toPage(), Wrappers.<DeviceInfoEntity>query(deviceInfoEntity)));
}
@Transactional(rollbackFor = Exception.class)
public Map<String, Object> report1(JSONObject data) {
MapBuilder<String, Object> resBuilder = MapUtil.<String, Object>builder()
@ -192,71 +213,88 @@ public class DeviceInfoService extends ServiceImpl<DeviceInfoMapper, DeviceInfoE
MapBuilder<String, Object> dataBuilder = MapUtil.<String, Object>builder()
.put("order_no", "")
.put("type", 0);
String sn = data.getString("carDiscernCode");
String licensePlate = data.getString("carNumber");
DeviceInfoEntity deviceInfoEntity = this.getOne(Wrappers.<DeviceInfoEntity>lambdaQuery().eq(DeviceInfoEntity::getSn, sn));
if (deviceInfoEntity == null) {
log.error("设备不存在:{}", data);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
String cid = deviceInfoEntity.getCid();
OrderPagingResult orderPagingResult = orderInfoService.pendingOrder(licensePlate);
if (orderPagingResult == null) {
// 播语音
playVoice(sn, cid, "{}无订单", licensePlate);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
Long deviceStationId = deviceInfoEntity.getStationId();
Long orderStationId = orderPagingResult.getStationId();
if (!Objects.equals(deviceStationId, orderStationId)) {
// 播语音
playVoice(sn, cid, "{}站点错误,请前往预约的站点", licensePlate);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
DeviceCode deviceCode = deviceInfoEntity.getDeviceCode();
OrderStatus orderStatus = orderPagingResult.getOrderStatus();
CheckStatus checkStatus = orderPagingResult.getCheckStatus();
if (deviceCode == DeviceCode.JinQianZhi && orderStatus == OrderStatus.QingYunZhong) {
PaymentStatus paymentStatus = orderPagingResult.getPaymentStatus();
/* if (paymentStatus == null) {
OrderInfoEntity orderInfoEntity = orderInfoService.getById(orderPagingResult.getId());
orderInfoService.settleForTransCompany(orderInfoEntity, 0);
orderPagingResult = orderInfoService.detail(orderPagingResult.getId());
paymentStatus = orderPagingResult.getPaymentStatus();
} */
if (paymentStatus == PaymentStatus.WeiZhiFu) {
try {
String sn = data.getString("carDiscernCode");
String licensePlate = data.getString("carNumber");
DeviceInfoEntity deviceInfoEntity = this.getOne(Wrappers.<DeviceInfoEntity>lambdaQuery().eq(DeviceInfoEntity::getSn, sn));
if (deviceInfoEntity == null) {
log.error("设备不存在:{}", data);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
String cid = deviceInfoEntity.getCid();
OrderPagingResult orderPagingResult = orderInfoService.pendingOrder(licensePlate);
if (orderPagingResult == null) {
// 播语音
playVoice(sn, cid, "{}请先支付", licensePlate);
playVoice(sn, cid, "{}无订单", licensePlate);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
Long deviceStationId = deviceInfoEntity.getStationId();
Long orderStationId = orderPagingResult.getStationId();
if (!Objects.equals(deviceStationId, orderStationId)) {
// 播语音
playVoice(sn, cid, "{}站点错误,请前往预约的站点", licensePlate);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
// 开门
open(sn, cid);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
DeviceCode deviceCode = deviceInfoEntity.getDeviceCode();
OrderStatus orderStatus = orderPagingResult.getOrderStatus();
CheckStatus checkStatus = orderPagingResult.getCheckStatus();
if (deviceCode == DeviceCode.Jin && orderStatus == OrderStatus.QingYunZhong) {
return resBuilder
.put("data", dataBuilder.put("type", 1)
.put("order_no", orderPagingResult.getId() + "")
.build())
.build();
}
if (deviceCode == DeviceCode.JinQianZhi && orderStatus == OrderStatus.QingYunZhong) {
PaymentStatus paymentStatus = orderPagingResult.getPaymentStatus();
/* if (paymentStatus == null) {
OrderInfoEntity orderInfoEntity = orderInfoService.getById(orderPagingResult.getId());
orderInfoService.settleForTransCompany(orderInfoEntity, 0);
orderPagingResult = orderInfoService.detail(orderPagingResult.getId());
paymentStatus = orderPagingResult.getPaymentStatus();
} */
if (paymentStatus == PaymentStatus.WeiZhiFu) {
// 播语音
playVoice(sn, cid, "{}请先支付", licensePlate);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
if (deviceCode == DeviceCode.JinQianZhi && orderStatus == OrderStatus.YiJinChang) {
if (checkStatus == CheckStatus.WeiKanLiao) {
// 开门
open(sn, cid);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
if (deviceCode == DeviceCode.Jin && orderStatus == OrderStatus.QingYunZhong) {
return resBuilder
.put("data", dataBuilder.put("type", 1)
.put("order_no", orderPagingResult.getId() + "")
.build())
.build();
}
if (deviceCode == DeviceCode.JinQianZhi && orderStatus == OrderStatus.YiJinChang) {
if (checkStatus == CheckStatus.WeiKanLiao) {
// 播语音
playVoice(sn, cid, "{}未看料", licensePlate);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
// 开门
open(sn, cid);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
if (deviceCode == DeviceCode.ChuQianZhi && checkStatus == CheckStatus.WeiKanLiao) {
// 播语音
playVoice(sn, cid, "{}未看料", licensePlate);
@ -265,44 +303,31 @@ public class DeviceInfoService extends ServiceImpl<DeviceInfoMapper, DeviceInfoE
.build();
}
// 开门
open(sn, cid);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
if (deviceCode == DeviceCode.ChuQianZhi && orderStatus == OrderStatus.YiJinChang) {
// 开门
open(sn, cid);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
if (deviceCode == DeviceCode.ChuQianZhi && checkStatus == CheckStatus.WeiKanLiao) {
// 播语音
playVoice(sn, cid, "{}未看料", licensePlate);
if (deviceCode == DeviceCode.Jin && orderStatus == OrderStatus.YiJinChang) {
return resBuilder
.put("data", dataBuilder.put("type", 2)
.put("order_no", orderPagingResult.getId() + "")
.build())
.build();
}
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
if (deviceCode == DeviceCode.ChuQianZhi && orderStatus == OrderStatus.YiJinChang) {
// 开门
open(sn, cid);
return resBuilder
.put("data", dataBuilder.put("type", 0).build())
.build();
}
if (deviceCode == DeviceCode.Jin && orderStatus == OrderStatus.YiJinChang) {
return resBuilder
.put("data", dataBuilder.put("type", 2)
.put("order_no", orderPagingResult.getId() + "")
.build())
.build();
}
if (deviceCode == DeviceCode.Chu && orderStatus == OrderStatus.YiJinChang) {
return resBuilder
.put("data", dataBuilder.put("type", 2)
.put("order_no", orderPagingResult.getId() + "")
.build())
.build();
if (deviceCode == DeviceCode.Chu && orderStatus == OrderStatus.YiJinChang) {
return resBuilder
.put("data", dataBuilder.put("type", 2)
.put("order_no", orderPagingResult.getId() + "")
.build())
.build();
}
} catch (Exception e) {
log.error("上报数据处理异常: {}", data, e);
}
return resBuilder
@ -310,20 +335,6 @@ public class DeviceInfoService extends ServiceImpl<DeviceInfoMapper, DeviceInfoE
.build();
}
public static void open(String oredrSn) {
Tuple2<String, String> tuple2 = waitOpen.get(oredrSn);
if (tuple2 == null) {
log.warn("开门: {} 无等待订单", oredrSn);
return;
}
String sn = tuple2.get_0();
String cid = tuple2.get_1();
log.info("开门: {} {}", sn, cid);
Mqtt.publish(cid + "/1/barrier", MapUtil.builder()
.put("deviceNo", sn)
.build());
}
private void open(String sn, String cid) {
log.info("开门: {} {}", sn, cid);
Mqtt.publish(cid + "/1/barrier", MapUtil.builder()
@ -340,90 +351,145 @@ public class DeviceInfoService extends ServiceImpl<DeviceInfoMapper, DeviceInfoE
.put("car_number", "")
.put("order_no", "")
.put("lane_code", "");
String sn = data.getString("carDiscernCode");
String licensePlate = data.getString("carNumber");
Long orderId = data.getLong("orderNo");
DeviceInfoEntity deviceInfoEntity = this.getOne(Wrappers.<DeviceInfoEntity>lambdaQuery().eq(DeviceInfoEntity::getSn, sn));
if (deviceInfoEntity == null) {
log.error("设备不存在:{}", data);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
String cid = deviceInfoEntity.getCid();
OrderPagingResult orderPagingResult = orderInfoService.detail(orderId);
try {
String sn = data.getString("carDiscernCode");
String licensePlate = data.getString("carNumber");
Long orderId = data.getLong("orderNo");
DeviceInfoEntity deviceInfoEntity = this.getOne(Wrappers.<DeviceInfoEntity>lambdaQuery().eq(DeviceInfoEntity::getSn, sn));
if (deviceInfoEntity == null) {
log.error("设备不存在:{}", data);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
String cid = deviceInfoEntity.getCid();
OrderPagingResult orderPagingResult = orderInfoService.detail(orderId);
if (orderPagingResult == null) {
// 播语音
playVoice(sn, cid, "{}无订单", licensePlate);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
Long deviceStationId = deviceInfoEntity.getStationId();
Long orderStationId = orderPagingResult.getStationId();
if (!Objects.equals(deviceStationId, orderStationId)) {
// 播语音
playVoice(sn, cid, "{}站点错误,请前往预约的站点", licensePlate);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
DeviceCode deviceCode = deviceInfoEntity.getDeviceCode();
OrderInfoEntity orderInfo = orderInfoService.getById(orderId);
if (orderInfo == null) {
// 播语音
playVoice(sn, cid, "{}无订单", orderId);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
Integer weight = data.getInteger("weight");
String frontPhoto = data.getString("photoFront");
String bodyPhoto = data.getString("photoBody");
if (weight == null || weight == 0) {
// 播语音
playVoice(sn, cid, "{}磅重异常,请重新称重", licensePlate);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
if (deviceCode == DeviceCode.Jin) {
// 播语音
BigDecimal weight_ = new BigDecimal(weight);
BigDecimal v = weight_.divide(new BigDecimal(1000), 2, RoundingMode.HALF_UP);
playVoice(sn, cid, "{}称重完成,磅重{}吨", licensePlate, v.toPlainString());
// 开门
open(sn, cid);
orderInfoService.truckComing(new TruckComingOrderParam()
.setOrderId(orderId)
.setWeight(weight)
.setFrontPhoto(frontPhoto)
.setBodyPhoto(bodyPhoto),
0);
}
if (orderPagingResult == null) {
// 播语音
playVoice(sn, cid, "{}无订单", licensePlate);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
Long deviceStationId = deviceInfoEntity.getStationId();
Long orderStationId = orderPagingResult.getStationId();
if (!Objects.equals(deviceStationId, orderStationId)) {
// 播语音
playVoice(sn, cid, "{}站点错误,请前往预约的站点", licensePlate);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
DeviceCode deviceCode = deviceInfoEntity.getDeviceCode();
OrderInfoEntity orderInfo = orderInfoService.getById(orderId);
if (orderInfo == null) {
// 播语音
playVoice(sn, cid, "{}无订单", orderId);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
Integer weight = data.getInteger("weight");
String frontPhoto = data.getString("photoFront");
String bodyPhoto = data.getString("photoBody");
if (weight == null || weight == 0) {
// 播语音
playVoice(sn, cid, "{}磅重异常,请重新称重", licensePlate);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
if (deviceCode == DeviceCode.Jin) {
// 播语音
BigDecimal weight_ = new BigDecimal(weight);
BigDecimal v = weight_.divide(new BigDecimal(1000), 2, RoundingMode.HALF_UP);
OrderStatus orderStatus = orderInfo.getOrderStatus();
if (deviceCode == DeviceCode.Chu) {
BigDecimal weight_ = new BigDecimal(weight);
BigDecimal v = weight_.divide(new BigDecimal(1000), 2, RoundingMode.HALF_UP);
try {
boolean b = orderInfoService.truckLeaving(new TruckLeavingOrderParam()
if (orderStatus == OrderStatus.YiJinChang) {
Long carInOutId = orderInfo.getCarInOutId();
String orderInfoSn = orderInfo.getSn();
if (carInOutId == null) {
log.warn("订单{}不存在关联的车辆进场记录", orderInfoSn);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
OrderCarInOutEntity orderCarInOutEntity = orderCarInOutService.getById(carInOutId);
if (orderCarInOutEntity == null) {
log.warn("订单{}不存在关联的车辆进场记录", orderInfoSn);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
LocalDateTime inTime = orderCarInOutEntity.getInTime();
long interval = Duration.between(inTime, LocalDateTime.now()).toMillis() / 1000;
int inOutGap = appProperties.getInOutGap();
if (inOutGap <= 0) {
inOutGap = 60;
}
if (interval <= inOutGap) {
log.warn("车辆进场时间间隔不能小于{}秒,订单{}", inOutGap, orderInfoSn);
playVoice(sn, cid, "{}重复识别,请稍后再试", licensePlate);
return resBuilder
.put("data", dataBuilder.build())
.build();
}
log.info("进道闸转出道闸,订单号:{}", orderInfoSn);
boolean b = orderInfoService.truckLeaving(new TruckLeavingOrderParam()
.setOrderId(orderId)
.setWeight(weight)
.setFrontPhoto(frontPhoto)
.setBodyPhoto(bodyPhoto),
0);
// 播语音
playVoice(sn, cid, "{}称重完成,磅重{}吨", licensePlate, v.toPlainString());
if (b) {
// 开门
open(sn, cid);
} else {
waitOpen.put(orderPagingResult.getSn(), Tuple2.create(sn, cid));
}
return resBuilder
.put("data", dataBuilder.build())
.build();
}
// 开门
orderInfoService.truckComing(new TruckComingOrderParam()
.setOrderId(orderId)
.setWeight(weight)
.setFrontPhoto(frontPhoto)
.setBodyPhoto(bodyPhoto),
0);
// 播语音
playVoice(sn, cid, "{}称重完成,磅重{}吨", licensePlate, v.toPlainString());
if (b) {
// 开门
open(sn, cid);
} else {
waitOpen.put(orderPagingResult.getSn(), Tuple2.create(sn, cid));
}
} catch (Exception e) {
playVoice(sn, cid, "{}称重异常,磅重{}吨", licensePlate, v.toPlainString());
open(sn, cid);
}
if (deviceCode == DeviceCode.Chu) {
BigDecimal weight_ = new BigDecimal(weight);
BigDecimal v = weight_.divide(new BigDecimal(1000), 2, RoundingMode.HALF_UP);
try {
boolean b = orderInfoService.truckLeaving(new TruckLeavingOrderParam()
.setOrderId(orderId)
.setWeight(weight)
.setFrontPhoto(frontPhoto)
.setBodyPhoto(bodyPhoto),
0);
// 播语音
playVoice(sn, cid, "{}称重完成,磅重{}吨", licensePlate, v.toPlainString());
if (b) {
// 开门
open(sn, cid);
} else {
waitOpen.put(orderPagingResult.getSn(), Tuple2.create(sn, cid));
}
} catch (Exception e) {
playVoice(sn, cid, "{}称重异常,磅重{}吨", licensePlate, v.toPlainString());
}
}
} catch (Exception e) {
log.error("上报数据处理异常: {}", data, e);
}
return resBuilder

View File

@ -29,7 +29,6 @@ import com.njzscloud.supervisory.biz.pojo.entity.*;
import com.njzscloud.supervisory.biz.service.BizAuditConfigService;
import com.njzscloud.supervisory.biz.service.BizWarnService;
import com.njzscloud.supervisory.biz.service.TruckLocationTrackService;
import com.njzscloud.supervisory.config.AppProperties;
import com.njzscloud.supervisory.constant.Constant;
import com.njzscloud.supervisory.device.pojo.entity.DeviceLocalizerEntity;
import com.njzscloud.supervisory.device.service.DeviceInfoService;
@ -45,7 +44,10 @@ import com.njzscloud.supervisory.money.service.MoneyAccountService;
import com.njzscloud.supervisory.money.service.MoneyChangeDetailService;
import com.njzscloud.supervisory.order.contant.*;
import com.njzscloud.supervisory.order.mapper.OrderInfoMapper;
import com.njzscloud.supervisory.order.pojo.entity.*;
import com.njzscloud.supervisory.order.pojo.entity.OrderCargoPlaceEntity;
import com.njzscloud.supervisory.order.pojo.entity.OrderExpenseItemsEntity;
import com.njzscloud.supervisory.order.pojo.entity.OrderGoodsEntity;
import com.njzscloud.supervisory.order.pojo.entity.OrderInfoEntity;
import com.njzscloud.supervisory.order.pojo.param.*;
import com.njzscloud.supervisory.order.pojo.result.*;
import com.njzscloud.supervisory.order.utils.FileUtil;
@ -63,7 +65,6 @@ import org.springframework.transaction.annotation.Transactional;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.math.BigDecimal;
import java.time.Duration;
import java.time.LocalDateTime;
import java.util.*;
import java.util.concurrent.CompletableFuture;
@ -88,7 +89,6 @@ public class OrderInfoService extends ServiceImpl<OrderInfoMapper, OrderInfoEnti
private final ExpenseItemsConfigService expenseItemsConfigService;
private final TruckLocationTrackService truckLocationTrackService;
private final BizWarnService bizWarnService;
private final AppProperties appProperties;
private final StationManageService stationManageService;
private final CloudVoiceboxService cloudVoiceboxService;
private final MoneyAccountService moneyAccountService;
@ -974,37 +974,7 @@ public class OrderInfoService extends ServiceImpl<OrderInfoMapper, OrderInfoEnti
OrderInfoEntity orderInfoEntity = this.getById(truckComingOrderParam.getOrderId());
Assert.notNull(orderInfoEntity, () -> Exceptions.clierr("订单不存在"));
OrderStatus orderStatus = orderInfoEntity.getOrderStatus();
if (orderStatus == OrderStatus.YiJinChang) {
Long carInOutId = orderInfoEntity.getCarInOutId();
if (carInOutId == null) {
log.warn("订单{}不存在关联的车辆进场记录", orderInfoEntity.getId());
return;
}
OrderCarInOutEntity orderCarInOutEntity = orderCarInOutService.getById(carInOutId);
if (orderCarInOutEntity == null) {
log.warn("订单{}不存在关联的车辆进场记录", orderInfoEntity.getId());
return;
}
LocalDateTime inTime = orderCarInOutEntity.getInTime();
long interval = Duration.between(inTime, LocalDateTime.now()).toMillis() / 1000;
int inOutGap = appProperties.getInOutGap();
if (inOutGap <= 0) {
inOutGap = 300;
}
if (interval <= inOutGap) {
log.warn("车辆进场时间间隔不能小于{}秒,订单{}", inOutGap, orderInfoEntity.getSn());
return;
}
log.info("进道闸转出道闸,订单{}", orderInfoEntity.getSn());
truckLeaving(new TruckLeavingOrderParam()
.setOrderId(orderInfoEntity.getId())
.setWeight(truckComingOrderParam.getWeight())
.setFrontPhoto(truckComingOrderParam.getFrontPhoto())
.setBodyPhoto(truckComingOrderParam.getBodyPhoto()),
0);
return;
}
Assert.isTrue(orderStatus == OrderStatus.QingYunZhong, () -> Exceptions.clierr("当前订单状态,无法进场"));
OrderCategory orderCategory = orderInfoEntity.getOrderCategory();

View File

@ -190,7 +190,15 @@
LIMIT #{count}
</select>
<select id="baseInfo" resultType="java.util.Map">
SELECT biz_obj bizObj, COUNT(*) `count`
SELECT biz_obj bizObj,
CASE biz_obj
WHEN 'WuYe' THEN '物业'
WHEN 'SheQu' THEN '社区'
WHEN 'QiYe' THEN '企业'
WHEN 'GeTi' THEN '个体户'
ELSE ''
END bizObjTxt,
COUNT(*) `count`
FROM sys_user
WHERE biz_obj IN (
'WuYe',
@ -200,16 +208,24 @@
)
AND deleted = 0
GROUP BY biz_obj
UNION ALL
SELECT 'XiaoNa' bizObj,
'消纳场' bizObjTxt,
COUNT(*) `bizObjTxt`
FROM biz_company
WHERE station = 1
AND deleted = 0
AND station_name NOT LIKE '%测试%'
</select>
<select id="disposeInfo" resultType="java.util.Map">
SELECT c.category_name categoryName, ROUND(IFNULL(SUM(d.settle_weight), 0) / 1000, 2) weight
SELECT b.goods_name goodsName, ROUND(IFNULL(SUM(d.settle_weight), 0) / 1000, 2) weight
FROM order_info a
INNER JOIN order_goods b ON b.id = a.goods_id
INNER JOIN goods_category c ON c.id = b.goods_category_id AND c.deleted = 0
INNER JOIN order_car_in_out d ON d.id = a.car_in_out_id
WHERE a.order_status = 'YiWanCheng'
AND a.deleted = 0
GROUP BY c.category_name
GROUP BY b.goods_name
</select>
<select id="garbageInfo" resultType="java.util.Map">
SELECT area_name areaName, weight
@ -282,7 +298,15 @@
LIMIT 50
</select>
<select id="warningInfo" resultType="java.util.Map">
SELECT warn_category warnCategory, count(*) `count`
SELECT warn_category warnCategory,
case warn_category
when 'SAFETY' then '订单超时预警'
when 'SPEED' then '车辆超速预警'
when 'ROUTE' then '路线偏离预警'
when 'EQUIPMENT' then 'GPS异常预警'
else ''
end warnCategoryTxt,
count(*) `count`
FROM biz_warn
GROUP BY warn_category
</select>