From 8badb57ea2c82557850ad5b39281c3e8714eb119 Mon Sep 17 00:00:00 2001
From: liuyan <liuyan@prec-tech.com>
Date: 星期四, 24 十一月 2022 10:08:31 +0800
Subject: [PATCH] 科室信息漏传SPO问题
---
force-app/main/default/classes/NewAndEditLeadController.cls | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/force-app/main/default/classes/NewAndEditLeadController.cls b/force-app/main/default/classes/NewAndEditLeadController.cls
index 67416c8..326eb6e 100644
--- a/force-app/main/default/classes/NewAndEditLeadController.cls
+++ b/force-app/main/default/classes/NewAndEditLeadController.cls
@@ -171,6 +171,12 @@
if (mso.containsKey(System.Label.Sales_Method)) { //缁忛攢鍟嗚浠�--鎷涙爣鏂瑰紡
controller.getRecord().put('Sales_Method__c', mso.get(System.Label.Sales_Method));
}
+ if (mso.containsKey(System.Label.Request)) {
+ controller.getRecord().put('Request__c', mso.get(System.Label.Request));
+ }
+ if (mso.containsKey(System.Label.Request_Detail)) {
+ controller.getRecord().put('Request_Detail__c', mso.get(System.Label.Request_Detail));
+ }
// 2022-04-13 鏉ユ簮 jz end 0414 lt
rtTypeId = ApexPages.currentPage().getParameters().get('RecordType');
// 20220420 lt OBSAP start
--
Gitblit v1.9.1