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/lwc/lexInquiryFormCustomLink1/lexInquiryFormCustomLink1.js     |  170 ++++++++++++---------------
 force-app/main/default/classes/InquiryFormController.cls                              |    3 
 force-app/main/default/lwc/lexTenderingIntentionButton/lexTenderingIntentionButton.js |   35 ++++-
 force-app/main/default/classes/TenderingButtonController.cls                          |   35 +++++
 force-app/main/default/pages/BusinessManagements.page-meta.xml                        |    7 +
 force-app/main/default/pages/BusinessManagements.page                                 |  101 ++++++++++++++++
 6 files changed, 246 insertions(+), 105 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
diff --git a/force-app/main/default/classes/TenderingButtonController.cls b/force-app/main/default/classes/TenderingButtonController.cls
index 6b12f61..b79d90c 100644
--- a/force-app/main/default/classes/TenderingButtonController.cls
+++ b/force-app/main/default/classes/TenderingButtonController.cls
@@ -3,7 +3,9 @@
     public static InitData initTenderingController(String recordId) {
         InitData res = new initData();
         try{
-            Tender_information__c report = [SELECT 	OpportunityNum__c,OwnerId,Id,status__c,Name,IsRelateProject__c FROM Tender_information__c WHERE Id = :recordId LIMIT 1];
+            Tender_information__c report = [SELECT 	OpportunityNum__c,OwnerId,Id,status__c,Name,IsRelateProject__c,TerminateApprovalStatus__c FROM Tender_information__c WHERE Id = :recordId LIMIT 1];
+            List<AggregateResult> AccQuery = [SELECT count(id) total_cnt, sum(Opp_StageName_Check__c) stage_cnt, sum(Opp_StatusF_Check__c) statusf_cnt FROM Tender_Opportunity_Link__c WHERE Tender_information__c = :report.Id];
+            res.AccSize = AccQuery;
             res.OwnerId = report.OwnerId;
             res.Id = report.Id;
             res.status = report.status__c;
@@ -28,7 +30,10 @@
             res.OBA1_Tenderee = getProfileIdByName(LightingButtonConstant.OBA1_Tenderee);
             res.OBA7_Enquiry_Tenderee = getProfileIdByName(LightingButtonConstant.OBA7_Enquiry_Tenderee);
             res.TwoM4_Marketplace_Manager = getProfileIdByName(LightingButtonConstant.TwoM4_Marketplace_Manager);
+            res.TerminateApprovalStatus = report.TerminateApprovalStatus__c;
             res.Environment_Url = System.Label.Environment_Url;
+            res.NewDaily_Report = Schema.SObjectType.Lead.getRecordTypeInfosByDeveloperName().get('NewDaily_Report').getRecordTypeId();
+            
             System.debug(LoggingLevel.INFO, '*** xu: ' + res);
         }catch(Exception e){
             System.debug(LoggingLevel.INFO, '*** xu: ' + e);
@@ -57,6 +62,28 @@
         } catch (exception e) {
             System.debug(LoggingLevel.INFO, '*** xu1111111: ' + e);
             throw new AuraHandledException(e.getMessage());
+        }
+    }
+
+    //鎷涙爣椤圭洰 椤圭洰閲嶅惎
+    @AuraEnabled
+    public static String projectRestart(String recordId) {
+        String messageText = '';
+        try {
+        Tender_information__c tender = [SELECT 	Id,IsTerminate__c,TerminateApprovalStatus__c,TerminateApprovalTime__c,ProjectRestartFLG__c FROM Tender_information__c WHERE Id = :recordId LIMIT 1];
+        // var tender = new sforce.SObject("Tender_information__c");
+        tender.Id = tender.Id;
+        tender.IsTerminate__c= null;
+        tender.TerminateApprovalStatus__c= null;
+        tender.TerminateApprovalTime__c= null;
+        tender.ProjectRestartFLG__c= true;
+        messageText = '1';
+        update tender;
+        return messageText;
+        } catch (Exception ex) {
+        System.debug(LoggingLevel.INFO, '*** cancelXu: ' + ex);
+        messageText = ex.getMessage();
+        return messageText;
         }
     }
 
@@ -111,5 +138,11 @@
         public String SalesMarketplaceId;
         @AuraEnabled
         public String Environment_Url;
+        @AuraEnabled
+        public String NewDaily_Report;
+        @AuraEnabled
+        public String TerminateApprovalStatus;
+        @AuraEnabled
+        public List<AggregateResult> AccSize;
     }
 }
\ No newline at end of file
diff --git a/force-app/main/default/lwc/lexInquiryFormCustomLink1/lexInquiryFormCustomLink1.js b/force-app/main/default/lwc/lexInquiryFormCustomLink1/lexInquiryFormCustomLink1.js
index c716f28..e69d226 100644
--- a/force-app/main/default/lwc/lexInquiryFormCustomLink1/lexInquiryFormCustomLink1.js
+++ b/force-app/main/default/lwc/lexInquiryFormCustomLink1/lexInquiryFormCustomLink1.js
@@ -1,15 +1,15 @@
 import { LightningElement,wire,track,api} from 'lwc';
-import { CurrentPageReference } from "lightning/navigation";
+import { CurrentPageReference,NavigationMixin } from "lightning/navigation";
 import { CloseActionScreenEvent } from 'lightning/actions';
 import  init  from '@salesforce/apex/InquiryFormController.init';
 import  sqlResult  from '@salesforce/apex/InquiryFormController.sqlResult';
 import { ShowToastEvent } from 'lightning/platformShowToastEvent';
-export default class lexInquiryFormCustomLink1 extends LightningElement {
+import { encodeDefaultFieldValues } from 'lightning/pageReferenceUtils';
+export default class lexInquiryFormCustomLink1 extends NavigationMixin(LightningElement) {
     @api recordId;//OwnerId
     IsLoading = true;
     Id= "";
     ServiceStatus= "";
-    profileId= "";
     userId= "";
     Status= "";
     LeadLink= "";
@@ -51,7 +51,6 @@
             this.IsLoading = false;
             this.Id = result.Id != undefined ? result.Id : "";
             this.ServiceStatus = result.ServiceStatus != undefined ? result.ServiceStatus : "";
-            this.profileId = result.profileId != undefined ? result.profileId : "";
             this.userId = result.userId != undefined ? result.userId : "";
             this.Status = result.Status != undefined ? result.Status : "";
             this.LeadLink = result.LeadLink != undefined ? result.LeadLink : "";
@@ -76,6 +75,7 @@
             this.FSEOwner = result.FSEOwner != undefined ? result.FSEOwner : "";
             this.FamilyName = result.FamilyName != undefined ? result.FamilyName : "";
             this.Urgent = result.Urgent == 0 ? 0 :1;
+            this.Standard = result.Standard != undefined ? result.Standard : "";
             this.CustomLink1();
         })       
     }
@@ -90,45 +90,84 @@
             }
             var lead = this.LeadLink;
             var search = this.OppNameSearch;
+            //zyh add-search
+            var name = this.ContactName;
+            name = name.replace(" ","");
             // this.CustomLink1();
+            var defaultValues = null;
             if(lead){
                 // alert('宸茬粡鏈夋剰鍚戜簡锛屼笉鑳藉啀鍒涘缓鏂扮殑鎰忓悜銆�');
-                 this.showToast("宸茬粡鏈夋剰鍚戜簡锛屼笉鑳藉啀鍒涘缓鏂扮殑鎰忓悜銆傦紒","error");
+                this.showToast("宸茬粡鏈夋剰鍚戜簡锛屼笉鑳藉啀鍒涘缓鏂扮殑鎰忓悜銆�","error");
                 return;
             }else{
-            //var urlStr ='/00Q/e?RecordType=01210000000QiRa&ent=Lead';
-            //window.open(urlStr);
-            var urlStr ='/apex/NewAndEditLead?RecordType=01210000000QiRa&ent=Lead'+
-            '&CF00N10000006ps6f='+encodeURI(this.ContactName)+
-            '&CF00N10000006ps6f_lkid='+encodeURI(this.ContactId)+
-            '&CF00N10000002CvC5='+encodeURI(this.HospitalName)+
-            '&CF00N10000002CvC5_lkid='+encodeURI(this.HospitalID)+
-            '&CF00N10000006qNtt='+encodeURI(this.DepartmentClass)+
-            '&CF00N10000006qNtt_lkid='+encodeURI(this.DepartmentID)+
-            '&CF00N10000006qNty='+encodeURI(this.OppNameSearch)+
-            '&CF00N10000006qNty_lkid='+encodeURI(this.OppNameSearchID)+
-            '&CF00N10000004oN28='+encodeURI(this.Campaign)+
-            '&CF00N10000004oN28_lkid='+encodeURI(this.CampaignID)+
-            '&CF00N1000000962np='+encodeURI(this.Name)+
-            '&CF00N1000000962np_lkid='+encodeURI(this.Id)+
-            '&00N10000006qBYk='+encodeURI(this.CancelReason)+
-            // '&00N10000006qGvj='+result.ProductOwner+
-            '&00N10000002CvBM=' + encodeURI(Request) +
-            '&lea13=鏈窡杩�'+
-            '&lea3='+encodeURI(this.HospitalName)+
-            '&lea8='+encodeURI(this.Phone.trim())+
-            '&lea11='+encodeURI(this.Email.trim())+
-            '&name_lastlea2=' + encodeURI(this.FamilyName) +
-            '&name_firstlea2='+encodeURI(this.LastName)+
-            '&lea5='+encodeURI(this.LeadSource)+
-            '&00N10000002CvBR='+encodeURI(this.Request1)+
-            '&00N10000002CvBC='+encodeURI(this.OpportunityDivision)+
-            //'&00N10000002EjE1={!Inquiry_form__c.Opp_Name_Search__c}'+
-            '&00N10000002CvB7='+encodeURI(this.Urgent);
             if(search !=  "" && search != null){
-            urlStr += '&00N10000002EjE1='+this.OppNameSearch;
+                defaultValues = encodeDefaultFieldValues({
+                    RecordTypeId:this.Standard,
+                    Contact_Name__c:this.ContactId,
+                    Hospital_Name__c:this.HospitalID,
+                    Department_Class__c:this.DepartmentID,
+                    Opp_Name_Search__c:this.OppNameSearchID,
+                    Campaign__c:this.CampaignID,
+                    // Contact_Name__c:this.ContactName,
+                    // Contact_Id__c:this.ContactId,
+                    // Hospital_Name__c:this.HospitalName, //
+                    // Hospital_ID__c:this.HospitalID,
+                    // Department_Class__c:this.DepartmentClass,
+                    // Department_ID__c:this.DepartmentID,
+                    // Opp_Name_Search__c:this.OppNameSearch,
+                    // Opp_Name_Search_ID__c:this.OppNameSearchID,
+                    // Campaign__c:this.Campaign,
+                    // Campaign_ID__c:this.CampaignID,
+                    Name:this.Name,
+                    Lead_Inquiry_form__c:this.Id,
+                    Cancel_Reason__c:this.CancelReason,
+                    Request_Detail__c:Request,
+                    lea13:'鏈窡杩�',
+                    lea3:this.HospitalName,
+                    lea8:this.Phone.trim(),
+                    lea11:this.Email.trim(),
+                    name_lastlea2:name,
+                    name_firstlea2:this.LastName,
+                    lea5:this.LeadSource,
+                    Request1__c:this.Request1,
+                    Opportunity_Division__c:this.OpportunityDivision,
+                    Urgent__c:this.Urgent,
+                    Opp_Name__c:this.OppNameSearch,
+                });
+            }else{
+                 defaultValues = encodeDefaultFieldValues({
+                    RecordTypeId:this.Standard,
+                    Contact_Name__c:this.ContactId,
+                    Hospital_Name__c:this.HospitalID,
+                    Department_Class__c:this.DepartmentID,
+                    Opp_Name_Search__c:this.OppNameSearchID,
+                    Campaign__c:this.CampaignID,
+                    Name:this.Name,
+                    Lead_Inquiry_form__c:this.Id,
+                    Cancel_Reason__c:this.CancelReason,
+                    Request_Detail__c:Request,
+                    lea13:'鏈窡杩�',
+                    lea3:this.HospitalName,
+                    lea8:this.Phone.trim(),
+                    lea11:this.Email.trim(),
+                    name_lastlea2:name,
+                    name_firstlea2:this.LastName,
+                    lea5:this.LeadSource,
+                    Request1__c:this.Request1,
+                    Opportunity_Division__c:this.OpportunityDivision,
+                    Urgent__c:this.Urgent,
+                });
             }
-            window.open(urlStr);
+            this[NavigationMixin.Navigate]({
+                type: 'standard__objectPage',
+                attributes: {
+                    objectApiName: 'Lead',
+                    actionName: 'new'
+                },
+                state:{
+                    defaultFieldValues: defaultValues
+                }
+            }); 
             this.dispatchEvent(new CloseActionScreenEvent());
             }
         })
@@ -141,61 +180,4 @@
         this.dispatchEvent(event);
         this.dispatchEvent(new CloseActionScreenEvent());
     }
-}
-
-// var foo = function() {
-//     var lead = '{!Inquiry_form__c.Lead_link__c}';
-//     var status = '{!Inquiry_form__c.Status__c}';
-//     //gzw add
-//     var search = '{!Inquiry_form__c.Opp_Name_Search__c}';
-//     //zyh add-search
-//     var name = '{!Inquiry_form__c.Contact_Name__c}';
-//     name = name.replace(" ", "");
-//     var sql = "select id,Request_Detail__c from Inquiry_form__c where id = '{!Inquiry_form__c.Id}'";
-//     var sqlResult = sforce.connection.query(sql);
-//     var records = sqlResult.getArray("records");
-//     var Request = '';
-//     if(records[0].Request_Detail__c != null){
-//     Request = records[0].Request_Detail__c.toString();
-//     }
-//     //gzw add
-//     if(lead){
-//     alert('宸茬粡鏈夋剰鍚戜簡锛屼笉鑳藉啀鍒涘缓鏂扮殑鎰忓悜銆�');
-//     return;
-//     }else{
-//     //var urlStr ='/00Q/e?RecordType=01210000000QiRa&ent=Lead';
-//     //window.open(urlStr);
-//     var urlStr ='/00Q/e?RecordType=01210000000QiRa&ent=Lead'+
-//     '&CF00N10000006ps6f={!HTMLENCODE(Inquiry_form__c.Contact_Name__c)}'+
-//     '&CF00N10000006ps6f_lkid={!Inquiry_form__c.Contact_Id__c}'+
-//     '&CF00N10000002CvC5={!HTMLENCODE(Inquiry_form__c.Hospital_Name__c)}'+
-//     '&CF00N10000002CvC5_lkid={!Inquiry_form__c.Hospital_ID__c}'+
-//     '&CF00N10000006qNtt={!HTMLENCODE(Inquiry_form__c.Department_Class__c)}'+
-//     '&CF00N10000006qNtt_lkid={!Inquiry_form__c.Department_ID__c}'+
-//     '&CF00N10000006qNty={!HTMLENCODE(Inquiry_form__c.Opp_Name_Search__c)}'+
-//     '&CF00N10000006qNty_lkid={!Inquiry_form__c.Opp_Name_Search_ID__c}'+
-//     '&CF00N10000004oN28={!HTMLENCODE(Inquiry_form__c.Campaign__c)}'+
-//     '&CF00N10000004oN28_lkid={!Inquiry_form__c.Campaign_ID__c}'+
-//     '&CF00N1000000962np={!HTMLENCODE(Inquiry_form__c.Name)}'+
-//     '&CF00N1000000962np_lkid={!Inquiry_form__c.Id}'+
-//     '&00N10000006qBYk={!HTMLENCODE(Inquiry_form__c.Cancel_Reason__c)}'+
-//     '&00N10000006qGvj={!Inquiry_form__c.Product_Owner__c}'+
-//     '&00N10000002CvBM=' + Request +
-//     '&lea13=鏈窡杩�'+
-//     '&lea3={!HTMLENCODE(Inquiry_form__c.Hospital_Name__c)}'+
-//     '&lea8={!HTMLENCODE(Inquiry_form__c.Phone__c)}'+
-//     '&lea11={!HTMLENCODE(Inquiry_form__c.Email__c)}'+
-//     '&name_lastlea2=' + name +
-//     '&name_firstlea2={!HTMLENCODE(Inquiry_form__c.Last_Name__c)}'+
-//     '&lea5={!HTMLENCODE( TEXT(Inquiry_form__c.LeadSource__c))}'+
-//     '&00N10000002CvBC={!HTMLENCODE(TEXT(Inquiry_form__c.Opportunity_Division__c))}'+
-//     '&00N10000002CvBR={!Inquiry_form__c.Request1__c}'+
-//     //'&00N10000002EjE1={!Inquiry_form__c.Opp_Name_Search__c}'+
-//     '&00N10000002CvB7={!Inquiry_form__c.Urgent__c}';
-//     if(search !=  "" && search != null){
-//     urlStr += '&00N10000002EjE1={!Inquiry_form__c.Opp_Name_Search__c}';
-//     }
-//     window.open(urlStr);
-//     }
-//     }
-//     foo();
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/force-app/main/default/lwc/lexTenderingIntentionButton/lexTenderingIntentionButton.js b/force-app/main/default/lwc/lexTenderingIntentionButton/lexTenderingIntentionButton.js
index a322e7d..a10ac7e 100644
--- a/force-app/main/default/lwc/lexTenderingIntentionButton/lexTenderingIntentionButton.js
+++ b/force-app/main/default/lwc/lexTenderingIntentionButton/lexTenderingIntentionButton.js
@@ -1,9 +1,10 @@
 import { LightningElement,wire,track,api} from 'lwc';
-import { CurrentPageReference } from "lightning/navigation";
+import { CurrentPageReference ,NavigationMixin} from "lightning/navigation";
 import { CloseActionScreenEvent } from 'lightning/actions';
 import  init  from '@salesforce/apex/TenderingButtonController.initTenderingController';
 import { ShowToastEvent } from 'lightning/platformShowToastEvent';
-export default class lexTenderingIntentionButton extends LightningElement {
+import { encodeDefaultFieldValues } from 'lightning/pageReferenceUtils';
+export default class lexTenderingIntentionButton extends NavigationMixin(LightningElement) {
     @api recordId;//褰撳墠杩欐潯鏁版嵁鐨刬d
     id;//杩斿洖鍊肩殑id  Tender_information__c鎷涙爣椤圭洰鐨刬d
     IsLoading = true;
@@ -23,16 +24,30 @@
         init({
             recordId: this.recordId
         }).then(result => {
-            if (result != null) {
                 this.IsLoading = false;
                 this.id = result.Id;
-                alert('濉啓澶卞崟鎶ュ憡璇风洿鎺ョ偣鍑绘嫑鏍囬〉闈€�愬け鍗曘�戞寜閽�');
-                // this.showToast('濉啓澶卞崟鎶ュ憡璇风洿鎺ョ偣鍑绘嫑鏍囬〉闈€�愬け鍗曘�戞寜閽�','success');
-                var url = '/apex/NewAndEditLead?' + '00N10000009HKS5=' + this.id
-                + '&LeadSource=鎷涙爣缃�' + '&RecordTypeId=01210000000QiRf' + '&retURL=%2F' + this.id ;
-                window.open(url);
-                this.dispatchEvent(new CloseActionScreenEvent());
-            }
+                // alert('濉啓澶卞崟鎶ュ憡璇风洿鎺ョ偣鍑绘嫑鏍囬〉闈€�愬け鍗曘�戞寜閽�');
+                this.showToast('濉啓澶卞崟鎶ュ憡璇风洿鎺ョ偣鍑绘嫑鏍囬〉闈€�愬け鍗曘�戞寜閽�','success');
+                // var url = '/apex/NewAndEditLead?' + '00N10000009HKS5=' + this.id
+                // + '&LeadSource=鎷涙爣缃�' + '&RecordTypeId=01210000000QiRf' + '&retURL=%2F' + this.id ;
+                // window.open(url);
+                const defaultValues = encodeDefaultFieldValues({
+                    Tender_information__c :this.id,
+                    LeadSource:'鎷涙爣缃�',
+                    RecordTypeId:result.NewDaily_Report,
+
+                });
+                this[NavigationMixin.Navigate]({
+                    type: 'standard__objectPage',
+                    attributes: {
+                        objectApiName: 'Lead',
+                        actionName: 'new'
+                    },
+                    state:{
+                        defaultFieldValues: defaultValues
+                    }
+                }); 
+            this.dispatchEvent(new CloseActionScreenEvent());               
         })       
     }
     showToast(msg,type) {
diff --git a/force-app/main/default/pages/BusinessManagements.page b/force-app/main/default/pages/BusinessManagements.page
new file mode 100644
index 0000000..8e8ac99
--- /dev/null
+++ b/force-app/main/default/pages/BusinessManagements.page
@@ -0,0 +1,101 @@
+<apex:page showHeader="true" sidebar="true" lightningStylesheets="true">
+    <head>
+        <title></title>
+        <style>
+            ul li {
+                list-style: none;
+                /* line-height: 25px; */
+                /* text-align: center; */
+            }
+            a{
+                color: #1468b6;
+                text-decoration:none;
+                /* font-size: 20px; */
+            }
+        </style>
+    </head>
+<!-- Begin Default Content REMOVE THIS -->
+<ul style="margin : 0 auto;">
+    <!-- <li><a href="#" onclick="javascript:window.open('/apex/WebToEquipmentSetShippmentReceived','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">Loaner_ship_return_manage</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/ReceivingNoteQRScan','','height=500, width=500, top=200, left=200, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">ReceivingNoteQRScan</a></li> -->
+    <!-- <hr /> -->
+    <li><a href="#" onclick="javascript:window.open('/apex/MaintenanceContractPCL','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">鍛ㄤ細--缁翠慨鍚堝悓绠$悊琛�</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/OpportunityPCLNew','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">鍛ㄤ細--璇环绠$悊琛�</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/Dealer_enquiry','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">璇环--缁忛攢鍟嗚浠�</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/StatuAchievementsPCL','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">鍛ㄤ細--娉ㄦ畫绠$悊琛�</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/LeadIntention','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">浼氳璇㈤棶鍗曠‘璁や竴瑙堣〃</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/AccountPCL','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">鍛ㄤ細--瀹㈡埛璺熻繘绠$悊琛�</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/PersonalCalenda','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">鍛ㄤ細--琛屽姩绠$悊鏃ュ巻</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/AssetTable','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">淇濇湁璁惧绠$悊琛�</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/PersonalEvaluatio','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">涓汉浠〃鏉�(涓嬪睘鎸囧)</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/ProvinceEvaluation','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">鎸夌渷浠〃鏉�</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/NewQuoteIrai','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">鎶ヤ环濮旀墭</a></li>
+    <hr />
+    <!-- <li><a href="/00O100000079blX" target="_blank" >鎶ヤ环濮旀墭鍘嗗彶</a></li> -->
+    <li><a href="#" onclick="javascript:window.open('/00O100000079blX','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">鎶ヤ环濮旀墭鍘嗗彶</a></li>
+    <hr />
+    <!-- <li><a href="/00O10000002kTLp" target="_blank" >鏈湀H0鎷滆鎯呭喌</a></li> -->
+    <li><a href="#" onclick="javascript:window.open('/00O10000002kTLp','','height=500, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">鏈湀H0鎷滆鎯呭喌</a></li>
+    <hr />
+    <li><a href="/00O10000003pPUO" target="_blank" >鍖呭惈鍋滄浜у搧璇环</a></li>
+    <hr />
+    <li><a href="/00O10000003ONn3" target="_blank" >鏍囧噯閰嶅涓�瑙�</a></li> <!-- 鎵撳紑椤甸潰鏈夐棶棰� -->
+    <hr />
+    <li><a href="/apex/OFSInsReportLayout?rt=EndoscopeSystem" target="_blank" >鏂板缓鐐规鎶ュ憡涔�</a></li>
+    <hr />
+    <li><a href="/00O10000003pZBf" target="_blank" >娌℃彁浜ゆ棩鎶�</a></li>
+    <hr />
+    <li><a href="/a0S/e?retURL=&CF00N10000006Pu4b_lkid={!$User.TongkuoZongjian__c}&CF00N10000006Pu4b={!$User.TongkuoZongjianname_text__c}
+        &CF00N10000006Pu4W_lkid={!$User.ZongjianApprovalManager__c}
+        &CF00N10000006Pu4W={!$User.ZongjianApprovalManagername__c}
+        &CF00N10000006Pu4R_lkid={!$User.BuchangApprovalManagerSales__c}
+        &CF00N10000006Pu4R={!$User.BuchangApprovalManagerSalesname__c}
+        &CF00N10000006QRz5_lkid={!$User.BuchangApprovalManager__c}
+        &CF00N10000006QRz5={!$User.BuchangApprovalManagername__c}" target="_blank" >鏂板缓鍛ㄦ姤</a></li>
+    <hr />
+    <li><a href="/00O1000000588tQ" target="_blank" >鎴戠殑鍛ㄦ姤涓�瑙�</a></li>   <!-- 鎵撳紑椤甸潰鏈夐棶棰� -->
+    <hr />
+    <li><a href="/00O10000004UU0q" target="_blank" >涓嬪睘鎸囧涓�瑙�</a></li>
+    <hr />
+    <li><a href="/apex/ConsumableSampleApply" target="_blank" >鏍峰搧鐢宠</a></li>
+    <hr />
+    <li><a href="/apex/EquipmentRentalExtend" target="_blank" >鏌ヨ鍊熷嚭涓鍝�</a></li>
+    <hr />
+    <li><a href="/apex/RentalApplySequence" target="_blank" >澶囧搧鎺掗槦鏌ョ湅</a></li>  <!--寮�鍙戞竻鍗曟棤璇rl -->
+    <hr />
+    <li><a href="/01Z10000000efoM" target="_blank" >鑷垜绠$悊-鍩虹浠〃鏉�</a></li>
+    <hr />
+    <li><a href="/00O10000005Fbsj" target="_blank" >淇悊鍑忎环鐢宠涓�瑙�</a></li>
+    <hr />
+    <li><a href="https://adfs.olympus.com.cn/EnrollmentServer/otaprofile/" target="_blank" >绉诲姩璁惧娉ㄥ唽</a></li>
+    <hr />
+    <li><a href="/apex/maintenanceContractPage" target="_blank" >寰呯画绛惧悎鍚�</a></li>
+    <hr />
+    <li><a href="/apex/maintenanceContractNotOpen" target="_blank" >寰呰窡杩涜浠�</a></li>
+    <hr />
+    <li><a href="/001?fcf=00B10000006hzIn" target="_blank" >鑽夋涓殑鍖婚櫌</a></li>
+    <hr />
+    <li><a href="/apex/DigCasesNumber" target="_blank" >娑堝寲绉戠梾渚嬫暟鏀堕泦琛�</a></li>
+    <hr />
+    <li><a href="/a41?fcf=00B10000006i6VF" target="_blank" >鎴戠殑寰呰窡杩涘晢鍝佽闂崟</a></li>
+    <hr />
+    <li><a href="/apex/BatchSelectRepairPage" target="_blank" >鎵归噺閫夋嫨淇悊鍔熻兘</a></li>
+    <hr />
+    <!-- <li><a href="#" onclick="javascript:window.open('/apex/WebToEquipmentSetShippmentReceived','','height=500, width=500, top=200, left=200, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">Loaner_ship_return_manage</a></li>
+    <hr />
+    <li><a href="#" onclick="javascript:window.open('/apex/WebToEquipmentSetShippmentReceived','','height=500, width=500, top=200, left=200, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')">Loaner_ship_return_manage</a></li> -->
+<!-- <li>window.open('/apex/WebToEquipmentSetShippmentReceived','','height=700, width=1000, top=200, left=200, toolbar=no, menubar=no, scrollbars=no, location=no, status=no')</li> -->
+</ul>
+<!-- End Default Content REMOVE THIS -->
+</apex:page>
\ No newline at end of file
diff --git a/force-app/main/default/pages/BusinessManagements.page-meta.xml b/force-app/main/default/pages/BusinessManagements.page-meta.xml
new file mode 100644
index 0000000..74f3445
--- /dev/null
+++ b/force-app/main/default/pages/BusinessManagements.page-meta.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ApexPage xmlns="http://soap.sforce.com/2006/04/metadata">
+    <apiVersion>58.0</apiVersion>
+    <availableInTouch>true</availableInTouch>
+    <confirmationTokenRequired>false</confirmationTokenRequired>
+    <label>BusinessManagements</label>
+</ApexPage>

--
Gitblit v1.9.1