123
chenjingwu
2024-04-11 8d006ac357a60d77f086c37f2ae7338530a607f2
force-app/main/default/lwc/lexNewQuoteEntry/lexNewQuoteEntry.js
@@ -1774,8 +1774,12 @@
                quoteLineItem=InitializeProductAssignment(quoteLineItem);
                this.jzDataToBeproduct=quoteLineItem;
                // cjw
                var idList = [];
                console.log('123');
                console.log(reslut);
                console.log(this.jzDataToBeproduct);
                this.jzDataToBeproduct.forEach(item=>{
                    idList.push(item.pageObject.PricebookEntry.Product2Id);
                    idList.push(item.pageObject.Id__c);
                });
                addOptions({idList: idList}).then(result=>{
                    this.addOptionsLogic(result);
@@ -1827,6 +1831,16 @@
                    var quoteLineItem = JSON.parse(tempArr[1]);
                    quoteLineItem = InitializeProductAssignment(quoteLineItem);
                    this.jzDataToBeproduct = quoteLineItem;
                    // cjw
                    console.log('xxx');
                    console.log(this.jzDataToBeproduct);
                    var idList = [];
                    this.jzDataToBeproduct.forEach(item=>{
                        idList.push(item.pageObject.Id__c);
                    });
                    addOptions({idList: idList}).then(result=>{
                        this.addOptionsLogic(result);
                    });
                    if(quoteLineItem.length!=num){
                        this.quo.IsQuoteTrial__c = false;
                    }
@@ -1876,7 +1890,7 @@
            var idList = [];
            // cjw
            this.jzDataToBeproduct.forEach(item=>{
                idList.push(item.pageObject.PricebookEntry.Product2Id);
                idList.push(item.pageObject.Id__c);
            });
            addOptions({idList: idList}).then(result=>{
                this.addOptionsLogic(result);
@@ -1903,7 +1917,7 @@
        });
        this.jzDataToBeproduct.forEach(item=>{
            if(result){
                item.Learning_CommunityOptions = Setmap.get(item.pageObject.PricebookEntry.Product2Id);
                item.Learning_CommunityOptions = Setmap.get(item.pageObject.Id__c);
            }
        });
    }