debug:下单时长单位校验
This commit is contained in:
parent
73163e31f2
commit
183828d4a4
|
@ -129,8 +129,11 @@ public class TransactionBillValidatorImpl extends BaseValidator implements Trans
|
|||
}
|
||||
if (SuitFeeType.singleList().contains(suit.getFeeType())) {
|
||||
// 一次性收费需要配置时间/度数
|
||||
if (suit.getValue() == null || suit.getTimeUnit() == null) {
|
||||
return error("当前套餐未配置时间/度数,请联系商户处理");
|
||||
if (suit.getValue() == null) {
|
||||
return error("当前套餐未配置时间/电量,请联系商户处理");
|
||||
}
|
||||
if (SuitFeeType.needConfigTimeUnit().contains(suit.getFeeType()) && suit.getTimeUnit() == null) {
|
||||
return error("当前套餐未配置时长单位,请联系商户处理");
|
||||
}
|
||||
}
|
||||
if (!Objects.equals(suit.getValue(), dto.getSuitTime())) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user