1、软件购买是否纯赠送金判断购买记录是否可开票状态修复;2、组织过期判断需要包含当天完善;3、申请开票增加购买记录开票状态校验;

This commit is contained in:
gaoqr
2025-10-15 15:34:54 +08:00
parent 480fa25afa
commit 6e3f5db169
8 changed files with 106 additions and 20 deletions
@@ -90,4 +90,16 @@ public class AssertUtils {
throw exception(errorCode);
}
}
public static void isFalse(boolean expression, ErrorCode errorCode) {
if (!expression) {
throw exception(errorCode);
}
}
public static void isTrue(boolean expression, ErrorCode errorCode) {
if (expression) {
throw exception(errorCode);
}
}
}