debug: 设备充值命令

This commit is contained in:
磷叶 2024-12-17 19:20:22 +08:00
parent bea3dd770f
commit 59d743e7d4
3 changed files with 7 additions and 7 deletions

View File

@ -73,12 +73,12 @@ public class IotConstants {
public static final String COMMAND_OUTAGE_WAY = "set";
/**
* 命令 累加充值电量
* 命令 累加充值电量设备不会自行关闭
*/
public static final String COMMAND_ADD_ELE = "money";
/**
* 命令 直接设置电量
* 命令 直接设置电量设备会自行关闭
*/
public static final String COMMAND_SET_ELE = "mmney";

View File

@ -518,12 +518,12 @@ public class DeviceServiceImpl implements DeviceService
ServiceUtil.assertion(insertRecord != 1, "记录电量变化失败");
if (withIot) {
// 若设备剩余电量于0则补偿电量充值
// 若设备剩余电量于0则补偿电量充值
CommandResponse res;
if (device.getSurplusEle().compareTo(BigDecimal.ZERO) < 0) {
res = iotService.addEle(device, amount.subtract(device.getSurplusEle()), reason);
if (device.getSurplusEle().compareTo(BigDecimal.ZERO) > 0) {
res = iotService.setEle(device, amount.add(device.getSurplusEle()), reason);
} else {
res = iotService.addEle(device, amount, reason);
res = iotService.setEle(device, amount, reason);
}
boolean iot = res.isSuccess();
ServiceUtil.assertion(!iot, "为设备充值电量失败");

View File

@ -953,7 +953,7 @@ public class TransactionBillServiceImpl implements TransactionBillService, After
boolean addTime = deviceService.addTime(device, seconds, true, "充值订单:" + bill.getBillNo());
ServiceUtil.assertion(!addTime, "设备时长充值失败");
} else if (SuitFeeType.COUNT.getType().equals(bill.getSuitFeeType())) {
// 设备设置电量
// 设备增加电量
BigDecimal ele = transactionBillConverter.toRechargeEle(bill);
boolean addEle = deviceService.addEle(device, ele, true, "充值订单:" + bill.getBillNo());
ServiceUtil.assertion(!addEle, "设备时长充值失败");