From 63f4c248149d330215d2da44d3f9de08fdb3c0ef Mon Sep 17 00:00:00 2001
From: zhangchunxu <1842059105@qq.com>
Date: 星期五, 14 七月 2023 10:24:52 +0800
Subject: [PATCH] “营业管理自定义”左侧栏和”新建意向“vf跳转

---
 force-app/main/default/classes/InquiryFormController.cls |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/force-app/main/default/classes/InquiryFormController.cls b/force-app/main/default/classes/InquiryFormController.cls
index 9b46e45..97e663a 100644
--- a/force-app/main/default/classes/InquiryFormController.cls
+++ b/force-app/main/default/classes/InquiryFormController.cls
@@ -33,6 +33,7 @@
             res.FSEOwnerId = report.FSE_Owner_id__c;
             res.FamilyName = report.Family_Name__c;
             res.JINGZHUOJISHU = getUserName(LightingButtonConstant.JINGZHUO_JISHU);
+            res.Standard = Schema.SObjectType.Lead.getRecordTypeInfosByDeveloperName().get('Standard').getRecordTypeId();
             System.debug(LoggingLevel.INFO, '*** xu: ' + res);
         }catch(Exception e){
             System.debug(LoggingLevel.INFO, '*** exu: ' + e);
@@ -120,5 +121,7 @@
         public String FamilyName;
         @AuraEnabled
         public String JINGZHUOJISHU;
+        @AuraEnabled
+        public String Standard;
     }
 }
\ No newline at end of file

--
Gitblit v1.9.1