From 9b197b7fac92278fb591ea8f4942c7d5687cb5ce Mon Sep 17 00:00:00 2001
From: 李金换 <lijinhuan@prec-tech.com>
Date: 星期一, 28 三月 2022 18:01:22 +0800
Subject: [PATCH] LJPH-C8FB4P【委托】配合PBI设备覆盖率的数据准备0328
---
force-app/main/default/classes/ApplicationForCAHandler.cls | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/force-app/main/default/classes/ApplicationForCAHandler.cls b/force-app/main/default/classes/ApplicationForCAHandler.cls
index 3fbcd36..0826271 100644
--- a/force-app/main/default/classes/ApplicationForCAHandler.cls
+++ b/force-app/main/default/classes/ApplicationForCAHandler.cls
@@ -37,7 +37,7 @@
Map<String, String> app_cam_binds = new Map<String, String>();
for (Application_for_Conference_Adjudication__c app : this.newList) {
Application_for_Conference_Adjudication__c old_app = this.oldMap.get(app.Id);
- if (String.isNotBlank(old_app.Num__c) && !old_app.Num__c.equals(app.Num__c)) {
+ if (String.isNotBlank(old_app.Num__c) && !old_app.Num__c.equals(app.Num__c) && app.MeetingType__c != '璧炲姪浼�') {
app_cam_binds.put(old_app.Id, old_app.Num__c);
}
}
@@ -59,7 +59,8 @@
for (Application_for_Conference_Adjudication__c app : this.newList) {
if (app.ProcessState__c == '椹冲洖' ||
app.ProcessState__c == '缁堟鐢宠' ||
- app.ProcessState__c == '鍙栨秷') {
+ app.ProcessState__c == '鍙栨秷' ||
+ app.ProcessState__c == '鍒犻櫎') {
approved_nos.add(app.Id);
}
}
--
Gitblit v1.9.1