111
This commit is contained in:
parent
4388548345
commit
d03013efe0
|
@ -1033,8 +1033,10 @@ public class DeviceServiceImpl implements DeviceService
|
|||
|
||||
// 房间门单独打开
|
||||
EquipmentVO roomDoor = equipmentService.selectDoorByRoomId(roomId, FACILITY_TYPE_ROOM_DOOR);
|
||||
boolean b = controlDoor(roomDoor.getDeviceId(), roomDoor.getUnlockTime(), roomDoor.getUnlockMode(),true, reason,false);
|
||||
log.info("【下单成功后房间全开】打开房间门{}", b ? "成功" : "失败");
|
||||
if(roomDoor != null){
|
||||
boolean b = controlDoor(roomDoor.getDeviceId(), roomDoor.getUnlockTime(), roomDoor.getUnlockMode(),true, reason,false);
|
||||
log.info("【下单成功后房间全开】打开房间门{}", b ? "成功" : "失败");
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -1504,7 +1504,9 @@ public class OrderServiceImpl implements IOrderService
|
|||
adminIndexDataVO.setStoreCount(storeCount);
|
||||
|
||||
// 订单金额
|
||||
BigDecimal orderAmount = orderMapper.getOrderFee(new OrderQuery());
|
||||
OrderQuery orderQuery = new OrderQuery();
|
||||
orderQuery.setPaid(ServiceConstants.ORDER_PAY_STATUS_PAID);
|
||||
BigDecimal orderAmount = orderMapper.getOrderFee(orderQuery);
|
||||
adminIndexDataVO.setOrderAmount(orderAmount);
|
||||
|
||||
// 订单数
|
||||
|
|
Loading…
Reference in New Issue
Block a user