Prechádzať zdrojové kódy

fix: 当面付轮询 IGNORE_TABLES 加 pay_facetoface_order

定时任务无认证上下文,tenant_id 过滤为 0,与真实租户不匹配,
永远查不出待轮询订单。

与 pay_bill/pay_transfer 等通知表同属异步场景,无需租户过滤。
alphaH 2 mesiacov pred
rodič
commit
5b7b65343f

+ 2 - 1
java/src/main/java/com/payment/platform/core/tenant/TenantInnerInterceptor.java

@@ -50,7 +50,8 @@ public class TenantInnerInterceptor extends TenantLineInnerInterceptor {
             "pay_deposit",          // 充值记录(通知处理无认证上下文)
             "pay_deposit",          // 充值记录(通知处理无认证上下文)
             "pay_expense_rule",     // 费控规则(通知处理无认证上下文)
             "pay_expense_rule",     // 费控规则(通知处理无认证上下文)
             "pay_expense_quota",    // 费控额度(通知处理无认证上下文)
             "pay_expense_quota",    // 费控额度(通知处理无认证上下文)
-            "pay_expense_institution" // 费控制度(通知处理无认证上下文)
+            "pay_expense_institution", // 费控制度(通知处理无认证上下文)
+            "pay_facetoface_order" // 当面付申请单(定时轮询无认证上下文)
     );
     );
 
 
     public TenantInnerInterceptor() {
     public TenantInnerInterceptor() {