19626
2023-10-09 25f056535350a0b80bad50d2cc45311998e5d1cd
force-app/main/default/lwc/lexVOCConfirm/lexVOCConfirm.js
@@ -4,7 +4,7 @@
 * @Author: chen jing wu
 * @Date: 2023-03-27 14:08:56
 * @LastEditors: chen jing wu
 * @LastEditTime: 2023-05-15 09:13:55
 * @LastEditTime: 2023-09-14 16:49:02
 */
import { LightningElement,wire,track,api} from 'lwc';
import { CurrentPageReference } from "lightning/navigation";
@@ -14,6 +14,8 @@
import  updateForVOCConfirmButton from '@salesforce/apex/ReportController.updateForVOCConfirmButton';
import { updateRecord } from 'lightning/uiRecordApi';
import { ShowToastEvent } from 'lightning/platformShowToastEvent';
import lwcCSS from '@salesforce/resourceUrl/lwcCSS';
import {loadStyle} from 'lightning/platformResourceLoader';
export default class LexVOCConfirm extends LightningElement {
    @api recordId;
    status;
@@ -39,6 +41,9 @@
    connectedCallback(){
        Promise.all([
            loadStyle(this, lwcCSS)
           ]);
        console.log(this.recordId);
        init({
            recordId: this.recordId
@@ -63,9 +68,10 @@
    showToast(msg,type) {
        const event = new ShowToastEvent({
            title: '',
            title: ' ',
            message: msg,
            variant: type
            variant: type,
            mode: 'sticky'
        });
        this.dispatchEvent(event);
    }
@@ -84,12 +90,13 @@
            }
        updateForVOCConfirmButton({
            recordId: this.recordId,
            satisfy: this.sSatisfy,
            satisfy: this.satisfy,
            satisfy1: this.satisfy1    
        }).then(result=>{
            if(result){
                this.showToast(result,"error");
            }else{
                this.showToast(result,"success");
                this.updateRecordView(this.recordId);
            }
            this.Isloading = false;