KKbes
2023-08-11 f66abb6dad1b8caa18aca9d65dceb34a34c022b6
force-app/main/default/lwc/lexProductRepairQuoteProduct/lexProductRepairQuoteProduct.js
@@ -7,16 +7,14 @@
export default class lexProductRepairQuoteProduct extends LightningElement {
   @api recordId;
   IsLoading;
   IsLoading=true;
   @wire(CurrentPageReference)
    getStateParameters(currentPageReference) {
        if (currentPageReference) {
          const urlValue = currentPageReference.state.recordId;
          console.log(currentPageReference);
          if (urlValue) {
            let str = `${urlValue}`;
            console.log(str);
            this.recordId = str;
          }
@@ -25,20 +23,18 @@
    connectedCallback(){
        this.productRepairQuoteProduct().then(res=>{
         this.IsLoading=false;
         this.dispatchEvent(new CloseActionScreenEvent());
      this.productRepairQuoteProduct().then(res=>{
           this.IsLoading=false;
           this.dispatchEvent(new CloseActionScreenEvent());
      });
    }
    async productRepairQuoteProduct(){
    async productRepairQuoteProduct(){
       window.open ('/apex/ProductRepairQuote?productid=' + this.recordId +
          '&flag=productsearch', '', 'height=500, width=1200, top=300, left=350,location=no');
          '&flag=productsearch', '', 'height=380, width=680, top=300, left=350,location=no');
    }