1
chenjingwu
2024-04-10 09e5075044cfef1fef88687636805f451f09f846
1
1个文件已修改
6 ■■■■■ 已修改文件
force-app/main/default/lwc/lexNewQuoteEntry/lexNewQuoteEntry.js 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
force-app/main/default/lwc/lexNewQuoteEntry/lexNewQuoteEntry.js
@@ -1889,13 +1889,11 @@
        }
    }
    addOptionsLogic(result){
        console.log(result.length);
        console.log(result);
        var e = new Map(result);
        this.jzDataToBeproduct.forEach(item=>{
            var e = result.get(item.pageObject.PricebookEntry.Product2Id);
            console.log(e);
            if(e){
                item.Learning_CommunityOptions = result.get(item.pageObject.PricebookEntry.Product2Id);
                item.Learning_CommunityOptions = e.get(item.pageObject.PricebookEntry.Product2Id);
            }
        });
    }