|
@@ -40,17 +40,20 @@ import org.aspectj.lang.JoinPoint;
|
|
|
import org.aspectj.lang.annotation.AfterReturning;
|
|
import org.aspectj.lang.annotation.AfterReturning;
|
|
|
import org.aspectj.lang.annotation.Aspect;
|
|
import org.aspectj.lang.annotation.Aspect;
|
|
|
import org.aspectj.lang.annotation.Before;
|
|
import org.aspectj.lang.annotation.Before;
|
|
|
|
|
+import org.slf4j.Logger;
|
|
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
import java.util.Arrays;
|
|
import java.util.Arrays;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
|
-@Slf4j
|
|
|
|
|
@Aspect
|
|
@Aspect
|
|
|
@Component
|
|
@Component
|
|
|
@RequiredArgsConstructor
|
|
@RequiredArgsConstructor
|
|
|
public class QuoteVerificationAspect {
|
|
public class QuoteVerificationAspect {
|
|
|
|
|
|
|
|
|
|
+ private static final Logger log = LoggerFactory.getLogger("fee");
|
|
|
|
|
+
|
|
|
private final PtlAgreementDeptService ptlAgreementDeptService;
|
|
private final PtlAgreementDeptService ptlAgreementDeptService;
|
|
|
|
|
|
|
|
private final SysUserRoleService sysUserRoleService;
|
|
private final SysUserRoleService sysUserRoleService;
|
|
@@ -101,7 +104,9 @@ public class QuoteVerificationAspect {
|
|
|
.add(subOrderExportFeeVo.getNoExportCosts()));
|
|
.add(subOrderExportFeeVo.getNoExportCosts()));
|
|
|
}
|
|
}
|
|
|
} catch (Exception ignored) {
|
|
} catch (Exception ignored) {
|
|
|
- System.out.printf("费用因子匹配失败:" + ignored.getMessage());
|
|
|
|
|
|
|
+ log.debug("费用因子异常,车牌号:" + insOrders.getLicenseno());
|
|
|
|
|
+ log.debug("费用因子异常消息:" + ignored.getMessage());
|
|
|
|
|
+ log.debug("费用因子异常堆栈:" + ignored.getStackTrace());
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|