From 5d0b45a82e2452f9f88cfaa958d053405092265c Mon Sep 17 00:00:00 2001
From: chenjingwu <chenjingwu@prec-tech.com>
Date: 星期三, 10 四月 2024 17:35:09 +0800
Subject: [PATCH] 1

---
 force-app/main/default/lwc/lexNewQuoteEntry/lexNewQuoteEntry.js |   15 ++++++++++++---
 1 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/force-app/main/default/lwc/lexNewQuoteEntry/lexNewQuoteEntry.js b/force-app/main/default/lwc/lexNewQuoteEntry/lexNewQuoteEntry.js
index 7339dc2..7947e06 100644
--- a/force-app/main/default/lwc/lexNewQuoteEntry/lexNewQuoteEntry.js
+++ b/force-app/main/default/lwc/lexNewQuoteEntry/lexNewQuoteEntry.js
@@ -1767,13 +1767,19 @@
             }
         }else{
             this.OnLoading(true);
-            setProductEntry(dataChunanshen).then(reslut=>{  
-                debugger        
+            setProductEntry(dataChunanshen).then(reslut=>{       
                 var tempArr=reslut.split("---");
                 var errormessage=tempArr[0];
                 var quoteLineItem=JSON.parse(tempArr[1]);
                 quoteLineItem=InitializeProductAssignment(quoteLineItem);
                 this.jzDataToBeproduct=quoteLineItem;
+                // cjw
+                this.jzDataToBeproduct.forEach(item=>{
+                    idList.push(item.pageObject.PricebookEntry.Product2Id);
+                });
+                addOptions({idList: idList}).then(result=>{
+                    this.addOptionsLogic(result);
+                });
                 if(quoteLineItem.length!=num){
                     this.quo.IsQuoteTrial__c=false;
                 }
@@ -1868,6 +1874,7 @@
             var Listvalue = this.jzDataToBeproduct;
             this.jzDataToBeproduct = additionaljzProductLogic(selectvlue,Listvalue,this.oppInfo.CurrencyIsoCode,this.quo.IsQuoteTrial__c);
             var idList = [];
+            // cjw
             this.jzDataToBeproduct.forEach(item=>{
                 idList.push(item.pageObject.PricebookEntry.Product2Id);
             });
@@ -1884,9 +1891,10 @@
                 this.cancelProduct();
                 this.SelectedNewProduct = [];
             });
-            
+            // cjw
         }
     }
+    // cjw
     addOptionsLogic(result){
         var Setmap = new Map()
         var key = Object.keys(result)
@@ -1899,6 +1907,7 @@
             }
         });
     }
+    // cjw
     //鏂板鎶ヤ环浜у搧妯℃�佹鍙栨秷鎸夐挳
     cancelProduct() {
         this.showproductfalg = false;

--
Gitblit v1.9.1