取消限制只能使用一个智能订单

This commit is contained in:
磷叶 2024-11-26 17:53:31 +08:00
parent 41daefbda2
commit 62d765fe58

View File

@ -92,9 +92,9 @@ public class TransactionBillValidatorImpl extends BaseValidator implements Trans
return error("您有未支付的订单,请先支付后继续");
}
// 检查用户是否有正在使用中的智能订单
if (this.hasUsingSmartOrder(user.getUserId())) {
return error("您有正在使用中的智能订单,请结束后继续");
}
// if (this.hasUsingSmartOrder(user.getUserId())) {
// return error("您有正在使用中的智能订单,请结束后继续");
// }
// 检查设备是否符合条件
DeviceVO device = bo.getDevice();