19626
2023-07-25 e4e82928f141bd7b580e33289412dfd9bea821f8
force-app/main/default/lwc/lexNewOpportunityAgency/lexNewOpportunityAgency.js
@@ -7,7 +7,9 @@
import queryForRecords from '@salesforce/apex/OpportunityLightingButtonController.queryForNewOpportunityAgencyButtonToRecords';
import queryForRecTypeList from '@salesforce/apex/OpportunityLightingButtonController.queryForNewOpportunityAgencyButtonToRecTypeList';
import queryForRecords2 from '@salesforce/apex/OpportunityLightingButtonController.queryForNewOpportunityAgencyButtonToRecords2';
export default class LexNewOpportunityAgency extends LightningElement {
import { NavigationMixin } from 'lightning/navigation';
import { encodeDefaultFieldValues } from 'lightning/pageReferenceUtils';
export default class LexNewOpportunityAgency extends NavigationMixin(LightningElement) {
    @api recordId;
    agency1Id;
    agencyOpportunity;
@@ -57,6 +59,22 @@
            this.opportunityCategory = result.opportunityCategory;
            this.agency1Name = result.agency1Name;
            console.log("1");
            if(this.closeForecastedDate == undefined){
                this.closeForecastedDate = '';
            }else{
                this.closeForecastedDate = new String(this.closeForecastedDate).replaceAll("-","/");
            }
            console.log(this.closeForecastedDate);
            if(this.bidPlannedDate == undefined){
                this.bidPlannedDate = '';
            }else{
                this.bidPlannedDate = new String(this.bidPlannedDate).replaceAll("-","/");
            }
            if(this.dealerFinalPrice == undefined){
                this.dealerFinalPrice = '';
            }
            console.log(this.bidPlannedDate);
            console.log(this.dealerFinalPrice);
            this.newOpportunityAgency();
        }).catch(error=>{
            console.log("error");
@@ -69,15 +87,18 @@
            var newflag = true;
            if (this.agency1Id == undefined) {
                newflag = false;
                alert("经销商不存在,不能转成【经销商目标询价】。");
                this.showToast("经销商不存在,不能转成【经销商目标询价】。","error");
                this.dispatchEvent(new CloseActionScreenEvent());
            }
            else if (this.agencyOpportunity != undefined) {
                newflag = false;
                alert("已经转成过【经销商目标询价】。");
                this.showToast("已经转成过【经销商目标询价】。","error");
                this.dispatchEvent(new CloseActionScreenEvent());
            }
            else if (this.trade != '内貿') {
                newflag = false;
                alert("不是内贸,不能转成【经销商目标询价】。");
                this.showToast("不是内贸,不能转成【经销商目标询价】。","error");
                this.dispatchEvent(new CloseActionScreenEvent());
            }
            else {
                var records = null;
@@ -87,9 +108,11 @@
                    hospitalId: this.hospitalId
                }).then(result=>{
                    records = result;
                    console.log(records.length);
                    if (records == null || records.length == 0) {
                        newflag = false;
                        alert("没有有效的【经销商医院】。");
                        this.showToast("没有有效的【经销商医院】。","error");
                        this.dispatchEvent(new CloseActionScreenEvent());
                    }
                    if (newflag) {
                        console.log("5");
@@ -101,7 +124,8 @@
                            console.log("6");
                            var recTypeList = result;
                            if (recTypeList.length == 0) {
                                    alert("没有找到,经销商询价的定义。");
                                    this.showToast("没有找到,经销商询价的定义。","error");
                                    this.dispatchEvent(new CloseActionScreenEvent());
                                } else {
                                    console.log("7");
                                    queryForRecords2({
@@ -154,33 +178,60 @@
                                        console.log("10");
                                        console.log(records[0]);
                                        var ahl = records[0];
                                        try {
                                            var url = "/a2Y/e?retURL=%2F"
                                            + this.recordId
                                            + "&Name='(OLYMPUS)'"
                                            + encodeURIComponent(this.name)
                                            + "&RecordType=" + recTypeId  + "&" + fId_Close_Forecasted_Date__c + "="
                                            + encodeURIComponent(this.closeForecastedDate)
                                            + "&" + fId_Bid_Planned_Date__c + "="
                                            + encodeURIComponent(this.bidPlannedDate)
                                            + "&" + fId_OCM_Change_To_Opportunity_Flg__c + "=1" + "&CF" + fId_Agency_Hospital__c + "_lkid=" + ahl.Id + "&CF" + fId_Agency_Hospital__c + "=" + encodeURIComponent(ahl.Name) + "&" + fId_Amount__c + "="
                                            + encodeURIComponent(this.dealerFinalPrice)
                                            + "&" + fId_OCMSale_Price__c + "="
                                            + encodeURIComponent(this.wholesalePrice)
                                            + "&CF" + fId_Agency__c + "_lkid="
                                            + encodeURIComponent(this.agency1Id)
                                            + "&CF" + fId_Agency__c + "="
                                            + encodeURIComponent(this.agency1Name)
                                            + "&" + fId_StageName__c + "="
                                            + encodeURIComponent(this.opportunityStage)
                                            + "&CF" + fId_Change_To_Opportunity__c + "_lkid="
                                            + encodeURIComponent(this.recordId )
                                            + "&CF" + fId_Change_To_Opportunity__c + "="
                                            + encodeURIComponent(this.name )
                                            + "&" + fId_Department_Cateogy__c + "="
                                            + encodeURIComponent(this.opportunityCategory);
                                            console.log(url);
                                            window.open(url);
                                            // var url = "/a2Y/e?retURL=%2F"
                                            // + this.recordId
                                            // + "&Name='(OLYMPUS)'"
                                            // + encodeURIComponent(this.name)
                                            // + "&RecordType=" + recTypeId  + "&" + fId_Close_Forecasted_Date__c + "="
                                            // + encodeURIComponent(this.closeForecastedDate)
                                            // + "&" + fId_Bid_Planned_Date__c + "="
                                            // + encodeURIComponent(this.bidPlannedDate)
                                            // + "&" + fId_OCM_Change_To_Opportunity_Flg__c + "=1" + "&CF" + fId_Agency_Hospital__c + "_lkid=" + ahl.Id + "&CF" + fId_Agency_Hospital__c + "=" + encodeURIComponent(ahl.Name) + "&" + fId_Amount__c + "="
                                            // + encodeURIComponent(this.dealerFinalPrice)
                                            // + "&" + fId_OCMSale_Price__c + "="
                                            // + encodeURIComponent(this.wholesalePrice)
                                            // + "&CF" + fId_Agency__c + "_lkid="
                                            // + encodeURIComponent(this.agency1Id)
                                            // + "&CF" + fId_Agency__c + "="
                                            // + encodeURIComponent(this.agency1Name)
                                            // + "&" + fId_StageName__c + "="
                                            // + encodeURIComponent(this.opportunityStage)
                                            // + "&CF" + fId_Change_To_Opportunity__c + "_lkid="
                                            // + encodeURIComponent(this.recordId )
                                            // + "&CF" + fId_Change_To_Opportunity__c + "="
                                            // + encodeURIComponent(this.name )
                                            // + "&" + fId_Department_Cateogy__c + "="
                                            // + encodeURIComponent(this.opportunityCategory);
                                            // console.log(url);
                                            // window.open(url);
                                            const defaultValues = encodeDefaultFieldValues({
                                                Name: '(OLYMPUS)',
                                                Close_Forecasted_Date__c: this.closeForecastedDate,
                                                Bid_Planned_Date__c: this.bidPlannedDate,
                                                OCM_Change_To_Opportunity_Flg__c: '1',
                                                Agency_Hospital__c: ahl.Id,
                                                Amount__c: this.dealerFinalPrice,
                                                OCMSale_Price__c: this.wholesalePrice,
                                                Agency__c: this.agency1Id,
                                                StageName__c: this.opportunityStage,
                                                Change_To_Opportunity__c: this.recordId,
                                                Department_Cateogy__c: this.opportunityCategory
                                            });
                                            this[NavigationMixin.Navigate]({
                                                type: 'standard__objectPage',
                                                attributes: {
                                                    objectApiName: 'Agency_Opportunity__c',
                                                    actionName: 'new'
                                                },
                                                state: {
                                                    nooverride: '1',
                                                    defaultFieldValues: defaultValues,
                                                    recordTypeId: recTypeId
                                                }
                                            });
                                            this.dispatchEvent(new CloseActionScreenEvent());
                                        } catch (error) {
                                            console.log(error)
                                        }
@@ -189,10 +240,8 @@
                        })  
                    }
                });
                console.log("4");
            }
        this.IsLoading = false;
        this.dispatchEvent(new CloseActionScreenEvent());
    }
    showToast(msg,type) {
        const event = new ShowToastEvent({
@@ -205,4 +254,4 @@
    updateRecordView(recordId) {
        updateRecord({fields: { Id: recordId }});
    }
}
}