zz
2023-05-31 b551d133c0b97297902564d3cdbd17bd0b0ad79d
产品咨询单 修改错误字段
4个文件已修改
12 ■■■■ 已修改文件
force-app/main/default/lwc/lexInquiryFormCustomLink1/lexInquiryFormCustomLink1.js 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexInquiryFormCustomLink2/lexInquiryFormCustomLink2.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexInquiryFormNoStatus/lexInquiryFormNoStatus.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexInquiryFormServiceFollow/lexInquiryFormServiceFollow.js 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexInquiryFormCustomLink1/lexInquiryFormCustomLink1.js
@@ -92,7 +92,8 @@
            var search = this.OppNameSearch;
            // this.CustomLink1();
            if(lead){
                alert('已经有意向了,不能再创建新的意向。');
                // alert('已经有意向了,不能再创建新的意向。');
                 this.showToast("已经有意向了,不能再创建新的意向。!","error");
                return;
            }else{
            //var urlStr ='/00Q/e?RecordType=01210000000QiRa&ent=Lead';
force-app/main/default/lwc/lexInquiryFormCustomLink2/lexInquiryFormCustomLink2.js
@@ -21,7 +21,7 @@
        init({
            recordId: this.recordId
        }).then(result => {
            this.Status = result.Statusl;
            this.Status = result.Status;
            this.IsLoading = false;
            this.CustomLink2();
            this.dispatchEvent(new CloseActionScreenEvent());
force-app/main/default/lwc/lexInquiryFormNoStatus/lexInquiryFormNoStatus.js
@@ -23,7 +23,7 @@
        init({
            recordId: this.recordId
        }).then(result => {
            this.Status = result.Statusl;
            this.Status = result.Status;
            this.IsLoading = false;
            this.NoStatus();
            this.dispatchEvent(new CloseActionScreenEvent());
force-app/main/default/lwc/lexInquiryFormServiceFollow/lexInquiryFormServiceFollow.js
@@ -7,7 +7,7 @@
    @api recordId;//OwnerId
    IsLoading = true;
    FSEOwnerId;
    ServiceStatus;
    userId;
    JINGZHUOJISHU;
    @wire(CurrentPageReference)
@@ -25,7 +25,6 @@
        init({
            recordId: this.recordId
        }).then(result => {
            this.ServiceStatus = result.ServiceStatus;
            this.FSEOwnerId = result.FSEOwnerId;
            this.userId = result.userId;
            this.JINGZHUOJISHU = result.JINGZHUOJISHU;
@@ -36,7 +35,7 @@
    }
    // 产品咨询单 服务跟进
    ServiceFollow (){
        if(null != this.FSEOwnerId && this.FSEOwnerId== this.userId || this.userId == this.JINGZHUOJISHU){
        if(null != this.FSEOwnerId && (this.FSEOwnerId== this.userId || this.userId == this.JINGZHUOJISHU)){
            window.open ('/apex/ServiceFollowPage?id='+this.recordId, '服务跟进',
            'height=400, width=800, top=200, left=400, toolbar=no, menubar=no, scrollbars=no, location=no, status=no');
        }else{