twysparks
2023-05-15 14a4679b3498e0a08041637a1b95a34282620cbe
Merge branch 'LEX_dev' of http://47.92.229.245:8089/r/lightningupdate into LEX_dev
3个文件已修改
7 ■■■■■ 已修改文件
force-app/main/default/lwc/lexQISIntakeuniversalcode/lexQISIntakeuniversalcode.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexQisUniversalFailureCode/lexQisUniversalFailureCode.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexSplitApplyFlowLWC/lexSplitApplyFlowLWC.js 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexQISIntakeuniversalcode/lexQISIntakeuniversalcode.js
@@ -45,7 +45,7 @@
                        console.log('result2='+this.paeId);           
                    }   
                    var url = '';
                    if (result!=null){
                    if (result!=null&& this.paeId!=null){
                        url = "/apex/PAEDecisionRecord?Id="+this.paeId+"&QISReportId="+this.qisReportId +"&RecordTypeIds="+RecordTypeId ;
                    } else {
                        url = "/apex/PAEDecisionRecord?QISReportId="+this.qisReportId +"&RecordTypeIds="+RecordTypeId;
force-app/main/default/lwc/lexQisUniversalFailureCode/lexQisUniversalFailureCode.js
@@ -44,7 +44,7 @@
                        console.log('result='+this.paeId);
                    }   
                    var url = '';
                    if (result!=null){
                    if (result!=null&& this.paeId!=null){
                        url = "/apex/PAEDecisionRecord?Id="+this.paeId+"&QISReportId="+this.qisReportId +"&RecordTypeIds="+RecordTypeId ;
                    } else {
                        url = "/apex/PAEDecisionRecord?QISReportId="+this.qisReportId +"&RecordTypeIds="+RecordTypeId;
force-app/main/default/lwc/lexSplitApplyFlowLWC/lexSplitApplyFlowLWC.js
@@ -15,12 +15,13 @@
    connectedCallback(){
        if (this.recordId && JSON.stringify(this.rentalApplyIds)) {
            window.open("/apex/RentalApplySplit?objId="+this.recordId+"&raesIds="+this.rentalApplyIds, 'RentalApplySplit', 'width=600,height=200');
            this.closeAction();
        }else{
            this.msg = '请选择借出备品一览记录';
            this.IsLoading = false;
        }
    }
    closeAction(event) {
    closeAction() {
        //返回当前的备品申请
        window.open("/"+this.recordId,'_self');
    }