diff --git a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerIntentInfoMapper.xml b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerIntentInfoMapper.xml
index 8572f66eb..b817ffd06 100644
--- a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerIntentInfoMapper.xml
+++ b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerIntentInfoMapper.xml
@@ -265,7 +265,7 @@
b.accept_adjust_type as acceptAdjustType,
b.deadline as deadline
from hy_partner_line_info a left join hy_partner_intent_info b on a.id = b.partner_line_id
- where a.deleted = 0
+ where deleted = 0 and line_status!=3
and a.investment_manager = #{userId}
diff --git a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerInterviewPlanMapper.xml b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerInterviewPlanMapper.xml
index e4137983c..227fd07e5 100644
--- a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerInterviewPlanMapper.xml
+++ b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerInterviewPlanMapper.xml
@@ -312,7 +312,7 @@
left join hy_partner_interview a on hpli.id = a.partner_line_id
left join hy_partner_interview_plan b on a.interview_plan_id = b.id
- and hpli.deleted = 0 and b.deleted = 0
+ and hpli.deleted = 0 and hpli.line_status!=3 and b.deleted = 0
and hpli.workflow_stage = #{workflowStage}
diff --git a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerLineInfoMapper.xml b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerLineInfoMapper.xml
index 1aa1949a7..0619d3e10 100644
--- a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerLineInfoMapper.xml
+++ b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerLineInfoMapper.xml
@@ -267,11 +267,10 @@
IFNULL(sum(if(workflow_stage=2 and workflow_status = 1,1,0)),0) as reservationInterviewCount,
IFNULL(sum(if(workflow_stage=3 and workflow_status = 4,1,0)),0) as qualifiedInterviewCount
from hy_partner_line_info
-
-
- and investment_manager = #{userId}
-
-
+ where deleted = 0 and line_status!=3
+
+ and investment_manager = #{userId}
+
@@ -281,11 +280,10 @@
IFNULL(sum(if(workflow_stage=2 and workflow_status = 0,1,0)),0) as reservationInterviewCount,
IFNULL(sum(if(workflow_stage=3 and workflow_status = 5,1,0)),0) as qualifiedInterviewCount
from hy_partner_line_info
-
-
- and investment_manager = #{userId}
-
-
+ where deleted = 0 and line_status!=3
+
+ and investment_manager = #{userId}
+