zhangchunxu
2023-07-14 63f4c248149d330215d2da44d3f9de08fdb3c0ef
“营业管理自定义”左侧栏和”新建意向“vf跳转
2个文件已添加
4个文件已修改
351 ■■■■ 已修改文件
force-app/main/default/classes/InquiryFormController.cls 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/classes/TenderingButtonController.cls 35 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexInquiryFormCustomLink1/lexInquiryFormCustomLink1.js 170 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexTenderingIntentionButton/lexTenderingIntentionButton.js 35 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/BusinessManagements.page 101 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/pages/BusinessManagements.page-meta.xml 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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;
    }
}
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;
    }
}
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();
}
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;//当前这条数据的id
    id;//返回值的id  Tender_information__c招标项目的id
    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) {
force-app/main/default/pages/BusinessManagements.page
New file
@@ -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>  <!--开发清单无该url -->
    <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>
force-app/main/default/pages/BusinessManagements.page-meta.xml
New file
@@ -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>